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

/external/llvm/include/llvm/ADT/
H A DBitVector.h29 enum { BITWORD_SIZE = (unsigned)sizeof(BitWord) * CHAR_BIT }; enumerator in enum:llvm::BitVector::__anon7110
47 WordRef = &b.Bits[Idx / BITWORD_SIZE];
48 BitPos = Idx % BITWORD_SIZE;
148 return i * BITWORD_SIZE + CountTrailingZeros_32((uint32_t)Bits[i]);
150 return i * BITWORD_SIZE + CountTrailingZeros_64(Bits[i]);
163 unsigned WordPos = Prev / BITWORD_SIZE;
164 unsigned BitPos = Prev % BITWORD_SIZE;
171 return WordPos * BITWORD_SIZE + CountTrailingZeros_32((uint32_t)Copy);
173 return WordPos * BITWORD_SIZE + CountTrailingZeros_64(Copy);
181 return i * BITWORD_SIZE
[all...]
H A DSparseBitVector.h49 BITWORD_SIZE = sizeof(BitWord) * CHAR_BIT, enumerator in enum:llvm::SparseBitVectorElement::__anon7128
50 BITWORDS_PER_ELEMENT = (ElementSize + BITWORD_SIZE - 1) / BITWORD_SIZE,
103 Bits[Idx / BITWORD_SIZE] |= 1L << (Idx % BITWORD_SIZE);
116 Bits[Idx / BITWORD_SIZE] &= ~(1L << (Idx % BITWORD_SIZE));
120 return Bits[Idx / BITWORD_SIZE] & (1L << (Idx % BITWORD_SIZE));
140 return i * BITWORD_SIZE
375 Bits >>= NextSetBitNumber % BITWORD_SIZE; local
379 Bits >>= NextSetBitNumber % BITWORD_SIZE; variable
[all...]

Completed in 64 milliseconds