Search | Google it | Results 1 - 3 of 3 for funcall:__isinf (0.00 seconds) |
108: : (sizeof (x) == sizeof (double)) ? \ 109: __isinf(x) \ 110: : __isinfl(x))
380: #ifdef __isinf 381: #define isinf(__x) __isinf(__x) 382: #else
65: #define isinf(x) \ 66: ((sizeof(x) == sizeof(double)) ? __isinf(x) \ 67: : (sizeof(x) == sizeof(float)) ? __isinff(x) \