Searched refs:fpclassify (Results 1 – 9 of 9) sorted by relevance
299 #define fpclassify(__x) (__builtin_fpclassify (FP_NAN, FP_INFINITE, \ macro310 #define fpclassify(__x) \ macro319 #define fpclassify(__x) \ macro325 #define isinf(__x) (fpclassify(__x) == FP_INFINITE)326 #define isnan(__x) (fpclassify(__x) == FP_NAN)327 #define isnormal(__x) (fpclassify(__x) == FP_NORMAL)328 #define issubnormal(__x) (fpclassify(__x) == FP_SUBNORMAL)329 #define iszero(__x) (fpclassify(__x) == FP_ZERO)432 fpclassify(__a) == FP_NAN || fpclassify(__b) == FP_NAN;}))
35 return fpclassify(a); in __pruabi_fpclassify()
35 return fpclassify(a); in __pruabi_fpclassifyf()
189 (__cy = fpclassify(__y)) != FP_INFINITE && __cy != FP_NAN;}))
310 static long long makemathname(test_fpclassify_snan)(void) { return fpclassify(makemathname(snanval)… in makemathname()311 static long long makemathname(test_fpclassify_nan)(void) { return fpclassify(makemathname(qnanval))… in makemathname()312 static long long makemathname(test_fpclassify_inf)(void) { return fpclassify(makemathname(infval));… in makemathname()313 static long long makemathname(test_fpclassify_neginf)(void) { return fpclassify(-makemathname(infva… in makemathname()314 static long long makemathname(test_fpclassify_zero)(void) { return fpclassify(makemathname(zero)); } in makemathname()315 static long long makemathname(test_fpclassify_negzero)(void) { return fpclassify(-makemathname(zero… in makemathname()316 static long long makemathname(test_fpclassify_small)(void) { return fpclassify(makemathname(small))… in makemathname()317 static long long makemathname(test_fpclassify_negsmall)(void) { return fpclassify(-makemathname(sma… in makemathname()318 static long long makemathname(test_fpclassify_two)(void) { return fpclassify(makemathname(two)); } in makemathname()319 static long long makemathname(test_fpclassify_negtwo)(void) { return fpclassify(-makemathname(two))… in makemathname()
39 int __class = fpclassify(flt); \
54 * Function fpclassify:: Floating-point classification macro
5224 by only calling fpclassify once instead of possibly twice.6130 * libc/include/math.h: Simplify fpclassify, isinf, isnan, and signbit6132 changed to use fpclassify. isfinite macro modified to run faster by6133 only calling fpclassify once instead of possibly twice.6746 fpclassify(), isfinite(), isinf(), isnan(), and isnormal().
412 newlib/libm/machine/pru/fpclassify.c