Lines Matching refs:left
181 left = strm->avail_out; \
192 strm->avail_out = left; \
333 unsigned have, left; /* available input and output */ in inflate() local
357 out = left; in inflate()
597 if (copy > left) copy = left; in inflate()
602 left -= copy; in inflate()
725 if (have >= 6 && left >= 258) { in inflate()
813 if (state->offset > state->whave + out - left) { in inflate()
821 if (left == 0) goto inf_leave; in inflate()
822 copy = out - left; in inflate()
837 if (copy > left) copy = left; in inflate()
838 left -= copy; in inflate()
846 if (left == 0) goto inf_leave; in inflate()
848 left--; in inflate()
854 out -= left; in inflate()
860 out = left; in inflate()