Home
last modified time | relevance | path

Searched refs:__x (Results 1 – 6 of 6) sorted by relevance

/picolibc-latest/newlib/libc/machine/x86/machine/
Dfastmath.h9 #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-latest/newlib/libc/include/
Dmath.h299 #define fpclassify(__x) (__builtin_fpclassify (FP_NAN, FP_INFINITE, \ argument
301 FP_ZERO, __x))
302 #define isfinite(__x) (__builtin_isfinite (__x)) argument
303 #define isinf(__x) (__builtin_isinf_sign (__x)) argument
304 #define isnan(__x) (__builtin_isnan (__x)) argument
305 #define isnormal(__x) (__builtin_isnormal (__x)) argument
306 #define issubnormal(__x) (__builtin_issubnormal (__x)) argument
307 #define iszero(__x) (__builtin_iszero(__x)) argument
310 #define fpclassify(__x) \ argument
311 ((sizeof(__x) == sizeof(float) ? __fpclassifyf(__x) \
[all …]
Dctype.h270 __extension__ ({ __typeof__ (__c) __x = (__c); \
271 (__ctype_lookup(__x)&_B) || (int) (__x) == '\t';})
305 __extension__ ({ __typeof__ (__c) __x = (__c); \
306 (__ctype_lookup_l(__x,__l)&_B) || (int) (__x) == '\t';})
317 __extension__ ({ __typeof__ (__c) __x = (__c); \
318 islower (__x) ? (int) __x - 'a' + 'A' : (int) __x;})
320 __extension__ ({ __typeof__ (__c) __x = (__c); \
321 isupper (__x) ? (int) __x - 'A' + 'a' : (int) __x;})
326 __extension__ ({ __typeof__ (__c) __x = (__c); \
327 (void) __CTYPE_PTR[__x]; (toupper) (__x);})
[all …]
/picolibc-latest/newlib/libc/include/machine/
Dieeefp.h191 #define isinf(__x) ((sizeof (__x) == sizeof (float)) ? (0) : __isinfd(__x)) argument
192 #define isnan(__x) ((sizeof (__x) == sizeof (float)) ? (0) : __isnand(__x)) argument
/picolibc-latest/newlib/libm/test/
Dtest.c190 uint32_t __x; in mag_of_error() local
217 __x = (a.parts.lsw) - (b.parts.lsw); in mag_of_error()
218 msw = (a.parts.msw) - (b.parts.msw) - (__x > (a.parts.lsw)); in mag_of_error()
219 lsw = __x; in mag_of_error()
/picolibc-latest/newlib/libc/include/sys/
Dcdefs.h550 const volatile __typeof(((s *)0)->m) *__x = (x); \
551 __DEQUALIFY(s *, (const volatile char *)__x - __offsetof(s, m));\