Home
last modified time | relevance | path

Searched refs:wordShift (Results 1 – 1 of 1) sorted by relevance

/external/llvm/lib/Support/
DAPInt.cpp1069 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()
[all …]