Search | Google it | Results 1 - 2 of 2 for funcall:__isfinite (0.00 seconds) |
80: : (sizeof (x) == sizeof (double)) ? \ 81: __isfinite(x) \ 82: : __isfinitel(x))
61: #define isfinite(x) \ 62: ((sizeof(x) == sizeof(double)) ? __isfinite(x) \ 63: : (sizeof(x) == sizeof(float)) ? __isfinitef(x) \