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
308 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also
323 a.out > inffixed.h
615 unsigned in, out; /* save starting available input and output */
636 out = left;
1024 inflate_fast(strm, out);
1125 copy = out - left;
1177 out -= left;
1178 strm->total_out += out;
1179 state->total += out;
1180 if (out)
1182 UPDATE(state->check, put - out, out);
1183 out = left;
1232 if (state->wsize || (out != strm->avail_out && state->mode < BAD &&
1234 if (updatewindow(strm, strm->next_out, out - strm->avail_out)) {
1239 out -= strm->avail_out;
1241 strm->total_out += out;
1242 state->total += out;
1243 if (state->wrap && out)
1245 UPDATE(state->check, strm->next_out - out, out);
1249 if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK)
1345 or when out of input. When called, *have is the number of pattern bytes
1381 unsigned long in, out; /* temporary to save total_in and total_out */
1413 in = strm->total_in; out = strm->total_out;
1415 strm->total_in = in; strm->total_out = out;