Searched defs:__x (Results 1 – 4 of 4) sorted by relevance
/picolibc-3.7.0-3.6.0/newlib/libc/machine/x86/machine/ |
D | fastmath.h | 9 #define __str1__(__x) #__x argument 10 #define __str2__(__x) __str1__(__x) argument 79 #define atan2(__y,__x) _f_atan2((__y),(__x)) argument 80 #define exp(__x) _f_exp(__x) argument 81 #define frexp(__x,__p) _f_frexp((__x),(__p)) argument 82 #define ldexp(__x,__e) _f_ldexp((__x),(__e)) argument 83 #define log(__x) _f_log(__x) argument 84 #define log10(__x) _f_log10(__x) argument 85 #define pow(__x,__y) _f_pow((__x),(__y)) argument 106 #define atan2f(__y,__x) _f_atan2f((__y),(__x)) argument [all …]
|
/picolibc-3.7.0-3.6.0/newlib/libc/include/ |
D | math.h | 286 #define fpclassify(__x) (__builtin_fpclassify (FP_NAN, FP_INFINITE, \ argument 289 #define isfinite(__x) (__builtin_isfinite (__x)) argument 290 #define isinf(__x) (__builtin_isinf_sign (__x)) argument 291 #define isnan(__x) (__builtin_isnan (__x)) argument 292 #define isnormal(__x) (__builtin_isnormal (__x)) argument 293 #define issubnormal(__x) (__builtin_issubnormal (__x)) argument 294 #define iszero(__x) (__builtin_iszero(__x)) argument 297 #define fpclassify(__x) \ argument 301 #define isfinite(__x) \ argument 306 #define fpclassify(__x) \ argument [all …]
|
/picolibc-3.7.0-3.6.0/newlib/libc/include/machine/ |
D | ieeefp.h | 184 #define isinf(__x) ((sizeof (__x) == sizeof (float)) ? (0) : __isinfd(__x)) argument 185 #define isnan(__x) ((sizeof (__x) == sizeof (float)) ? (0) : __isnand(__x)) argument
|
/picolibc-3.7.0-3.6.0/newlib/libm/test/ |
D | test.c | 190 uint32_t __x; in mag_of_error() local
|