Lines Matching refs:OtherMin
1578 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedAddMayOverflow() local
1581 if (Min.ugt(~OtherMin)) in unsignedAddMayOverflow()
1594 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedAddMayOverflow() local
1601 if (Min.isNonNegative() && OtherMin.isNonNegative() && in signedAddMayOverflow()
1602 Min.sgt(SignedMax - OtherMin)) in signedAddMayOverflow()
1611 if (Min.isNegative() && OtherMin.isNegative() && in signedAddMayOverflow()
1612 Min.slt(SignedMin - OtherMin)) in signedAddMayOverflow()
1624 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedSubMayOverflow() local
1627 if (Max.ult(OtherMin)) in unsignedSubMayOverflow()
1640 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedSubMayOverflow() local
1650 if (Max.isNegative() && OtherMin.isNonNegative() && in signedSubMayOverflow()
1651 Max.slt(SignedMin + OtherMin)) in signedSubMayOverflow()
1654 if (Max.isNonNegative() && OtherMin.isNegative() && in signedSubMayOverflow()
1655 Max.sgt(SignedMax + OtherMin)) in signedSubMayOverflow()
1670 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedMulMayOverflow() local
1673 (void) Min.umul_ov(OtherMin, Overflow); in unsignedMulMayOverflow()