Lines Matching defs:left
387 and is subsequently either overwritten or left deliberately
459 left = strm->avail_out; \
470 strm->avail_out = left; \
548 input left to load n bits into the accumulator, or it continues. BITS(n)
561 state information is maintained to continue the loop where it left off
606 unsigned have, left; /* available input and output */
630 out = left;
897 if (copy > left) copy = left;
902 left -= copy;
1040 left >= INFLATE_FAST_MIN_OUTPUT) {
1146 if (left == 0) goto inf_leave;
1147 copy = out - left;
1160 if (copy > left) copy = left;
1161 left -= copy;
1177 if (copy > left) copy = left;
1178 put = chunkcopy_safe(put, from, copy, put + left);
1182 if (copy > left) copy = left;
1183 put = chunkcopy_lapped_safe(put, state->offset, copy, put + left);
1185 left -= copy;
1190 if (left == 0) goto inf_leave;
1192 left--;
1198 out -= left;
1204 out = left;
1273 if (left >= CHUNKCOPY_CHUNK_SIZE)
1276 memset(put, 0x55, left);