Searched defs:IsInf (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/Support/
H A DIsInf.cpp1 //===-- IsInf.cpp - Platform-independent wrapper around C99 isinf() -------===//
46 int IsInf(float f) { return isinf(f); } function in namespace:llvm
47 int IsInf(double d) { return isinf(d); } function in namespace:llvm
/external/ceres-solver/google3/
H A Djet_traits.h48 static bool IsInf (const Type x) { return isinf(x); } function in struct:MathLimits
/external/eigen/unsupported/test/mpreal/
H A 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 C99 conformance macro
2523 return IsInf(x) || (std::modf ( std::ldexp ( std::frexp ( x, &i ), n ), &t ) == 0.0);
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp589 Value *IsInf = local
594 Builder.CreateCondBr(IsInf, End, NotInf);

Completed in 936 milliseconds