Searched refs:OtherMax (Results 1 – 1 of 1) sorted by relevance
1436 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedAddMayOverflow() local1441 if (Max.ugt(~OtherMax)) in unsignedAddMayOverflow()1452 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedAddMayOverflow() local1462 if (Max.isNegative() && OtherMax.isNegative() && in signedAddMayOverflow()1463 Max.slt(SignedMin - OtherMax)) in signedAddMayOverflow()1466 if (Max.isNonNegative() && OtherMax.isNonNegative() && in signedAddMayOverflow()1467 Max.sgt(SignedMax - OtherMax)) in signedAddMayOverflow()1482 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedSubMayOverflow() local1487 if (Min.ult(OtherMax)) in unsignedSubMayOverflow()1498 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedSubMayOverflow() local[all …]