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

/freebsd-11-stable/sys/dev/ath/ath_hal/ar5212/
H A Dar5212_rfgain.c96 int32_t bitsLeft; local
104 bitsLeft = numBits;
106 while (bitsLeft > 0) {
107 lastBit = (bitPosition + bitsLeft > 8) ?
108 (8) : (bitPosition + bitsLeft);
114 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