Home | History | Annotate | Download | only in puff

Lines Matching refs:left

124  *   bit buffer, using shift left.
139 /* drop need bits and update buffer, always zero to seven bits left */
271 int left; /* bits left in next or left to process */
275 left = s->bitcnt;
280 while (left--) {
295 left = (MAXBITS+1) - len;
296 if (left == 0)
301 if (left > 8)
302 left = 8;
344 int left; /* number of possible codes left of current length */
356 left = 1; /* one possible code of zero length */
358 left <<= 1; /* one more bit, double codes left */
359 left -= h->count[len]; /* deduct count from possible codes */
360 if (left < 0)
361 return left; /* over-subscribed--return negative */
362 } /* left > 0 means incomplete */
378 return left;