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

/external/llvm/lib/Support/
H A DAPInt.cpp365 unsigned lhsWords = !lhsBits ? 0 : whichWord(lhsBits - 1) + 1;
372 unsigned rhsWords = !rhsBits ? 0 : whichWord(rhsBits - 1) + 1;
501 for (int i = whichWord(n1 - 1); i >= 0; --i)
537 unsigned topWord = whichWord(std::max(n1,n2)-1);
587 pVal[whichWord(bitPosition)] |= maskBit(bitPosition);
596 pVal[whichWord(bitPosition)] &= ~maskBit(bitPosition);
896 unsigned hiWord = whichWord(n-1);
1853 unsigned rhsWords = !rhsBits ? 0 : (APInt::whichWord(rhsBits - 1) + 1);
1856 unsigned lhsWords = !lhsBits ? 0 : (APInt::whichWord(lhsBits - 1) + 1);
1899 unsigned lhsWords = !lhsBits ? 0 : (whichWord(lhsBit
[all...]
/external/llvm/include/llvm/ADT/
H A DAPInt.h108 static unsigned whichWord(unsigned bitPosition) { function in class:llvm::APInt
157 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
945 (isSingleWord() ? VAL : pVal[whichWord(bitPosition)])) !=
1278 return numActiveBits ? whichWord(numActiveBits - 1) + 1 : 1;

Completed in 122 milliseconds