Searched refs:__x (Results 1 – 6 of 6) sorted by relevance
/picolibc-3.5.0-3.4.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.5.0-3.4.0/newlib/libc/include/ |
D | math.h | 276 #define fpclassify(__x) (__builtin_fpclassify (FP_NAN, FP_INFINITE, \ argument 278 FP_ZERO, __x)) 279 #define isfinite(__x) (__builtin_isfinite (__x)) argument 280 #define isinf(__x) (__builtin_isinf_sign (__x)) argument 281 #define isnan(__x) (__builtin_isnan (__x)) argument 282 #define isnormal(__x) (__builtin_isnormal (__x)) argument 283 #define issubnormal(__x) (__builtin_issubnormal (__x)) argument 284 #define iszero(__x) (__builtin_iszero(__x)) argument 287 #define fpclassify(__x) \ argument 288 ((sizeof(__x) == sizeof(float) ? __fpclassifyf(__x) \ [all …]
|
D | ctype.h | 173 __extension__ ({ __typeof__ (__c) __x = (__c); \ 174 (__ctype_lookup_l(__x,__l)&_B) || (int) (__x) == '\t';}) 195 __extension__ ({ __typeof__ (__c) __x = (__c); \ 196 islower (__x) ? (int) __x - 'a' + 'A' : (int) __x;}) 198 __extension__ ({ __typeof__ (__c) __x = (__c); \ 199 isupper (__x) ? (int) __x - 'A' + 'a' : (int) __x;}) 204 __extension__ ({ __typeof__ (__c) __x = (__c); \ 205 (void) __CTYPE_PTR[__x]; (toupper) (__x);}) 207 __extension__ ({ __typeof__ (__c) __x = (__c); \ 208 (void) __CTYPE_PTR[__x]; (tolower) (__x);})
|
/picolibc-3.5.0-3.4.0/newlib/libc/include/machine/ |
D | ieeefp.h | 196 #define isinf(__x) ((sizeof (__x) == sizeof (float)) ? (0) : __isinfd(__x)) argument 197 #define isnan(__x) ((sizeof (__x) == sizeof (float)) ? (0) : __isnand(__x)) argument
|
/picolibc-3.5.0-3.4.0/newlib/libm/test/ |
D | test.c | 181 unsigned long int __x; in mag_of_error() local 208 __x = (a.parts.lsw) - (b.parts.lsw); in mag_of_error() 209 msw = (a.parts.msw) - (b.parts.msw) - (__x > (a.parts.lsw)); in mag_of_error() 210 lsw = __x; in mag_of_error()
|
/picolibc-3.5.0-3.4.0/newlib/libc/include/sys/ |
D | cdefs.h | 504 const volatile __typeof(((s *)0)->m) *__x = (x); \ 505 __DEQUALIFY(s *, (const volatile char *)__x - __offsetof(s, m));\
|