Home
last modified time | relevance | path

Searched refs:opInexact (Results 1 – 6 of 6) sorted by relevance

/external/llvm/unittests/ADT/
DAPFloatTest.cpp974 EXPECT_EQ(APFloat::opInexact, in TEST()
1646 const int OverflowStatus = APFloat::opOverflow | APFloat::opInexact; in TEST()
1769 { PNormalValue, PLargestValue, "0x1.fffffep+127", APFloat::opInexact, APFloat::fcNormal }, in TEST()
1770 { PNormalValue, MLargestValue, "-0x1.fffffep+127", APFloat::opInexact, APFloat::fcNormal }, in TEST()
1771 { PNormalValue, PSmallestValue, "0x1p+0", APFloat::opInexact, APFloat::fcNormal }, in TEST()
1772 { PNormalValue, MSmallestValue, "0x1p+0", APFloat::opInexact, APFloat::fcNormal }, in TEST()
1773 { PNormalValue, PSmallestNormalized, "0x1p+0", APFloat::opInexact, APFloat::fcNormal }, in TEST()
1774 { PNormalValue, MSmallestNormalized, "0x1p+0", APFloat::opInexact, APFloat::fcNormal }, in TEST()
1786 { MNormalValue, PLargestValue, "0x1.fffffep+127", APFloat::opInexact, APFloat::fcNormal }, in TEST()
1787 { MNormalValue, MLargestValue, "-0x1.fffffep+127", APFloat::opInexact, APFloat::fcNormal }, in TEST()
[all …]
/external/llvm/lib/Support/
DAPFloat.cpp1226 return (opStatus) (opOverflow | opInexact); in handleOverflow()
1235 return opInexact; in handleOverflow()
1363 return (opStatus) (opOverflow | opInexact); in normalize()
1368 return opInexact; in normalize()
1375 return opInexact; in normalize()
1385 return (opStatus) (opUnderflow | opInexact); in normalize()
1719 fs = (opStatus) (fs | opInexact); in multiply()
1738 fs = (opStatus) (fs | opInexact); in divide()
1769 assert(fs==opOK || fs==opInexact); // should not overflow or underflow in remainder()
1772 assert(fs==opOK || fs==opInexact); // likewise in remainder()
[all …]
/external/llvm/include/llvm/ADT/
DAPFloat.h175 opInexact = 0x10 enumerator
/external/llvm/lib/Analysis/
DConstantFolding.cpp1394 if (status != APFloat::opOK && status != APFloat::opInexact) in ConstantFoldConvertToInt()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp2930 if (fs == APFloat::opOK || fs == APFloat::opInexact) in getNode()
2936 if (fs == APFloat::opOK || fs == APFloat::opInexact) in getNode()
2942 if (fs == APFloat::opOK || fs == APFloat::opInexact) in getNode()
DDAGCombiner.cpp8666 if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty in visitFDIV()