Lines Matching refs:OtherMin
1549 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedAddMayOverflow() local
1552 if (Min.ugt(~OtherMin)) in unsignedAddMayOverflow()
1565 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedAddMayOverflow() local
1572 if (Min.isNonNegative() && OtherMin.isNonNegative() && in signedAddMayOverflow()
1573 Min.sgt(SignedMax - OtherMin)) in signedAddMayOverflow()
1582 if (Min.isNegative() && OtherMin.isNegative() && in signedAddMayOverflow()
1583 Min.slt(SignedMin - OtherMin)) in signedAddMayOverflow()
1595 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedSubMayOverflow() local
1598 if (Max.ult(OtherMin)) in unsignedSubMayOverflow()
1611 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedSubMayOverflow() local
1621 if (Max.isNegative() && OtherMin.isNonNegative() && in signedSubMayOverflow()
1622 Max.slt(SignedMin + OtherMin)) in signedSubMayOverflow()
1625 if (Max.isNonNegative() && OtherMin.isNegative() && in signedSubMayOverflow()
1626 Max.sgt(SignedMax + OtherMin)) in signedSubMayOverflow()
1641 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedMulMayOverflow() local
1644 (void) Min.umul_ov(OtherMin, Overflow); in unsignedMulMayOverflow()