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

  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
ieee754.h 42 bool IsInf() const { return (u_ & kExponentMask) == kExponentMask && Significand() == 0; }
  /external/ceres-solver/google3/
jet_traits.h 48 static bool IsInf (const Type x) { return isinf(x); }
  /external/eigen/unsupported/test/mpreal/
mpreal.h 75 #define IsInf(x) isinf(x) // Intel ICC compiler on Linux
78 #define IsInf(x) (!_finite(x))
81 #define IsInf(x) std::isinf(x) // GNU C/C++ (and/or other compilers), just hope for C99 conformance
534 friend bool isinf (const mpreal& v);
1691 inline bool isinf (const mpreal& op){ return (mpfr_inf_p (op.mpfr_srcptr()) != 0 ); } function in namespace:mpfr
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
readertest.cpp 392 } while (e.IsNan() || e.IsInf() || !e.IsNormal());
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 755 // isinf(x) --> fabs(x) == infinity
759 V = Builder.CreateFCmpOEQ(V, ConstantFP::getInfinity(V->getType()),"isinf");
767 Value *IsInf = Builder.CreateFCmpOEQ(
768 AbsArg, ConstantFP::getInfinity(Arg->getType()), "isinf");
776 Value *Result = Builder.CreateSelect(IsInf, SignResult, Zero);
787 Builder.CreateFCmpULT(Abs, ConstantFP::getInfinity(V->getType()),"isinf");
805 Builder.CreateFCmpUNE(Abs, ConstantFP::getInfinity(V->getType()),"isinf");
    [all...]

Completed in 197 milliseconds