Searched refs:isNormal (Results 1 – 8 of 8) sorted by relevance
/external/guava/guava/src/com/google/common/math/ |
D | DoubleMath.java | 24 import static com.google.common.math.DoubleUtils.isNormal; 236 if (!isNormal(x)) { in log2()
|
D | DoubleUtils.java | 78 static boolean isNormal(double d) { in isNormal() method in DoubleUtils
|
/external/clang/lib/CodeGen/ |
D | CGCleanup.h | 287 EHCleanupScope(bool isNormal, bool isEH, bool isActive, in EHCleanupScope() argument 293 CleanupBits.IsNormalCleanup = isNormal; in EHCleanupScope()
|
/external/llvm/include/llvm/ADT/ |
D | APFloat.h | 408 bool isNormal() const { return !isDenormal() && isFiniteNonZero(); } in isNormal() function
|
/external/llvm/unittests/ADT/ |
D | APFloatTest.cpp | 1552 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/ |
D | InstCombineMulDivRem.cpp | 452 if (!CFP || !CFP->getValueAPF().isNormal()) in isNormalFp() 458 return isa<ConstantFP>(C) && cast<ConstantFP>(C)->getValueAPF().isNormal(); in isNormalFp()
|
D | InstCombineAddSub.cpp | 500 if (!F.isNormal()) in performFactorization()
|
/external/clang/lib/AST/ |
D | ExprConstant.cpp | 6706 Success(Val.isNormal() ? 1 : 0, E); in VisitCallExpr()
|