Lines Matching defs:ShiftAmt
1026 void APInt::ashrSlowCase(unsigned ShiftAmt) {
1028 if (!ShiftAmt)
1035 unsigned WordShift = ShiftAmt / APINT_BITS_PER_WORD;
1036 unsigned BitShift = ShiftAmt % APINT_BITS_PER_WORD;
1075 void APInt::lshrSlowCase(unsigned ShiftAmt) {
1076 tcShiftRight(U.pVal, getNumWords(), ShiftAmt);
1087 void APInt::shlSlowCase(unsigned ShiftAmt) {
1088 tcShiftLeft(U.pVal, getNumWords(), ShiftAmt);
2236 unsigned ShiftAmt = (Radix == 16 ? 4 : (Radix == 8 ? 3 : 1));
2246 Tmp.lshrInPlace(ShiftAmt);