Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstantRange.cpp1436 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedAddMayOverflow() local
1439 if (Min.ugt(~OtherMin)) in unsignedAddMayOverflow()
1452 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedAddMayOverflow() local
1459 if (Min.isNonNegative() && OtherMin.isNonNegative() && in signedAddMayOverflow()
1460 Min.sgt(SignedMax - OtherMin)) in signedAddMayOverflow()
1469 if (Min.isNegative() && OtherMin.isNegative() && in signedAddMayOverflow()
1470 Min.slt(SignedMin - OtherMin)) in signedAddMayOverflow()
1482 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedSubMayOverflow() local
1485 if (Max.ult(OtherMin)) in unsignedSubMayOverflow()
1498 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedSubMayOverflow() local
[all …]