Home
last modified time | relevance | path

Searched refs:IsInf (Results 1 – 9 of 9) sorted by relevance

/external/llvm/lib/Support/
DIsInf.cpp46 int IsInf(float f) { return isinf(f); } in IsInf() function
47 int IsInf(double d) { return isinf(d); } in IsInf() function
DAndroid.mk36 IsInf.cpp \
DCMakeLists.txt32 IsInf.cpp
/external/llvm/include/llvm/Support/
DMathExtras.h539 int IsInf(float f);
540 int IsInf(double d);
/external/ceres-solver/google3/
Djet_traits.h48 static bool IsInf (const Type x) { return isinf(x); }
/external/eigen/unsupported/test/mpreal/
Dmpreal.h76 #define IsInf(x) isinf(x) // Intel ICC compiler on Linux macro
79 #define IsInf(x) (!_finite(x)) macro
82 …#define IsInf(x) std::isinf(x) // GNU C/C++ (and/or other compilers), just hope for C… macro
2523 return IsInf(x) || (std::modf ( std::ldexp ( std::frexp ( x, &i ), n ), &t ) == 0.0);
/external/llvm/unittests/ADT/
DAPFloatTest.cpp1236 EXPECT_TRUE(IsInf(P.convertToDouble()) && P.convertToDouble() > 0.0); in TEST()
1239 EXPECT_TRUE(IsInf(P.convertToDouble()) && P.convertToDouble() < 0.0); in TEST()
/external/clang/lib/CodeGen/
DCGBuiltin.cpp589 Value *IsInf = in EmitBuiltinExpr() local
594 Builder.CreateCondBr(IsInf, End, NotInf); in EmitBuiltinExpr()
/external/llvm/patches/
D0004-Add-Android-makefiles-for-LLVM.patch1406 + IsInf.cpp \