Lines Matching defs:ShiftAmt
1031 void APInt::ashrSlowCase(unsigned ShiftAmt) {
1033 if (!ShiftAmt)
1040 unsigned WordShift = ShiftAmt / APINT_BITS_PER_WORD;
1041 unsigned BitShift = ShiftAmt % APINT_BITS_PER_WORD;
1079 void APInt::lshrSlowCase(unsigned ShiftAmt) {
1080 tcShiftRight(U.pVal, getNumWords(), ShiftAmt);
1091 void APInt::shlSlowCase(unsigned ShiftAmt) {
1092 tcShiftLeft(U.pVal, getNumWords(), ShiftAmt);
2240 unsigned ShiftAmt = (Radix == 16 ? 4 : (Radix == 8 ? 3 : 1));
2250 Tmp.lshrInPlace(ShiftAmt);