Searched refs:shiftAmt (Results 1 – 3 of 3) sorted by relevance
469 unsigned shiftAmt = C.getZExtValue(); in lshr() local470 if (shiftAmt >= C.getBitWidth()) in lshr()478 if (A.countr_zero() < shiftAmt) in lshr()481 incErrorMSBs(shiftAmt); in lshr()485 A = A.lshr(shiftAmt); in lshr()
851 APInt lshr(unsigned shiftAmt) const { in lshr() argument853 R.lshrInPlace(shiftAmt); in lshr()873 APInt shl(unsigned shiftAmt) const { in shl() argument875 R <<= shiftAmt; in shl()915 LLVM_ABI void ashrInPlace(const APInt &shiftAmt);
1051 void APInt::ashrInPlace(const APInt &shiftAmt) { in ashrInPlace() argument1052 ashrInPlace((unsigned)shiftAmt.getLimitedValue(BitWidth)); in ashrInPlace()1099 void APInt::lshrInPlace(const APInt &shiftAmt) { in lshrInPlace() argument1100 lshrInPlace((unsigned)shiftAmt.getLimitedValue(BitWidth)); in lshrInPlace()1111 APInt &APInt::operator<<=(const APInt &shiftAmt) { in operator <<=() argument1113 *this <<= (unsigned)shiftAmt.getLimitedValue(BitWidth); in operator <<=()