Searched refs:WordPos (Results 1 - 2 of 2) sorted by relevance

/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/ADT/
H A DBitVector.h171 unsigned WordPos = Prev / BITWORD_SIZE; local
173 BitWord Copy = Bits[WordPos];
179 return WordPos * BITWORD_SIZE + CountTrailingZeros_32((uint32_t)Copy);
181 return WordPos * BITWORD_SIZE + CountTrailingZeros_64(Copy);
186 for (unsigned i = WordPos+1; i < NumBitWords(size()); ++i)
H A DSparseBitVector.h154 unsigned WordPos = Curr / BITWORD_SIZE;
156 BitWord Copy = Bits[WordPos];
157 assert (WordPos <= BITWORDS_PER_ELEMENT
165 return WordPos * BITWORD_SIZE + CountTrailingZeros_32(Copy);
167 return WordPos * BITWORD_SIZE + CountTrailingZeros_64(Copy);
172 for (unsigned i = WordPos+1; i < BITWORDS_PER_ELEMENT; ++i)

Completed in 133 milliseconds