Home
last modified time | relevance | path

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

12

/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/webvtt/
DWebvttSubtitle.java82 if (isNormal(cue)) {
118 private static boolean isNormal(Cue cue) {
/external/guava/guava/src/com/google/common/math/
DDoubleMath.java22 import static com.google.common.math.DoubleUtils.isNormal;
241 if (!isNormal(x)) { in log2()
DDoubleUtils.java74 static boolean isNormal(double d) { in isNormal() method in DoubleUtils
/external/guava/android/guava/src/com/google/common/math/
DDoubleMath.java22 import static com.google.common.math.DoubleUtils.isNormal;
241 if (!isNormal(x)) { in log2()
DDoubleUtils.java74 static boolean isNormal(double d) { in isNormal() method in DoubleUtils
/external/llvm-project/clang/include/clang/Lex/
DModuleLoader.h62 bool isNormal() const { return Storage.getInt() == Normal; } in isNormal() function
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/
DJimfsPath.java201 if (isNormal()) { in normalize()
227 private boolean isNormal() { in isNormal() method in JimfsPath
/external/clang/lib/CodeGen/
DCGCleanup.h288 EHCleanupScope(bool isNormal, bool isEH, bool isActive, in EHCleanupScope() argument
295 CleanupBits.IsNormalCleanup = isNormal; in EHCleanupScope()
/external/llvm-project/clang/lib/CodeGen/
DCGCleanup.h287 EHCleanupScope(bool isNormal, bool isEH, unsigned cleanupSize, in EHCleanupScope() argument
294 CleanupBits.IsNormalCleanup = isNormal; in EHCleanupScope()
/external/llvm/include/llvm/ADT/
DAPFloat.h410 bool isNormal() const { return !isDenormal() && isFiniteNonZero(); } in isNormal() function
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPFloat.h358 bool isNormal() const { return !isDenormal() && isFiniteNonZero(); } in isNormal() function
1039 bool isNormal() const { return !isDenormal() && isFiniteNonZero(); } in isNormal() function
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPFloat.h341 bool isNormal() const { return !isDenormal() && isFiniteNonZero(); } in isNormal() function
1171 bool isNormal() const { return !isDenormal() && isFiniteNonZero(); } in isNormal() function
/external/llvm-project/llvm/include/llvm/ADT/
DAPFloat.h346 bool isNormal() const { return !isDenormal() && isFiniteNonZero(); } in isNormal() function
1210 bool isNormal() const { return !isDenormal() && isFiniteNonZero(); } in isNormal() function
/external/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPUInstCombineIntrinsic.cpp348 ((Mask & N_NORMAL) && Val.isNormal() && Val.isNegative()) || in instCombineIntrinsic()
353 ((Mask & P_NORMAL) && Val.isNormal() && !Val.isNegative()) || in instCombineIntrinsic()
/external/llvm/unittests/ADT/
DAPFloatTest.cpp1551 TEST(APFloatTest, isNormal) { in TEST() argument
1553 EXPECT_TRUE(t.isNormal()); in TEST()
1555 EXPECT_FALSE(APFloat::getInf(APFloat::IEEEsingle, false).isNormal()); in TEST()
1556 EXPECT_FALSE(APFloat::getZero(APFloat::IEEEsingle, false).isNormal()); in TEST()
1557 EXPECT_FALSE(APFloat::getNaN(APFloat::IEEEsingle, false).isNormal()); in TEST()
1558 EXPECT_FALSE(APFloat::getSNaN(APFloat::IEEEsingle, false).isNormal()); in TEST()
1559 EXPECT_FALSE(APFloat(APFloat::IEEEsingle, "0x1p-149").isNormal()); in TEST()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp455 if (!CFP || !CFP->getValueAPF().isNormal()) in isNormalFp()
461 return isa<ConstantFP>(C) && cast<ConstantFP>(C)->getValueAPF().isNormal(); in isNormalFp()
DInstCombineAddSub.cpp483 if (!F.isNormal()) in performFactorization()
/external/llvm-project/llvm/unittests/ADT/
DAPFloatTest.cpp1925 TEST(APFloatTest, isNormal) { in TEST() argument
1927 EXPECT_TRUE(t.isNormal()); in TEST()
1929 EXPECT_FALSE(APFloat::getInf(APFloat::IEEEsingle(), false).isNormal()); in TEST()
1930 EXPECT_FALSE(APFloat::getZero(APFloat::IEEEsingle(), false).isNormal()); in TEST()
1931 EXPECT_FALSE(APFloat::getNaN(APFloat::IEEEsingle(), false).isNormal()); in TEST()
1932 EXPECT_FALSE(APFloat::getSNaN(APFloat::IEEEsingle(), false).isNormal()); in TEST()
1933 EXPECT_FALSE(APFloat(APFloat::IEEEsingle(), "0x1p-149").isNormal()); in TEST()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstants.cpp242 return CFP->getValueAPF().isNormal(); in isNormalFP()
247 if (!CFP || !CFP->getValueAPF().isNormal()) in isNormalFP()
/external/llvm-project/llvm/lib/IR/
DConstants.cpp243 return CFP->getValueAPF().isNormal(); in isNormalFP()
249 if (!CFP || !CFP->getValueAPF().isNormal()) in isNormalFP()
/external/llvm-project/clang/lib/Frontend/
DCompilerInstance.cpp1912 if (!Result.isNormal()) in loadModule()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineAddSub.cpp1466 if (match(XY, m_APFloat(C)) && !C->isNormal()) in factorizeFAddFSub()
DInstCombineCalls.cpp3596 ((Mask & N_NORMAL) && Val.isNormal() && Val.isNegative()) || in visitCallInst()
3601 ((Mask & P_NORMAL) && Val.isNormal() && !Val.isNegative()) || in visitCallInst()
/external/llvm-project/llvm/lib/Transforms/InstCombine/
DInstCombineAddSub.cpp1499 if (match(XY, m_APFloat(C)) && !C->isNormal()) in factorizeFAddFSub()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp1593 Pow->hasNoInfs() && BaseF->isNormal() && !BaseF->isNegative()) { in replacePowWithExp()

12