HomeSort by relevance Sort by last modified time
    Searched refs:whichWord (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Support/
APInt.cpp 366 unsigned lhsWords = !lhsBits ? 0 : whichWord(lhsBits - 1) + 1;
373 unsigned rhsWords = !rhsBits ? 0 : whichWord(rhsBits - 1) + 1;
502 for (int i = whichWord(n1 - 1); i >= 0; --i)
538 unsigned topWord = whichWord(std::max(n1,n2)-1);
588 pVal[whichWord(bitPosition)] |= maskBit(bitPosition);
597 pVal[whichWord(bitPosition)] &= ~maskBit(bitPosition);
897 unsigned hiWord = whichWord(n-1);
    [all...]
  /external/llvm/include/llvm/ADT/
APInt.h 108 static unsigned whichWord(unsigned bitPosition) {
157 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
    [all...]

Completed in 127 milliseconds