Searched refs:opInexact (Results 1 – 11 of 11) sorted by relevance
/external/llvm/unittests/ADT/ |
D | APFloatTest.cpp | 973 EXPECT_EQ(APFloat::opInexact, in TEST() 1645 const int OverflowStatus = APFloat::opOverflow | APFloat::opInexact; in TEST() 1768 { PNormalValue, PLargestValue, "0x1.fffffep+127", APFloat::opInexact, APFloat::fcNormal }, in TEST() 1769 { PNormalValue, MLargestValue, "-0x1.fffffep+127", APFloat::opInexact, APFloat::fcNormal }, in TEST() 1770 { PNormalValue, PSmallestValue, "0x1p+0", APFloat::opInexact, APFloat::fcNormal }, in TEST() 1771 { PNormalValue, MSmallestValue, "0x1p+0", APFloat::opInexact, APFloat::fcNormal }, in TEST() 1772 { PNormalValue, PSmallestNormalized, "0x1p+0", APFloat::opInexact, APFloat::fcNormal }, in TEST() 1773 { PNormalValue, MSmallestNormalized, "0x1p+0", APFloat::opInexact, APFloat::fcNormal }, in TEST() 1785 { MNormalValue, PLargestValue, "0x1.fffffep+127", APFloat::opInexact, APFloat::fcNormal }, in TEST() 1786 { MNormalValue, MLargestValue, "-0x1.fffffep+127", APFloat::opInexact, APFloat::fcNormal }, in TEST() [all …]
|
/external/llvm/lib/Support/ |
D | APFloat.cpp | 1229 return (opStatus) (opOverflow | opInexact); in handleOverflow() 1238 return opInexact; in handleOverflow() 1366 return (opStatus) (opOverflow | opInexact); in normalize() 1371 return opInexact; in normalize() 1378 return opInexact; in normalize() 1388 return (opStatus) (opUnderflow | opInexact); in normalize() 1722 fs = (opStatus) (fs | opInexact); in multiply() 1741 fs = (opStatus) (fs | opInexact); in divide() 1772 assert(fs==opOK || fs==opInexact); // should not overflow or underflow in remainder() 1775 assert(fs==opOK || fs==opInexact); // likewise in remainder() [all …]
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | APFloat.cpp | 1124 return (opStatus) (opOverflow | opInexact); in handleOverflow() 1133 return opInexact; in handleOverflow() 1263 return (opStatus) (opOverflow | opInexact); in normalize() 1268 return opInexact; in normalize() 1275 return opInexact; in normalize() 1285 return (opStatus) (opUnderflow | opInexact); in normalize() 1617 fs = (opStatus) (fs | opInexact); in multiply() 1637 fs = (opStatus) (fs | opInexact); in divide() 1669 assert(fs==opOK || fs==opInexact); // should not overflow or underflow in remainder() 1672 assert(fs==opOK || fs==opInexact); // likewise in remainder() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | APFloat.h | 166 opInexact = 0x10 enumerator
|
/external/llvm/include/llvm/ADT/ |
D | APFloat.h | 177 opInexact = 0x10 enumerator
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | APFloat.h | 178 opInexact = 0x10 enumerator
|
/external/swiftshader/third_party/LLVM/unittests/ADT/ |
D | APFloatTest.cpp | 372 EXPECT_EQ(APFloat::opInexact, in TEST()
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | ConstantFolding.cpp | 1163 if (status != APFloat::opOK && status != APFloat::opInexact) in ConstantFoldConvertToInt()
|
/external/llvm/lib/Analysis/ |
D | ConstantFolding.cpp | 1441 if (status != APFloat::opOK && status != APFloat::opInexact) in ConstantFoldConvertToInt()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 2966 if (fs == APFloat::opOK || fs == APFloat::opInexact) in getNode() 2972 if (fs == APFloat::opOK || fs == APFloat::opInexact) in getNode() 2978 if (fs == APFloat::opOK || fs == APFloat::opInexact) in getNode()
|
D | DAGCombiner.cpp | 8804 if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty in visitFDIV()
|