Home
last modified time | relevance | path

Searched refs:LastBit (Results 1 – 2 of 2) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DBitfields.h165 static_assert(Bitfield::LastBit <= StorageBits, "Data must fit in mask");
230 static constexpr unsigned LastBit = Shift + Bits - 1;
277 return A::LastBit >= B::FirstBit && B::LastBit >= A::FirstBit;
H A DBitVector.h211 unsigned LastBit = (End - 1) % BITWORD_SIZE; variable
212 Copy &= maskTrailingOnes<BitWord>(LastBit + 1);
235 unsigned LastBit = (End - 1) % BITWORD_SIZE; in find_last_in() local
236 Copy &= maskTrailingOnes<BitWord>(LastBit + 1); in find_last_in()
272 unsigned LastBit = (End - 1) % BITWORD_SIZE; in find_last_unset_in() local
273 Copy |= maskTrailingZeros<BitWord>(LastBit + 1); in find_last_unset_in()