Searched refs:WordIndex (Results 1 – 2 of 2) sorted by relevance
198 unsigned WordIndex = NumRead >> 4; in readBits() local199 uint64_t ThisWord = Buffer[WordIndex] >> (NumRead & 0xf); in readBits()273 unsigned WordIndex = NumWritten >> 4; in addBits() local281 Value[WordIndex] |= (BitsToWrite << WordOffset); in addBits()282 Mask[WordIndex] |= (WordMask << WordOffset); in addBits()
752 int next_unset_in_word(int WordIndex, BitWord Word) const { in next_unset_in_word() argument753 unsigned Result = WordIndex * BITWORD_SIZE + countTrailingOnes(Word); in next_unset_in_word()