HomeSort by relevance Sort by last modified time
    Searched refs:IsInf (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/Support/
IsInf.cpp 1 //===-- IsInf.cpp - Platform-independent wrapper around C99 isinf() -------===//
10 // Platform-independent wrapper around C99 isinf()
22 using std::isinf;
27 static int isinf(double x) { return !finite(x) && x==x; }
30 #define isinf(X) (!_finite(X))
32 // GCC's fixincludes seems to be removing the isinf() declaration from the
35 static int isinf(double x) { return !finite(x) && x==x; }
39 static int isinf(double x) { return ((x) == INFINITY) || ((x) == -INFINITY); }
41 # error "Don't know how to get isinf()"
    [all...]
Android.mk 31 IsInf.cpp \
CMakeLists.txt 33 IsInf.cpp
  /external/llvm/include/llvm/Support/
MathExtras.h 411 /// Platform-independent wrappers for the C99 isinf() function.
412 int IsInf(float f);
413 int IsInf(double d);
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 434 // isinf(x) --> fabs(x) == infinity
438 V = Builder.CreateFCmpOEQ(V, ConstantFP::getInfinity(V->getType()),"isinf");
443 // isinf_sign(x) -> isinf(x) ? (signbit(x) ? -1 : 1) : 0
452 Builder.CreateFCmpULT(Abs, ConstantFP::getInfinity(V->getType()),"isinf");
470 Builder.CreateFCmpUNE(Abs, ConstantFP::getInfinity(V->getType()),"isinf");
508 Value *IsInf =
510 "isinf");
513 Builder.CreateCondBr(IsInf, End, NotInf);
    [all...]

Completed in 2110 milliseconds