Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DAPInt.h137 static uint64_t maskBit(unsigned bitPosition) { in maskBit() function
1112 return (maskBit(bitPosition) & getWord(bitPosition)) != 0;
1398 WordType Mask = maskBit(BitPosition); in setBit()
1457 WordType Mask = ~maskBit(BitPosition); in clearBit()
/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/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/include/llvm/ADT/
DAPInt.h130 static uint64_t maskBit(unsigned bitPosition) { in maskBit() function
945 return (maskBit(bitPosition) &
/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-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/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DAPInt.cpp2218 return (parts[whichWord(bit)] & maskBit(bit)) != 0; in tcExtractBit()
2223 parts[whichWord(bit)] |= maskBit(bit); in tcSetBit()
2228 parts[whichWord(bit)] &= ~maskBit(bit); in tcClearBit()
/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.c1868 unsigned long long maskBit = (unsigned long long)1 << (type.width - 1); in lp_build_sgn() local
1872 mask = lp_build_const_int_vec(bld->gallivm, type, maskBit); in lp_build_sgn()