Searched defs:IsInf (Results 1 – 3 of 3) sorted by relevance
75 #define IsInf(x) isinf(x) // Intel ICC compiler on Linux macro78 #define IsInf(x) (!_finite(x)) macro81 #define IsInf(x) std::isinf(x) // GNU C/C++ macro84 #define IsInf(x) std::isinf(x) // Unknown compiler, just hope for C99 conformance macro
46 int IsInf(float f) { return isinf(f); } in IsInf() function47 int IsInf(double d) { return isinf(d); } in IsInf() function
578 Value *IsInf = in EmitBuiltinExpr() local