Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DBitVector.h584 unsigned BitDistance = N % BITWORD_SIZE; variable
585 if (BitDistance == 0)
611 const unsigned LSH = BITWORD_SIZE - BitDistance;
614 Bits[I] >>= BitDistance;
618 Bits[NumWords - 1] >>= BitDistance;
633 unsigned BitDistance = N % BITWORD_SIZE; variable
634 if (BitDistance == 0)
660 const BitWord Mask = maskLeadingOnes<BitWord>(BitDistance);
661 const unsigned RSH = BITWORD_SIZE - BitDistance;
664 Bits[I] <<= BitDistance;
[all …]