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

/netbsd-current/sys/external/isc/atheros_hal/dist/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.c2541 int32_t bitPosition, bitsLeft; local
2550 bitsLeft = numBits;
2551 while (bitsLeft > 0) {
2552 lastBit = (bitPosition + bitsLeft > 8) ?
2553 8 : bitPosition + bitsLeft;
2559 bitsLeft -= 8 - bitPosition;

Completed in 136 milliseconds