Home
last modified time | relevance | path

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

/haiku/headers/cpp/
H A Dcmath81 #undef isnormal
108 inline bool isnormal(float __x) { return __fpclassifyf(__x) == FP_NORMAL; }
109 inline bool isnormal(double __x) { return __fpclassify(__x) == FP_NORMAL; }
110 inline bool isnormal(long double __x) { return __fpclassifyl(__x) == FP_NORMAL; }
/haiku/src/add-ons/kernel/network/stack/
H A Dradix.c620 int maskduplicated, m0, isnormal; in rn_addmask() local
672 isnormal = 1; in rn_addmask()
683 isnormal = 0; in rn_addmask()
687 if (isnormal) in rn_addmask()
/haiku/headers/posix/
H A Dmath.h346 #define isnormal(value) __builtin_isnormal((value)) macro
388 # define isnormal(value) \ macro
/haiku/src/system/libroot/posix/musl/math/
H A Dfmal.c204 if (!isnormal(z)) in fmal()