Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DBitVector.h164 unsigned WordPos = Prev / BITWORD_SIZE; in find_next() local
166 BitWord Copy = Bits[WordPos]; in find_next()
172 return WordPos * BITWORD_SIZE + CountTrailingZeros_32((uint32_t)Copy); in find_next()
174 return WordPos * BITWORD_SIZE + CountTrailingZeros_64(Copy); in find_next()
180 for (unsigned i = WordPos+1; i < NumBitWords(size()); ++i) in find_next()
DSparseBitVector.h156 unsigned WordPos = Curr / BITWORD_SIZE;
158 BitWord Copy = Bits[WordPos];
159 assert (WordPos <= BITWORDS_PER_ELEMENT
167 return WordPos * BITWORD_SIZE + CountTrailingZeros_32(Copy);
169 return WordPos * BITWORD_SIZE + CountTrailingZeros_64(Copy);
175 for (unsigned i = WordPos+1; i < BITWORDS_PER_ELEMENT; ++i)
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DSparseBitVector.h152 unsigned WordPos = Curr / BITWORD_SIZE; in find_next() local
154 BitWord Copy = Bits[WordPos]; in find_next()
155 assert(WordPos <= BITWORDS_PER_ELEMENT in find_next()
162 return WordPos * BITWORD_SIZE + countTrailingZeros(Copy); in find_next()
165 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()