Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DBitVector.h591 unsigned BitDistance = N % BITWORD_SIZE; variable
592 if (BitDistance == 0)
617 const BitWord Mask = maskTrailingOnes<BitWord>(BitDistance);
618 const unsigned LSH = BITWORD_SIZE - BitDistance;
621 Bits[I] >>= BitDistance;
625 Bits[NumWords - 1] >>= BitDistance;
640 unsigned BitDistance = N % BITWORD_SIZE; variable
641 if (BitDistance == 0)
667 const BitWord Mask = maskLeadingOnes<BitWord>(BitDistance);
668 const unsigned RSH = BITWORD_SIZE - BitDistance;
[all …]