gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 3 of 3 for funcall:fpclassify (0.02 seconds)
t2ex
bsd_source/lib/libc/src_bsd/stdlib/hdtoa.c - 11.0KB - 332 lines
132: 
133:         switch (fpclassify(d)) {
134:         case FP_NORMAL:
More results from hdtoa.c
bsd_source/lib/libc/src_bsd/stdlib/ldtoa.c - 4.1KB - 124 lines
79: 
80:         switch (fpclassify(*ld)) {
81:         case FP_NORMAL:
bsd_source/t2ex/network/net/include/netbsd/math.h - 12.8KB - 488 lines
264: /* 7.12.3.5 int isnormal(real-floating x) */
265: #define isnormal(__x)   (fpclassify(__x) == FP_NORMAL)
266: