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.java24 import static com.google.common.math.DoubleUtils.isNormal;
236 if (!isNormal(x)) { in log2()
DDoubleUtils.java78 static boolean isNormal(double d) { in isNormal() method in DoubleUtils
/external/clang/lib/CodeGen/
DCGCleanup.h287 EHCleanupScope(bool isNormal, bool isEH, bool isActive, in EHCleanupScope() argument
293 CleanupBits.IsNormalCleanup = isNormal; in EHCleanupScope()
/external/llvm/include/llvm/ADT/
DAPFloat.h408 bool isNormal() const { return !isDenormal() && isFiniteNonZero(); } in isNormal() function
/external/llvm/unittests/ADT/
DAPFloatTest.cpp1552 TEST(APFloatTest, isNormal) { in TEST() argument
1554 EXPECT_TRUE(t.isNormal()); in TEST()
1556 EXPECT_FALSE(APFloat::getInf(APFloat::IEEEsingle, false).isNormal()); in TEST()
1557 EXPECT_FALSE(APFloat::getZero(APFloat::IEEEsingle, false).isNormal()); in TEST()
1558 EXPECT_FALSE(APFloat::getNaN(APFloat::IEEEsingle, false).isNormal()); in TEST()
1559 EXPECT_FALSE(APFloat::getSNaN(APFloat::IEEEsingle, false).isNormal()); in TEST()
1560 EXPECT_FALSE(APFloat(APFloat::IEEEsingle, "0x1p-149").isNormal()); in TEST()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp452 if (!CFP || !CFP->getValueAPF().isNormal()) in isNormalFp()
458 return isa<ConstantFP>(C) && cast<ConstantFP>(C)->getValueAPF().isNormal(); in isNormalFp()
DInstCombineAddSub.cpp500 if (!F.isNormal()) in performFactorization()
/external/clang/lib/AST/
DExprConstant.cpp6706 Success(Val.isNormal() ? 1 : 0, E); in VisitCallExpr()