Lines Matching refs:wordShift
1069 unsigned wordShift = shiftAmt % APINT_BITS_PER_WORD; // bits to shift per word in ashr() local
1077 if (wordShift == 0) { in ashr()
1091 val[i] = (pVal[i+offset] >> wordShift) | in ashr()
1092 (pVal[i+offset+1] << (APINT_BITS_PER_WORD - wordShift)); in ashr()
1097 val[breakWord] = pVal[breakWord+offset] >> wordShift; in ashr()
1102 if (wordShift > bitsInWord) { in ashr()
1105 ~0ULL << (APINT_BITS_PER_WORD - (wordShift - bitsInWord)); in ashr()
1108 val[breakWord] |= (~0ULL << (bitsInWord - wordShift)); in ashr()
1157 unsigned wordShift = shiftAmt % APINT_BITS_PER_WORD; in lshr() local
1161 if (wordShift == 0) { in lshr()
1172 val[i] = (pVal[i+offset] >> wordShift) | in lshr()
1173 (pVal[i+offset+1] << (APINT_BITS_PER_WORD - wordShift)); in lshr()
1175 val[breakWord] = pVal[breakWord+offset] >> wordShift; in lshr()
1217 unsigned wordShift = shiftAmt % APINT_BITS_PER_WORD; in shlSlowCase() local
1221 if (wordShift == 0) { in shlSlowCase()
1232 val[i] = pVal[i-offset] << wordShift | in shlSlowCase()
1233 pVal[i-offset-1] >> (APINT_BITS_PER_WORD - wordShift); in shlSlowCase()
1234 val[offset] = pVal[0] << wordShift; in shlSlowCase()