gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 3 of 3 for fundef:isnormal (0.01 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/math.h - 11.9KB - 470 lines
82:         :      __isfinitel(x))
83: #define isnormal(x) \
84:         ((sizeof (x) == sizeof (float)) ? \
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: 
t2ex_source/include/t2ex/math.h - 12.7KB - 323 lines
72:         : __isnanl(x))
73: #define isnormal(x) \
74:         ((sizeof(x) == sizeof(double)) ? __isnormal(x) \