Home
last modified time | relevance | path

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

/minix/external/bsd/llvm/dist/llvm/lib/Support/
H A DAPInt.cpp1077 unsigned bitsInWord = whichBit(BitWidth); // how many bits in last word? in ashr() local
1078 if (bitsInWord == 0) in ashr()
1079 bitsInWord = APINT_BITS_PER_WORD; in ashr()
1089 if (bitsInWord < APINT_BITS_PER_WORD) in ashr()
1090 val[breakWord] |= ~0ULL << bitsInWord; // set high bits in ashr()
1107 if (wordShift > bitsInWord) { in ashr()
1110 ~0ULL << (APINT_BITS_PER_WORD - (wordShift - bitsInWord)); in ashr()
1113 val[breakWord] |= (~0ULL << (bitsInWord - wordShift)); in ashr()