Home | History | Annotate | Download | only in zlib

Lines Matching defs:out

48  * - Pull out common wnext == 0 case for speed in inflate_fast()
75 * for the in() and out() functions
96 local int updatewindow OF((z_streamp strm, unsigned out));
287 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also
302 a.out > inffixed.h
358 local int updatewindow(strm, out)
360 unsigned out;
383 copy = out - strm->avail_out;
599 unsigned in, out; /* save starting available input and output */
620 out = left;
1009 inflate_fast(strm, out);
1110 copy = out - left;
1162 out -= left;
1163 strm->total_out += out;
1164 state->total += out;
1165 if (out)
1167 UPDATE(state->check, put - out, out);
1168 out = left;
1217 if (state->wsize || (state->mode < CHECK && out != strm->avail_out))
1218 if (updatewindow(strm, out)) {
1223 out -= strm->avail_out;
1225 strm->total_out += out;
1226 state->total += out;
1227 if (state->wrap && out)
1229 UPDATE(state->check, strm->next_out - out, out);
1233 if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK)
1313 or when out of input. When called, *have is the number of pattern bytes
1349 unsigned long in, out; /* temporary to save total_in and total_out */
1381 in = strm->total_in; out = strm->total_out;
1383 strm->total_in = in; strm->total_out = out;