Lines Matching defs:out
48 * - Pull out common wnext == 0 case for speed in inflate_fast()
75 * for the in() and out() functions
298 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also
313 a.out > inffixed.h
598 unsigned in, out; /* save starting available input and output */
619 out = left;
1031 inflate_fast(strm, out);
1136 copy = out - left;
1188 out -= left;
1189 strm->total_out += out;
1190 state->total += out;
1191 if ((state->wrap & 4) && out)
1193 UPDATE_CHECK(state->check, put - out, out);
1194 out = left;
1246 if (state->wsize || (out != strm->avail_out && state->mode < BAD &&
1248 if (updatewindow(strm, strm->next_out, out - strm->avail_out)) {
1253 out -= strm->avail_out;
1255 strm->total_out += out;
1256 state->total += out;
1257 if ((state->wrap & 4) && out)
1259 UPDATE_CHECK(state->check, strm->next_out - out, out);
1263 if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK)
1348 or when out of input. When called, *have is the number of pattern bytes
1380 unsigned long in, out; /* temporary to save total_in and total_out */
1417 in = strm->total_in; out = strm->total_out;
1419 strm->total_in = in; strm->total_out = out;