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

/illumos-gate/usr/src/uts/common/io/arn/
H A Darn_phy.c187 int32_t bitPosition, bitsLeft; local
192 bitsLeft = numBits;
193 while (bitsLeft > 0) {
194 lastBit = (bitPosition + bitsLeft > 8) ?
195 8 : bitPosition + bitsLeft;
201 bitsLeft -= 8 - bitPosition;

Completed in 59 milliseconds