Home
last modified time | relevance | path

Searched refs:isDenormal (Results 1 – 7 of 7) sorted by relevance

/external/llvm/unittests/ADT/
DAPFloatTest.cpp220 EXPECT_FALSE(test.isDenormal()); in TEST()
229 EXPECT_FALSE(test.isDenormal()); in TEST()
238 EXPECT_TRUE(test.isDenormal()); in TEST()
247 EXPECT_TRUE(test.isDenormal()); in TEST()
297 EXPECT_TRUE(test.isDenormal()); in TEST()
306 EXPECT_TRUE(test.isDenormal()); in TEST()
315 EXPECT_TRUE(!test.isDenormal()); in TEST()
324 EXPECT_TRUE(!test.isDenormal()); in TEST()
381 EXPECT_TRUE(test.isDenormal()); in TEST()
391 EXPECT_TRUE(test.isDenormal()); in TEST()
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPFloat.h358 bool isNormal() const { return !isDenormal() && isFiniteNonZero(); } in isNormal()
371 bool isDenormal() const;
1036 bool isDenormal() const { return getIEEE().isDenormal(); } in isDenormal() function
1039 bool isNormal() const { return !isDenormal() && isFiniteNonZero(); } in isNormal()
/external/llvm/include/llvm/ADT/
DAPFloat.h410 bool isNormal() const { return !isDenormal() && isFiniteNonZero(); } in isNormal()
423 bool isDenormal() const;
/external/llvm/lib/Support/
DAPFloat.cpp706 APFloat::isDenormal() const { in isDenormal() function in APFloat
3792 if (reciprocal.isDenormal()) in getExactInverse()
3909 bool WillCrossBinadeBoundary = !isDenormal() && isSignificandAllOnes(); in next()
3961 if (!Arg.isDenormal()) in ilogb()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp1232 Cvt = !Reciprocal.isDenormal(); in CvtFDivConstToReciprocal()
/external/llvm/lib/Target/AMDGPU/
DSIISelLowering.cpp2663 if (C.isDenormal()) { in performFCanonicalizeCombine()
/external/clang/lib/AST/
DExprConstant.cpp6952 case APFloat::fcNormal: Arg = Val.isDenormal() ? 3 : 2; break; in VisitCallExpr()