Home
last modified time | relevance | path

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

/external/llvm/unittests/ADT/
DAPFloatTest.cpp898 EXPECT_EQ(APFloat::opInexact, in TEST()
1545 const int OverflowStatus = APFloat::opOverflow | APFloat::opInexact; in TEST()
1668 { PNormalValue, PLargestValue, "0x1.fffffep+127", APFloat::opInexact, APFloat::fcNormal }, in TEST()
1669 { PNormalValue, MLargestValue, "-0x1.fffffep+127", APFloat::opInexact, APFloat::fcNormal }, in TEST()
1670 { PNormalValue, PSmallestValue, "0x1p+0", APFloat::opInexact, APFloat::fcNormal }, in TEST()
1671 { PNormalValue, MSmallestValue, "0x1p+0", APFloat::opInexact, APFloat::fcNormal }, in TEST()
1672 { PNormalValue, PSmallestNormalized, "0x1p+0", APFloat::opInexact, APFloat::fcNormal }, in TEST()
1673 { PNormalValue, MSmallestNormalized, "0x1p+0", APFloat::opInexact, APFloat::fcNormal }, in TEST()
1685 { MNormalValue, PLargestValue, "0x1.fffffep+127", APFloat::opInexact, APFloat::fcNormal }, in TEST()
1686 { MNormalValue, MLargestValue, "-0x1.fffffep+127", APFloat::opInexact, APFloat::fcNormal }, in TEST()
[all …]
/external/llvm/lib/Support/
DAPFloat.cpp1194 return (opStatus) (opOverflow | opInexact); in handleOverflow()
1203 return opInexact; in handleOverflow()
1331 return (opStatus) (opOverflow | opInexact); in normalize()
1336 return opInexact; in normalize()
1343 return opInexact; in normalize()
1353 return (opStatus) (opUnderflow | opInexact); in normalize()
1687 fs = (opStatus) (fs | opInexact); in multiply()
1706 fs = (opStatus) (fs | opInexact); in divide()
1737 assert(fs==opOK || fs==opInexact); // should not overflow or underflow in remainder()
1740 assert(fs==opOK || fs==opInexact); // likewise in remainder()
[all …]
/external/llvm/include/llvm/ADT/
DAPFloat.h172 opInexact = 0x10 enumerator
/external/llvm/lib/Analysis/
DConstantFolding.cpp1390 if (status != APFloat::opOK && status != APFloat::opInexact) in ConstantFoldConvertToInt()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp2728 if (fs == APFloat::opOK || fs == APFloat::opInexact) in getNode()
2734 if (fs == APFloat::opOK || fs == APFloat::opInexact) in getNode()
2740 if (fs == APFloat::opOK || fs == APFloat::opInexact) in getNode()
DDAGCombiner.cpp6929 if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty in visitFDIV()