Home
last modified time | relevance | path

Searched refs:isnormal (Results 1 – 7 of 7) sorted by relevance

/picolibc-latest/newlib/libm/machine/pru/
Disnormal.c35 return isnormal(a); in __pruabi_isnormal()
Disnormalf.c35 return isnormal(a); in __pruabi_isnormalf()
/picolibc-latest/newlib/libc/include/
Dmath.h305 #define isnormal(__x) (__builtin_isnormal (__x)) macro
327 #define isnormal(__x) (fpclassify(__x) == FP_NORMAL) macro
335 #define isnormalf(x) isnormal((float) (x))
/picolibc-latest/newlib/libm/common/
Dfma_inc.h222 if (!isnormal(z)) in FMA()
/picolibc-latest/test/
Dmath_errhandling_tests.c332 static long long makemathname(test_isnormal_snan)(void) { return !!isnormal(makemathname(snanval));… in makemathname()
333 static long long makemathname(test_isnormal_nan)(void) { return !!isnormal(makemathname(qnanval)); } in makemathname()
334 static long long makemathname(test_isnormal_inf)(void) { return !!isnormal(makemathname(infval)); } in makemathname()
335 static long long makemathname(test_isnormal_neginf)(void) { return !!isnormal(-makemathname(infval)… in makemathname()
336 static long long makemathname(test_isnormal_zero)(void) { return !!isnormal(makemathname(zero)); } in makemathname()
337 static long long makemathname(test_isnormal_negzero)(void) { return !!isnormal(-makemathname(zero))… in makemathname()
338 static long long makemathname(test_isnormal_small)(void) { return !!isnormal(makemathname(small)); } in makemathname()
339 static long long makemathname(test_isnormal_negsmall)(void) { return !!isnormal(-makemathname(small… in makemathname()
340 static long long makemathname(test_isnormal_two)(void) { return !!isnormal(makemathname(two)); } in makemathname()
341 static long long makemathname(test_isnormal_negtwo)(void) { return !!isnormal(-makemathname(two)); } in makemathname()
/picolibc-latest/
DCOPYING.picolibc420 newlib/libm/machine/pru/isnormal.c
/picolibc-latest/newlib/
DChangeLog-20156746 fpclassify(), isfinite(), isinf(), isnan(), and isnormal().
13052 * libc/include/math.h (isfinite, isnormal, isunordered): Change