Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DBitVector.h629 unsigned BitDistance = N % BITWORD_SIZE; variable
630 if (BitDistance == 0)
656 const unsigned LSH = BITWORD_SIZE - BitDistance;
659 Bits[I] >>= BitDistance;
663 Bits[NumWords - 1] >>= BitDistance;
678 unsigned BitDistance = N % BITWORD_SIZE; variable
679 if (BitDistance == 0)
705 const BitWord Mask = maskLeadingOnes<BitWord>(BitDistance);
706 const unsigned RSH = BITWORD_SIZE - BitDistance;
709 Bits[I] <<= BitDistance;
[all …]