Searched refs:bitPosition (Results 1 – 8 of 8) sorted by relevance
106 static unsigned whichWord(unsigned bitPosition) { in whichWord() argument107 return bitPosition / APINT_BITS_PER_WORD; in whichWord()113 static unsigned whichBit(unsigned bitPosition) { in whichBit() argument114 return bitPosition % APINT_BITS_PER_WORD; in whichBit()122 static uint64_t maskBit(unsigned bitPosition) { in maskBit() argument123 return 1ULL << whichBit(bitPosition); in maskBit()151 uint64_t getWord(unsigned bitPosition) const { in getWord() argument152 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)]; in getWord()845 bool operator[](unsigned bitPosition) const {846 assert(bitPosition < getBitWidth() && "Bit position out of bounds!");[all …]
168 int bitPosition = bitNumber & MOD_MASK; // bitNumber mod BITS in BitMask()169 return 1UL << bitPosition; in BitMask()
190 int bitPosition = bitNumber & MOD_MASK; // bitNumber mod BITS in BitMask()191 return 1UL << bitPosition; in BitMask()
162 int bitPosition = bitNumber & MOD_MASK; // bitNumber mod BITS in bitMask() local163 return 1L << bitPosition; in bitMask()
583 void APInt::setBit(unsigned bitPosition) { in setBit() argument585 VAL |= maskBit(bitPosition); in setBit()587 pVal[whichWord(bitPosition)] |= maskBit(bitPosition); in setBit()592 void APInt::clearBit(unsigned bitPosition) { in clearBit() argument594 VAL &= ~maskBit(bitPosition); in clearBit()596 pVal[whichWord(bitPosition)] &= ~maskBit(bitPosition); in clearBit()604 void APInt::flipBit(unsigned bitPosition) { in flipBit() argument605 assert(bitPosition < BitWidth && "Out of the bit-width range!"); in flipBit()606 if ((*this)[bitPosition]) clearBit(bitPosition); in flipBit()607 else setBit(bitPosition); in flipBit()
66 var bitPosition = bitNumber & org.antlr.runtime.BitSet.MOD_MASK;67 return 1 << bitPosition;
169 int bitPosition = bitNumber & MOD_MASK; // bitNumber mod BITS in bitMask() local170 return 1L << bitPosition; in bitMask()
120 var bitPosition:int = bitNumber & MOD_MASK; // bitNumber mod BITS121 return 1 << bitPosition;