Lines Matching defs:out
48 * - Pull out common wnext == 0 case for speed in inflate_fast()
75 * for the in() and out() functions
303 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also
318 a.out > inffixed.h
610 unsigned in, out; /* save starting available input and output */
637 out = left;
1107 inflate_fast(strm, out);
1229 copy = out - left;
1302 out -= left;
1303 strm->total_out += out;
1304 state->total += out;
1305 if ((state->wrap & 4) && out)
1308 UPDATE_CHECK(state->check, put - out, out);
1310 out = left;
1362 if (state->wsize || (out != strm->avail_out && state->mode < BAD &&
1364 if (updatewindow(strm, strm->next_out, out - strm->avail_out)) {
1369 out -= strm->avail_out;
1371 strm->total_out += out;
1372 state->total += out;
1373 if ((state->wrap & 4) && out)
1375 UPDATE_CHECK(state->check, strm->next_out - out, out);
1379 if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK)
1487 or when out of input. When called, *have is the number of pattern bytes
1525 unsigned long in, out; /* temporary to save total_in and total_out */
1575 in = strm->total_in; out = strm->total_out;
1577 strm->total_in = in; strm->total_out = out;