Searched refs:IsInf (Results 1 – 9 of 9) sorted by relevance
46 int IsInf(float f) { return isinf(f); } in IsInf() function47 int IsInf(double d) { return isinf(d); } in IsInf() function
36 IsInf.cpp \
32 IsInf.cpp
539 int IsInf(float f);540 int IsInf(double d);
48 static bool IsInf (const Type x) { return isinf(x); }
76 #define IsInf(x) isinf(x) // Intel ICC compiler on Linux macro79 #define IsInf(x) (!_finite(x)) macro82 …#define IsInf(x) std::isinf(x) // GNU C/C++ (and/or other compilers), just hope for C… macro2523 return IsInf(x) || (std::modf ( std::ldexp ( std::frexp ( x, &i ), n ), &t ) == 0.0);
1236 EXPECT_TRUE(IsInf(P.convertToDouble()) && P.convertToDouble() > 0.0); in TEST()1239 EXPECT_TRUE(IsInf(P.convertToDouble()) && P.convertToDouble() < 0.0); in TEST()
589 Value *IsInf = in EmitBuiltinExpr() local594 Builder.CreateCondBr(IsInf, End, NotInf); in EmitBuiltinExpr()
1406 + IsInf.cpp \