Searched refs:bitsLeft (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/sys/dev/ath/ath_hal/ar5212/
H A Dar5212_rfgain.c98 int32_t bitsLeft; local
106 bitsLeft = numBits;
108 while (bitsLeft > 0) {
109 lastBit = (bitPosition + bitsLeft > 8) ?
110 (8) : (bitPosition + bitsLeft);
116 bitsLeft -= (8 - bitPosition);
H A Dar5212_reset.c2679 int32_t bitPosition, bitsLeft; local
2688 bitsLeft = numBits;
2689 while (bitsLeft > 0) {
2690 lastBit = (bitPosition + bitsLeft > 8) ?
2691 8 : bitPosition + bitsLeft;
2697 bitsLeft -= 8 - bitPosition;

Completed in 101 milliseconds