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

  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
BitMask.java 32 * @param maskBit to test and clear
35 public boolean testAndClear(int maskBit) {
36 boolean ans = (value & maskBit) != 0;
37 value &= ~maskBit;
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonRelocationFunctions.h 30 const bool maskBit = (pMask >> bit) & 1;
31 if (maskBit) {
  /external/llvm/include/llvm/ADT/
APInt.h 126 static uint64_t maskBit(unsigned bitPosition) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
APInt.cpp 498 return (maskBit(bitPosition) &
600 VAL |= maskBit(bitPosition);
602 pVal[whichWord(bitPosition)] |= maskBit(bitPosition);
609 VAL &= ~maskBit(bitPosition);
611 pVal[whichWord(bitPosition)] &= ~maskBit(bitPosition);
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 577 VAL |= maskBit(bitPosition);
579 pVal[whichWord(bitPosition)] |= maskBit(bitPosition);
586 VAL &= ~maskBit(bitPosition);
588 pVal[whichWord(bitPosition)] &= ~maskBit(bitPosition);
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
APInt.h 121 static uint64_t maskBit(unsigned bitPosition) {
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_arit.c     [all...]

Completed in 422 milliseconds