mirror of
https://github.com/apache/nuttx.git
synced 2026-05-12 09:48:31 +08:00
cf99fb40c9
Squashed commit of the following:
libs/libxx: Fix some confusing in naming. If the directory is called libxx, then the library must be libxx.a (unless perhaps LIBCXX is selected).
libs/: Fix paths in moved library directories.
libs: Brute force move of libc, libnx, and libxx to libs. Cannot yet build it in that configuration.
8.8 KiB
8.8 KiB
| 1 | acos | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | ||
|---|---|---|---|---|---|---|---|
| 2 | acosf | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | ||
| 3 | acosl | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | ||
| 4 | asin | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | ||
| 5 | asinf | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | ||
| 6 | asinl | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | ||
| 7 | atan | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | ||
| 8 | atan2l | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | long double | |
| 9 | atanf | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | ||
| 10 | atanl | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | ||
| 11 | ceil | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | ||
| 12 | ceilf | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | ||
| 13 | ceill | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | ||
| 14 | cos | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | ||
| 15 | cosf | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | ||
| 16 | cosh | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | ||
| 17 | coshf | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | ||
| 18 | coshl | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | ||
| 19 | cosl | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | ||
| 20 | exp | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | ||
| 21 | expf | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | ||
| 22 | expl | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | ||
| 23 | fabs | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | ||
| 24 | fabsf | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | ||
| 25 | fabsl | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | ||
| 26 | floor | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | ||
| 27 | floorf | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | ||
| 28 | floorl | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | ||
| 29 | fmod | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | double | |
| 30 | fmodf | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | float | |
| 31 | fmodl | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | long double | |
| 32 | frexp | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | int * | |
| 33 | frexpf | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | int * | |
| 34 | ldexpl | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | int | |
| 35 | lgamma | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | ||
| 36 | log | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | ||
| 37 | log10 | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | ||
| 38 | log10f | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | ||
| 39 | log10l | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | ||
| 40 | log2 | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | ||
| 41 | log2f | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | ||
| 42 | log2l | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | ||
| 43 | logf | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | ||
| 44 | logl | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | ||
| 45 | gamma | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | ||
| 46 | modf | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | double * | |
| 47 | modff | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | float * | |
| 48 | modfl | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | long double * | |
| 49 | pow | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | double | |
| 50 | powf | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | float | |
| 51 | powl | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | long double | |
| 52 | rint | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | ||
| 53 | rintf | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | ||
| 54 | rintl | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | ||
| 55 | readv | sys/uio.h | ssize_t | int | FAR const struct iovec * | int | |
| 56 | round | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | ||
| 57 | roundf | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | ||
| 58 | roundl | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | ||
| 59 | sin | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | ||
| 60 | sinf | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | ||
| 61 | sinh | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | ||
| 62 | sinhf | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | ||
| 63 | sinhl | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | ||
| 64 | sinl | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | ||
| 65 | sqrt | math.hdefined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | ||||
| 66 | sqrtf | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | ||
| 67 | sqrtl | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | ||
| 68 | tan | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | ||
| 69 | tanf | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | ||
| 70 | tanh | math.h | defined(CONFIG_HAVE_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | double | double | ||
| 71 | tanhf | math.h | defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH) | float | float | ||
| 72 | tanhl | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | ||
| 73 | tanl | math.h | defined(CONFIG_HAVE_LONG_DOUBLE) && (defined(CONFIG_LIBM) || defined(CONFIG_ARCH_MATH)) | long double | long double | ||
| 74 | writev | sys/uio.h | ssize_t | int | FAR const struct iovec * | int |