Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPInt.h137 static uint64_t maskBit(unsigned bitPosition) { in maskBit() function
1139 return (maskBit(bitPosition) & getWord(bitPosition)) != 0;
1438 WordType Mask = maskBit(BitPosition); in setBit()
1512 WordType Mask = ~maskBit(BitPosition); in clearBit()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPInt.h130 static uint64_t maskBit(unsigned bitPosition) { in maskBit() function
945 return (maskBit(bitPosition) &
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp540 VAL |= maskBit(bitPosition); in setBit()
542 pVal[whichWord(bitPosition)] |= maskBit(bitPosition); in setBit()
549 VAL &= ~maskBit(bitPosition); in clearBit()
551 pVal[whichWord(bitPosition)] &= ~maskBit(bitPosition); in clearBit()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPInt.cpp2372 return (parts[whichWord(bit)] & maskBit(bit)) != 0; in tcExtractBit()
2377 parts[whichWord(bit)] |= maskBit(bit); in tcSetBit()
2382 parts[whichWord(bit)] &= ~maskBit(bit); in tcClearBit()
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_arit.c1773 unsigned long long maskBit = (unsigned long long)1 << (type.width - 1); in lp_build_sgn() local
1777 mask = lp_build_const_int_vec(bld->gallivm, type, maskBit); in lp_build_sgn()