Lines Matching defs:left
168 /* throw out what's left in the current bits byte buffer (this is a vestigial
173 left = 0; \
204 unsigned chunk; /* bytes left in current chunk */
205 int left; /* bits left in rem */
259 left = 7;
260 chunk = bits - 2; /* 7 bytes left in this chunk */
287 code += (unsigned)last << left; /* middle (or high) bits of code */
288 left += 8;
290 if (bits > left) { /* need more bits */
293 code += (unsigned)last << left; /* high bits of code */
294 left += 8;
298 left -= bits; /* number of unused bits */
299 rem = (unsigned)last >> (8 - left); /* unused bits from last byte */
366 left provide the first 0..7 bits of the next code, end is the last