gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 3 of 3 for funcall:__isnan (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/math.h - 11.9KB - 470 lines
114:         : (sizeof (x) == sizeof (double)) ? \
115:                 __isnan(x) \
116:         :      __isnanl(x))
bsd_source/t2ex/network/net/include/netbsd/math.h - 12.8KB - 488 lines
387: #ifdef __isnan
388: #define isnan(__x)      __isnan(__x)
389: #else
t2ex_source/include/t2ex/math.h - 12.7KB - 323 lines
69: #define isnan(x) \
70:         ((sizeof(x) == sizeof(double)) ? __isnan(x) \
71:         : (sizeof(x) == sizeof(float)) ? __isnanf(x) \