Lines Matching refs:inbufBitCount
99 unsigned int inbufBitCount, inbufBits;
123 while (bd->inbufBitCount < bits_wanted) {
137 if (bd->inbufBitCount >= 24) {
138 bits = bd->inbufBits&((1 << bd->inbufBitCount)-1);
139 bits_wanted -= bd->inbufBitCount;
141 bd->inbufBitCount = 0;
145 bd->inbufBitCount += 8;
148 bd->inbufBitCount -= bits_wanted;
149 bits |= (bd->inbufBits >> bd->inbufBitCount)&((1 << bits_wanted)-1);
260 bd->inbufBitCount++;
380 while (bd->inbufBitCount < hufGroup->maxLen) {
387 bd->inbufBitCount += 8;
389 bd->inbufBitCount -= hufGroup->maxLen;
390 j = (bd->inbufBits >> bd->inbufBitCount)&
398 bd->inbufBitCount += (hufGroup->maxLen - i);