Home
last modified time | relevance | path

Searched refs:WordPos (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DSparseBitVector.h151 unsigned WordPos = Curr / BITWORD_SIZE; in find_next() local
153 BitWord Copy = Bits[WordPos]; in find_next()
154 assert(WordPos <= BITWORDS_PER_ELEMENT in find_next()
161 return WordPos * BITWORD_SIZE + countTrailingZeros(Copy); in find_next()
164 for (unsigned i = WordPos+1; i < BITWORDS_PER_ELEMENT; ++i) in find_next()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DBitVector.h171 unsigned WordPos = Prev / BITWORD_SIZE; in find_next() local
173 BitWord Copy = Bits[WordPos]; in find_next()
178 return WordPos * BITWORD_SIZE + countTrailingZeros(Copy); in find_next()
181 for (unsigned i = WordPos+1; i < NumBitWords(size()); ++i) in find_next()
/external/llvm/include/llvm/ADT/
DBitVector.h171 unsigned WordPos = Prev / BITWORD_SIZE; in find_next() local
173 BitWord Copy = Bits[WordPos]; in find_next()
178 return WordPos * BITWORD_SIZE + countTrailingZeros(Copy); in find_next()
181 for (unsigned i = WordPos+1; i < NumBitWords(size()); ++i) in find_next()
DSparseBitVector.h144 unsigned WordPos = Curr / BITWORD_SIZE;
146 BitWord Copy = Bits[WordPos];
147 assert (WordPos <= BITWORDS_PER_ELEMENT
154 return WordPos * BITWORD_SIZE + countTrailingZeros(Copy);
157 for (unsigned i = WordPos+1; i < BITWORDS_PER_ELEMENT; ++i)
/external/swiftshader/third_party/subzero/src/
DIceBitVector.h402 unsigned WordPos = Prev / BITWORD_SIZE; in find_next() local
404 BitWord Copy = Bits[WordPos]; in find_next()
409 return WordPos * BITWORD_SIZE + llvm::countTrailingZeros(Copy); in find_next()
412 for (unsigned i = WordPos + 1; i < NumBitWords(size()); ++i) in find_next()