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.countTrailingZeros() < shiftAmt) in lshr()481 incErrorMSBs(shiftAmt); in lshr()485 A = A.lshr(shiftAmt); in lshr()
832 APInt lshr(unsigned shiftAmt) const { in lshr() argument834 R.lshrInPlace(shiftAmt); in lshr()854 APInt shl(unsigned shiftAmt) const { in shl() argument856 R <<= shiftAmt; in shl()876 void ashrInPlace(const APInt &shiftAmt);
1012 void APInt::ashrInPlace(const APInt &shiftAmt) { in ashrInPlace() argument1013 ashrInPlace((unsigned)shiftAmt.getLimitedValue(BitWidth)); in ashrInPlace()1061 void APInt::lshrInPlace(const APInt &shiftAmt) { in lshrInPlace() argument1062 lshrInPlace((unsigned)shiftAmt.getLimitedValue(BitWidth)); in lshrInPlace()1073 APInt &APInt::operator<<=(const APInt &shiftAmt) { in operator <<=() argument1075 *this <<= (unsigned)shiftAmt.getLimitedValue(BitWidth); in operator <<=()