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);
261 bd->inbufBitCount++;
381 while (bd->inbufBitCount < hufGroup->maxLen) {
388 bd->inbufBitCount += 8;
390 bd->inbufBitCount -= hufGroup->maxLen;
391 j = (bd->inbufBits >> bd->inbufBitCount)&
399 bd->inbufBitCount += (hufGroup->maxLen - i);