Home
last modified time | relevance | path

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

/external/llvm/include/llvm/ADT/
DAPInt.h126 static uint64_t maskBit(unsigned bitPosition) { in maskBit() function
964 return (maskBit(bitPosition) &
/external/llvm/lib/Support/
DAPInt.cpp590 VAL |= maskBit(bitPosition); in setBit()
592 pVal[whichWord(bitPosition)] |= maskBit(bitPosition); in setBit()
599 VAL &= ~maskBit(bitPosition); in clearBit()
601 pVal[whichWord(bitPosition)] &= ~maskBit(bitPosition); in clearBit()
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_arit.c1179 unsigned long long maskBit = (unsigned long long)1 << (type.width - 1); in lp_build_sgn() local
1183 mask = lp_build_const_int_vec(bld->gallivm, type, maskBit); in lp_build_sgn()