Home
last modified time | relevance | path

Searched refs:maskBit (Results 1 – 7 of 7) sorted by relevance

/external/llvm/include/llvm/ADT/
DAPInt.h126 static uint64_t maskBit(unsigned bitPosition) { in maskBit() function
969 return (maskBit(bitPosition) &
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPInt.h130 static uint64_t maskBit(unsigned bitPosition) { in maskBit() function
945 return (maskBit(bitPosition) &
/external/swiftshader/third_party/LLVM/lib/Support/
DAPInt.cpp498 return (maskBit(bitPosition) & in operator []()
600 VAL |= maskBit(bitPosition); in setBit()
602 pVal[whichWord(bitPosition)] |= maskBit(bitPosition); in setBit()
609 VAL &= ~maskBit(bitPosition); in clearBit()
611 pVal[whichWord(bitPosition)] &= ~maskBit(bitPosition); in clearBit()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp555 VAL |= maskBit(bitPosition); in setBit()
557 pVal[whichWord(bitPosition)] |= maskBit(bitPosition); in setBit()
564 VAL &= ~maskBit(bitPosition); in clearBit()
566 pVal[whichWord(bitPosition)] &= ~maskBit(bitPosition); in clearBit()
/external/llvm/lib/Support/
DAPInt.cpp577 VAL |= maskBit(bitPosition); in setBit()
579 pVal[whichWord(bitPosition)] |= maskBit(bitPosition); in setBit()
586 VAL &= ~maskBit(bitPosition); in clearBit()
588 pVal[whichWord(bitPosition)] &= ~maskBit(bitPosition); in clearBit()
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DAPInt.h121 static uint64_t maskBit(unsigned bitPosition) { in maskBit() function
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_arit.c1871 unsigned long long maskBit = (unsigned long long)1 << (type.width - 1); in lp_build_sgn() local
1875 mask = lp_build_const_int_vec(bld->gallivm, type, maskBit); in lp_build_sgn()