Lines Matching defs:RangeSize
2855 APInt RangeSize = Div->isExact() ? APInt(C2->getBitWidth(), 1) : *C2;
2874 HiOverflow = addWithOverflow(HiBound, LoBound, RangeSize, false);
2879 LoBound = -(RangeSize - 1);
2880 HiBound = RangeSize;
2885 HiOverflow = addWithOverflow(HiBound, Prod, RangeSize, true);
2891 APInt DivNeg = -RangeSize;
2897 RangeSize.negate();
2900 LoBound = RangeSize + 1;
2901 HiBound = -RangeSize;
2912 addWithOverflow(LoBound, HiBound, RangeSize, true) ? -1 : 0;
2917 HiOverflow = subWithOverflow(HiBound, Prod, RangeSize, true);