Lines Matching defs:shiftAmt
1023 /// Arithmetic right-shift this APInt by shiftAmt.
1025 void APInt::ashrInPlace(const APInt &shiftAmt) {
1026 ashrInPlace((unsigned)shiftAmt.getLimitedValue(BitWidth));
1029 /// Arithmetic right-shift this APInt by shiftAmt.
1071 /// Logical right-shift this APInt by shiftAmt.
1073 void APInt::lshrInPlace(const APInt &shiftAmt) {
1074 lshrInPlace((unsigned)shiftAmt.getLimitedValue(BitWidth));
1077 /// Logical right-shift this APInt by shiftAmt.
1083 /// Left-shift this APInt by shiftAmt.
1085 APInt &APInt::operator<<=(const APInt &shiftAmt) {
1087 *this <<= (unsigned)shiftAmt.getLimitedValue(BitWidth);