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

  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonRelocator.cpp 86 const bool maskBit = (pMask >> bit) & 1;
87 if (maskBit) {
  /external/llvm/include/llvm/ADT/
APInt.h 123 static uint64_t maskBit(unsigned bitPosition) {
855 return (maskBit(bitPosition) &
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 585 VAL |= maskBit(bitPosition);
587 pVal[whichWord(bitPosition)] |= maskBit(bitPosition);
594 VAL &= ~maskBit(bitPosition);
596 pVal[whichWord(bitPosition)] &= ~maskBit(bitPosition);
    [all...]

Completed in 90 milliseconds