Searched refs:shiftAmt (Results 1 – 3 of 3) sorted by relevance
470 unsigned shiftAmt = C.getZExtValue(); in lshr() local471 if (shiftAmt >= C.getBitWidth()) in lshr()479 if (A.countr_zero() < shiftAmt) in lshr()482 incErrorMSBs(shiftAmt); in lshr()486 A = A.lshr(shiftAmt); in lshr()
831 APInt lshr(unsigned shiftAmt) const { in lshr() argument833 R.lshrInPlace(shiftAmt); in lshr()853 APInt shl(unsigned shiftAmt) const { in shl() argument855 R <<= shiftAmt; in shl()895 void ashrInPlace(const APInt &shiftAmt);
1020 void APInt::ashrInPlace(const APInt &shiftAmt) { in ashrInPlace() argument1021 ashrInPlace((unsigned)shiftAmt.getLimitedValue(BitWidth)); in ashrInPlace()1069 void APInt::lshrInPlace(const APInt &shiftAmt) { in lshrInPlace() argument1070 lshrInPlace((unsigned)shiftAmt.getLimitedValue(BitWidth)); in lshrInPlace()1081 APInt &APInt::operator<<=(const APInt &shiftAmt) { in operator <<=() argument1083 *this <<= (unsigned)shiftAmt.getLimitedValue(BitWidth); in operator <<=()