gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 2 of 2 for funcall:__isnanf (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/math.h - 11.9KB - 470 lines
112:         ((sizeof (x) == sizeof (float)) ? \
113:                 __isnanf(x) \
114:         : (sizeof (x) == sizeof (double)) ? \
t2ex_source/include/t2ex/math.h - 12.7KB - 323 lines
70:         ((sizeof(x) == sizeof(double)) ? __isnan(x) \
71:         : (sizeof(x) == sizeof(float)) ? __isnanf(x) \
72:         : __isnanl(x))