Home
last modified time | relevance | path

Searched defs:IsInf (Results 1 – 3 of 3) sorted by relevance

/external/eigen/unsupported/test/mpreal/
Dmpreal.h75 #define IsInf(x) isinf(x) // Intel ICC compiler on Linux macro
78 #define IsInf(x) (!_finite(x)) macro
81 #define IsInf(x) std::isinf(x) // GNU C/C++ macro
84 #define IsInf(x) std::isinf(x) // Unknown compiler, just hope for C99 conformance macro
/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
/external/clang/lib/CodeGen/
DCGBuiltin.cpp578 Value *IsInf = in EmitBuiltinExpr() local