Home
last modified time | relevance | path

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

/freebsd/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.h219 unsigned LastBit = (End - 1) % BITWORD_SIZE; variable
220 Copy &= maskTrailingOnes<BitWord>(LastBit + 1);
243 unsigned LastBit = (End - 1) % BITWORD_SIZE; in find_last_in() local
244 Copy &= maskTrailingOnes<BitWord>(LastBit + 1); in find_last_in()
280 unsigned LastBit = (End - 1) % BITWORD_SIZE; in find_last_unset_in() local
281 Copy |= maskTrailingZeros<BitWord>(LastBit + 1); in find_last_unset_in()