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

  /external/llvm/lib/Support/
APInt.cpp 365 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);
    [all...]
  /external/llvm/include/llvm/ADT/
APInt.h 106 static unsigned whichWord(unsigned bitPosition) {
152 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
848 (isSingleWord() ? VAL : pVal[whichWord(bitPosition)])) != 0;
    [all...]
  /external/webkit/Source/JavaScriptCore/assembler/
X86Assembler.h     [all...]

Completed in 121 milliseconds