Searched refs:maskBit (Results 1 – 3 of 3) sorted by relevance
126 static uint64_t maskBit(unsigned bitPosition) { in maskBit() function964 return (maskBit(bitPosition) &
590 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()
1179 unsigned long long maskBit = (unsigned long long)1 << (type.width - 1); in lp_build_sgn() local1183 mask = lp_build_const_int_vec(bld->gallivm, type, maskBit); in lp_build_sgn()