Lines Matching defs:out
48 * - Pull out common wnext == 0 case for speed in inflate_fast()
75 * for the in() and out() functions
297 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also
312 a.out > inffixed.h
597 unsigned in, out; /* save starting available input and output */
618 out = left;
1029 inflate_fast(strm, out);
1134 copy = out - left;
1186 out -= left;
1187 strm->total_out += out;
1188 state->total += out;
1189 if ((state->wrap & 4) && out)
1191 UPDATE_CHECK(state->check, put - out, out);
1192 out = left;
1244 if (state->wsize || (out != strm->avail_out && state->mode < BAD &&
1246 if (updatewindow(strm, strm->next_out, out - strm->avail_out)) {
1251 out -= strm->avail_out;
1253 strm->total_out += out;
1254 state->total += out;
1255 if ((state->wrap & 4) && out)
1257 UPDATE_CHECK(state->check, strm->next_out - out, out);
1261 if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK)
1346 or when out of input. When called, *have is the number of pattern bytes
1378 unsigned long in, out; /* temporary to save total_in and total_out */
1415 in = strm->total_in; out = strm->total_out;
1417 strm->total_in = in; strm->total_out = out;