Home
last modified time | relevance | path

Searched refs:isNormal (Results 1 – 8 of 8) sorted by relevance

/external/guava/guava/src/com/google/common/math/
DDoubleMath.java25 import static com.google.common.math.DoubleUtils.isNormal;
214 if (!isNormal(x)) { in log2()
DDoubleUtils.java123 static boolean isNormal(double d) { in isNormal() method in DoubleUtils
/external/clang/lib/CodeGen/
DCGCleanup.h266 EHCleanupScope(bool isNormal, bool isEH, bool isActive, in EHCleanupScope() argument
272 CleanupBits.IsNormalCleanup = isNormal; in EHCleanupScope()
/external/llvm/include/llvm/ADT/
DAPFloat.h368 bool isNormal() const { return !isDenormal() && isFiniteNonZero(); } in isNormal() function
/external/llvm/unittests/ADT/
DAPFloatTest.cpp1451 TEST(APFloatTest, isNormal) { in TEST() argument
1453 EXPECT_TRUE(t.isNormal()); in TEST()
1455 EXPECT_FALSE(APFloat::getInf(APFloat::IEEEsingle, false).isNormal()); in TEST()
1456 EXPECT_FALSE(APFloat::getZero(APFloat::IEEEsingle, false).isNormal()); in TEST()
1457 EXPECT_FALSE(APFloat::getNaN(APFloat::IEEEsingle, false).isNormal()); in TEST()
1458 EXPECT_FALSE(APFloat::getSNaN(APFloat::IEEEsingle, false).isNormal()); in TEST()
1459 EXPECT_FALSE(APFloat(APFloat::IEEEsingle, "0x1p-149").isNormal()); in TEST()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp351 if (!CFP || !CFP->getValueAPF().isNormal()) in isNormalFp()
357 return isa<ConstantFP>(C) && cast<ConstantFP>(C)->getValueAPF().isNormal(); in isNormalFp()
DInstCombineAddSub.cpp499 if (!F.isNormal()) in performFactorization()
/external/clang/lib/AST/
DExprConstant.cpp6144 Success(Val.isNormal() ? 1 : 0, E); in VisitCallExpr()