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

  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
SparseBitVector.h 49 BITWORD_SIZE = sizeof(BitWord) * CHAR_BIT,
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 + CountTrailingZeros_32(Bits[i])
    [all...]
BitVector.h 29 enum { BITWORD_SIZE = (unsigned)sizeof(BitWord) * CHAR_BIT };
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]);
164 unsigned WordPos = Prev / BITWORD_SIZE;
165 unsigned BitPos = Prev % BITWORD_SIZE;
172 return WordPos * BITWORD_SIZE + CountTrailingZeros_32((uint32_t)Copy);
174 return WordPos * BITWORD_SIZE + CountTrailingZeros_64(Copy);
183 return i * BITWORD_SIZE + CountTrailingZeros_32((uint32_t)Bits[i])
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
SparseBitVector.h 47 BITWORD_SIZE = sizeof(BitWord) * CHAR_BIT,
48 BITWORDS_PER_ELEMENT = (ElementSize + BITWORD_SIZE - 1) / BITWORD_SIZE,
100 Bits[Idx / BITWORD_SIZE] |= 1L << (Idx % BITWORD_SIZE);
113 Bits[Idx / BITWORD_SIZE] &= ~(1L << (Idx % BITWORD_SIZE));
117 return Bits[Idx / BITWORD_SIZE] & (1L << (Idx % BITWORD_SIZE));
131 return i * BITWORD_SIZE + countTrailingZeros(Bits[i])
    [all...]
BitVector.h 77 enum { BITWORD_SIZE = (unsigned)sizeof(BitWord) * CHAR_BIT };
79 static_assert(BITWORD_SIZE == 64 || BITWORD_SIZE == 32,
96 WordRef = &b.Bits[Idx / BITWORD_SIZE];
97 BitPos = Idx % BITWORD_SIZE;
190 for (unsigned i = 0; i < Size / BITWORD_SIZE; ++i)
195 if (unsigned Remainder = Size % BITWORD_SIZE)
196 return Bits[Size / BITWORD_SIZE] == (1UL << Remainder) - 1;
213 unsigned FirstWord = Begin / BITWORD_SIZE;
214 unsigned LastWord = (End - 1) / BITWORD_SIZE;
    [all...]
  /external/llvm/include/llvm/ADT/
SparseBitVector.h 49 BITWORD_SIZE = sizeof(BitWord) * CHAR_BIT,
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));
134 return i * BITWORD_SIZE + countTrailingZeros(Bits[i])
    [all...]
BitVector.h 30 enum { BITWORD_SIZE = (unsigned)sizeof(BitWord) * CHAR_BIT };
32 static_assert(BITWORD_SIZE == 64 || BITWORD_SIZE == 32,
52 WordRef = &b.Bits[Idx / BITWORD_SIZE];
53 BitPos = Idx % BITWORD_SIZE;
139 for (unsigned i = 0; i < Size / BITWORD_SIZE; ++i)
144 if (unsigned Remainder = Size % BITWORD_SIZE)
145 return Bits[Size / BITWORD_SIZE] == (1UL << Remainder) - 1;
160 return i * BITWORD_SIZE + countTrailingZeros(Bits[i]);
171 unsigned WordPos = Prev / BITWORD_SIZE;
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
BitVector.h 31 enum { BITWORD_SIZE = (unsigned)sizeof(BitWord) * CHAR_BIT };
33 static_assert(BITWORD_SIZE == 64 || BITWORD_SIZE == 32,
51 WordRef = &b.Bits[Idx / BITWORD_SIZE];
52 BitPos = Idx % BITWORD_SIZE;
139 for (unsigned i = 0; i < Size / BITWORD_SIZE; ++i)
144 if (unsigned Remainder = Size % BITWORD_SIZE)
145 return Bits[Size / BITWORD_SIZE] == (1UL << Remainder) - 1;
160 return i * BITWORD_SIZE + countTrailingZeros(Bits[i]);
171 unsigned WordPos = Prev / BITWORD_SIZE;
    [all...]

Completed in 3424 milliseconds