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

/external/llvm/lib/Support/
H A DAPInt.cpp1072 unsigned bitsInWord = whichBit(BitWidth); // how many bits in last word?
1073 if (bitsInWord == 0)
1074 bitsInWord = APINT_BITS_PER_WORD;
1084 if (bitsInWord < APINT_BITS_PER_WORD)
1085 val[breakWord] |= ~0ULL << bitsInWord; // set high bits
1102 if (wordShift > bitsInWord) {
1105 ~0ULL << (APINT_BITS_PER_WORD - (wordShift - bitsInWord));
1108 val[breakWord] |= (~0ULL << (bitsInWord - wordShift));
/external/webkit/Source/WebCore/editing/
H A DTextIterator.cpp120 static const unsigned bitsInWord = sizeof(unsigned) * 8; member in namespace:WebCore
121 static const unsigned bitInWordMask = bitsInWord - 1;
134 unsigned index = m_size / bitsInWord;

Completed in 95 milliseconds