Lines Matching refs:out
55 * - Pull out common write == 0 case for speed in inflate_fast()
82 * for the in() and out() functions
103 local int updatewindow OF((z_streamp strm, unsigned out));
259 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also
274 a.out > inffixed.h
330 local int updatewindow(strm, out)
332 unsigned out;
355 copy = out - strm->avail_out;
571 unsigned in, out; /* save starting available input and output */
592 out = left;
974 inflate_fast(strm, out);
1063 if (state->offset > state->whave + out - left) {
1073 copy = out - left;
1105 out -= left;
1106 strm->total_out += out;
1107 state->total += out;
1108 if (out)
1110 UPDATE(state->check, put - out, out);
1111 out = left;
1162 if (state->wsize || (state->mode < CHECK && out != strm->avail_out))
1163 if (updatewindow(strm, out)) {
1168 out -= strm->avail_out;
1170 strm->total_out += out;
1171 state->total += out;
1172 if (state->wrap && out)
1174 UPDATE(state->check, strm->next_out - out, out);
1177 if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK)
1257 or when out of input. When called, *have is the number of pattern bytes
1293 unsigned long in, out; /* temporary to save total_in and total_out */
1325 in = strm->total_in; out = strm->total_out;
1327 strm->total_in = in; strm->total_out = out;