Searched refs:fpclassify (Results 1 – 9 of 9) sorted by relevance
286 #define fpclassify(__x) (__builtin_fpclassify (FP_NAN, FP_INFINITE, \ macro297 #define fpclassify(__x) \ macro306 #define fpclassify(__x) \ macro312 #define isinf(__x) (fpclassify(__x) == FP_INFINITE)313 #define isnan(__x) (fpclassify(__x) == FP_NAN)314 #define isnormal(__x) (fpclassify(__x) == FP_NORMAL)315 #define issubnormal(__x) (fpclassify(__x) == FP_SUBNORMAL)316 #define iszero(__x) (fpclassify(__x) == FP_ZERO)412 fpclassify(__a) == FP_NAN || fpclassify(__b) == FP_NAN;}))
35 return fpclassify(a); in __pruabi_fpclassify()
35 return fpclassify(a); in __pruabi_fpclassifyf()
182 (__cy = fpclassify(__y)) != FP_INFINITE && __cy != FP_NAN;}))
298 long long makemathname(test_fpclassify_snan)(void) { return fpclassify(makemathname(snanval)); } in makemathname()299 long long makemathname(test_fpclassify_nan)(void) { return fpclassify(makemathname(qnanval)); } in makemathname()300 long long makemathname(test_fpclassify_inf)(void) { return fpclassify(makemathname(infval)); } in makemathname()301 long long makemathname(test_fpclassify_neginf)(void) { return fpclassify(-makemathname(infval)); } in makemathname()302 long long makemathname(test_fpclassify_zero)(void) { return fpclassify(makemathname(zero)); } in makemathname()303 long long makemathname(test_fpclassify_negzero)(void) { return fpclassify(-makemathname(zero)); } in makemathname()304 long long makemathname(test_fpclassify_small)(void) { return fpclassify(makemathname(small)); } in makemathname()305 long long makemathname(test_fpclassify_negsmall)(void) { return fpclassify(-makemathname(small)); } in makemathname()306 long long makemathname(test_fpclassify_two)(void) { return fpclassify(makemathname(two)); } in makemathname()307 long long makemathname(test_fpclassify_negtwo)(void) { return fpclassify(-makemathname(two)); } in makemathname()
39 int __class = fpclassify(flt); \
54 * 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().
411 newlib/libm/machine/pru/fpclassify.c