Lines Matching defs:OtherMax
1255 APInt OtherMax = Other.getSignedMax();
1258 auto Muls = {Min.smul_ov(OtherMin, O1), Min.smul_ov(OtherMax, O2),
1259 Max.smul_ov(OtherMin, O3), Max.smul_ov(OtherMax, O4)};
1586 APInt OtherMax = Other.getUnsignedMax();
1587 if (isAllNegative() && OtherMax.ule(Min.countl_one())) {
1591 Min <<= OtherMax;
1596 if (OtherMax.ugt(Max.countl_zero()))
1602 Max <<= OtherMax;
1726 APInt OtherMax = Other.getSignedMax();
1728 auto L = {Min.smul_sat(OtherMin), Min.smul_sat(OtherMax),
1729 Max.smul_sat(OtherMin), Max.smul_sat(OtherMax)};
1962 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax();
1967 if (Max.ugt(~OtherMax))
1978 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax();
1988 if (Max.isNegative() && OtherMax.isNegative() &&
1989 Max.slt(SignedMin - OtherMax))
1992 if (Max.isNonNegative() && OtherMax.isNonNegative() &&
1993 Max.sgt(SignedMax - OtherMax))
2008 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax();
2013 if (Min.ult(OtherMax))
2024 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax();
2031 if (Min.isNonNegative() && OtherMax.isNegative() &&
2032 Min.sgt(SignedMax + OtherMax))
2041 if (Min.isNegative() && OtherMax.isNonNegative() &&
2042 Min.slt(SignedMin + OtherMax))
2054 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax();
2061 (void) Max.umul_ov(OtherMax, Overflow);