gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 3 of 3 for funcall:__isinf (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/math.h - 11.9KB - 470 lines
108:         : (sizeof (x) == sizeof (double)) ? \
109:                 __isinf(x) \
110:         :      __isinfl(x))
bsd_source/t2ex/network/net/include/netbsd/math.h - 12.8KB - 488 lines
380: #ifdef __isinf
381: #define isinf(__x)      __isinf(__x)
382: #else
t2ex_source/include/t2ex/math.h - 12.7KB - 323 lines
65: #define isinf(x) \
66:         ((sizeof(x) == sizeof(double)) ? __isinf(x) \
67:         : (sizeof(x) == sizeof(float)) ? __isinff(x) \