Lines Matching refs:RangeSize
2565 APInt RangeSize = Div->isExact() ? APInt(C2->getBitWidth(), 1) : *C2; in foldICmpDivConstant() local
2584 HiOverflow = addWithOverflow(HiBound, LoBound, RangeSize, false); in foldICmpDivConstant()
2589 LoBound = -(RangeSize - 1); in foldICmpDivConstant()
2590 HiBound = RangeSize; in foldICmpDivConstant()
2595 HiOverflow = addWithOverflow(HiBound, Prod, RangeSize, true); in foldICmpDivConstant()
2601 APInt DivNeg = -RangeSize; in foldICmpDivConstant()
2607 RangeSize.negate(); in foldICmpDivConstant()
2610 LoBound = RangeSize + 1; in foldICmpDivConstant()
2611 HiBound = -RangeSize; in foldICmpDivConstant()
2622 addWithOverflow(LoBound, HiBound, RangeSize, true) ? -1 : 0; in foldICmpDivConstant()
2627 HiOverflow = subWithOverflow(HiBound, Prod, RangeSize, true); in foldICmpDivConstant()