Symbol: FP_NAN
headers/posix/math.h
343
__builtin_fpclassify(FP_NAN, FP_INFINITE, FP_NORMAL, FP_SUBNORMAL, FP_ZERO, (value))
src/system/libroot/posix/glibc/arch/generic/s_cacoshl.c
38
if (rcls == FP_NAN)
src/system/libroot/posix/glibc/arch/generic/s_casinh.c
38
if (rcls == FP_NAN)
src/system/libroot/posix/glibc/arch/generic/s_casinh.c
48
|| (rcls == FP_NAN && icls == FP_ZERO))
src/system/libroot/posix/glibc/arch/generic/s_casinhf.c
38
if (rcls == FP_NAN)
src/system/libroot/posix/glibc/arch/generic/s_casinhf.c
48
|| (rcls == FP_NAN && icls == FP_ZERO))
src/system/libroot/posix/glibc/arch/generic/s_casinhl.c
38
if (rcls == FP_NAN)
src/system/libroot/posix/glibc/arch/generic/s_casinhl.c
48
|| (rcls == FP_NAN && icls == FP_ZERO))
src/system/libroot/posix/glibc/arch/generic/s_cexp.c
116
if (rcls != FP_NAN || icls != FP_NAN)
src/system/libroot/posix/glibc/arch/generic/s_cexpf.c
116
if (rcls != FP_NAN || icls != FP_NAN)
src/system/libroot/posix/glibc/arch/generic/s_cexpl.c
116
if (rcls != FP_NAN || icls != FP_NAN)
src/system/libroot/posix/glibc/arch/generic/s_clog.c
42
else if (rcls != FP_NAN && icls != FP_NAN)
src/system/libroot/posix/glibc/arch/generic/s_clog10.c
42
else if (rcls != FP_NAN && icls != FP_NAN)
src/system/libroot/posix/glibc/arch/generic/s_clog10f.c
42
else if (rcls != FP_NAN && icls != FP_NAN)
src/system/libroot/posix/glibc/arch/generic/s_clog10l.c
42
else if (rcls != FP_NAN && icls != FP_NAN)
src/system/libroot/posix/glibc/arch/generic/s_clogf.c
42
else if (rcls != FP_NAN && icls != FP_NAN)
src/system/libroot/posix/glibc/arch/generic/s_clogl.c
42
else if (rcls != FP_NAN && icls != FP_NAN)
src/system/libroot/posix/glibc/arch/generic/s_csqrtl.c
46
__real__ res = icls == FP_NAN ? nanl ("") : 0;
src/system/libroot/posix/glibc/arch/generic/s_csqrtl.c
52
__imag__ res = (icls == FP_NAN
src/system/libroot/posix/math.c
51
return __fpclassifyf(value) == FP_NAN;
src/system/libroot/posix/math.c
58
return __fpclassify(value) == FP_NAN;
src/system/libroot/posix/math.c
65
return __fpclassifyl(value) == FP_NAN;
src/system/libroot/posix/musl/math/__fpclassify.c
9
if (e==0x7ff) return u.i<<12 ? FP_NAN : FP_INFINITE;
src/system/libroot/posix/musl/math/__fpclassifyf.c
9
if (e==0xff) return u.i<<9 ? FP_NAN : FP_INFINITE;
src/system/libroot/posix/musl/math/__fpclassifyl.c
23
return FP_NAN;
src/system/libroot/posix/musl/math/__fpclassifyl.c
24
return u.i.m << 1 ? FP_NAN : FP_INFINITE;
src/system/libroot/posix/musl/math/__fpclassifyl.c
27
return FP_NAN;
src/system/libroot/posix/musl/math/__fpclassifyl.c
39
return u.i2.lo | u.i2.hi ? FP_NAN : FP_INFINITE;