HomeSort by relevance Sort by last modified time
    Searched refs:WordPos (Results 1 - 7 of 7) sorted by null

  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
BitVector.h 164 unsigned WordPos = Prev / BITWORD_SIZE;
166 BitWord Copy = Bits[WordPos];
172 return WordPos * BITWORD_SIZE + CountTrailingZeros_32((uint32_t)Copy);
174 return WordPos * BITWORD_SIZE + CountTrailingZeros_64(Copy);
180 for (unsigned i = WordPos+1; i < NumBitWords(size()); ++i)
SparseBitVector.h 156 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/llvm/include/llvm/ADT/
SparseBitVector.h 144 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)
BitVector.h 171 unsigned WordPos = Prev / BITWORD_SIZE;
173 BitWord Copy = Bits[WordPos];
178 return WordPos * BITWORD_SIZE + countTrailingZeros(Copy);
181 for (unsigned i = WordPos+1; i < NumBitWords(size()); ++i)
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
SparseBitVector.h 152 unsigned WordPos = Curr / BITWORD_SIZE;
154 BitWord Copy = Bits[WordPos];
155 assert(WordPos <= BITWORDS_PER_ELEMENT
162 return WordPos * BITWORD_SIZE + countTrailingZeros(Copy);
165 for (unsigned i = WordPos+1; i < BITWORDS_PER_ELEMENT; ++i)
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
BitVector.h 171 unsigned WordPos = Prev / BITWORD_SIZE;
173 BitWord Copy = Bits[WordPos];
178 return WordPos * BITWORD_SIZE + countTrailingZeros(Copy);
181 for (unsigned i = WordPos+1; i < NumBitWords(size()); ++i)
  /external/swiftshader/third_party/subzero/src/
IceBitVector.h 402 unsigned WordPos = Prev / BITWORD_SIZE;
404 BitWord Copy = Bits[WordPos];
409 return WordPos * BITWORD_SIZE + llvm::countTrailingZeros(Copy);
412 for (unsigned i = WordPos + 1; i < NumBitWords(size()); ++i)

Completed in 478 milliseconds