Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DBitVector.h571 unsigned BitDistance = N % BITWORD_SIZE; variable
572 if (BitDistance == 0)
598 const unsigned LSH = BITWORD_SIZE - BitDistance;
601 Bits[I] >>= BitDistance;
605 Bits[NumWords - 1] >>= BitDistance;
620 unsigned BitDistance = N % BITWORD_SIZE; variable
621 if (BitDistance == 0)
647 const BitWord Mask = maskLeadingOnes<BitWord>(BitDistance);
648 const unsigned RSH = BITWORD_SIZE - BitDistance;
651 Bits[I] <<= BitDistance;
[all …]