Searched refs:wordShift (Results 1 – 1 of 1) sorted by relevance
1082 unsigned wordShift = shiftAmt % APINT_BITS_PER_WORD; // bits to shift per word in ashr() local1090 if (wordShift == 0) { in ashr()1104 val[i] = (pVal[i+offset] >> wordShift) | in ashr()1105 (pVal[i+offset+1] << (APINT_BITS_PER_WORD - wordShift)); in ashr()1110 val[breakWord] = pVal[breakWord+offset] >> wordShift; in ashr()1115 if (wordShift > bitsInWord) { in ashr()1118 ~0ULL << (APINT_BITS_PER_WORD - (wordShift - bitsInWord)); in ashr()1121 val[breakWord] |= (~0ULL << (bitsInWord - wordShift)); in ashr()1174 unsigned wordShift = shiftAmt % APINT_BITS_PER_WORD; in lshr() local1178 if (wordShift == 0) { in lshr()[all …]