Lines Matching defs:out
48 * - Pull out common wnext == 0 case for speed in inflate_fast()
75 * for the in() and out() functions
299 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also
314 a.out > inffixed.h
609 unsigned in, out; /* save starting available input and output */
630 out = left;
1042 inflate_fast_chunk_(strm, out);
1147 copy = out - left;
1198 out -= left;
1199 strm->total_out += out;
1200 state->total += out;
1201 if ((state->wrap & 4) && out)
1203 UPDATE_CHECK(state->check, put - out, out);
1204 out = left;
1279 if (state->wsize || (out != strm->avail_out && state->mode < BAD &&
1281 if (updatewindow(strm, strm->next_out, out - strm->avail_out)) {
1286 out -= strm->avail_out;
1288 strm->total_out += out;
1289 state->total += out;
1290 if ((state->wrap & 4) && out)
1292 UPDATE_CHECK(state->check, strm->next_out - out, out);
1296 if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK)
1381 or when out of input. When called, *have is the number of pattern bytes
1413 unsigned long in, out; /* temporary to save total_in and total_out */
1450 in = strm->total_in; out = strm->total_out;
1452 strm->total_in = in; strm->total_out = out;