Lines Matching refs:avail_in
55 /* Compress whatever is at avail_in and next_in and write to the output file.
120 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1)
132 strm->avail_in = n;
189 if (strm->avail_in == 0)
191 n = state->size - strm->avail_in;
194 memcpy(strm->next_in + strm->avail_in, buf, n);
195 strm->avail_in += n;
205 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1)
209 strm->avail_in = len;
248 if (strm->avail_in < state->size) {
249 if (strm->avail_in == 0)
251 strm->next_in[strm->avail_in++] = c;
310 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1)
343 strm->avail_in = (unsigned)len;
385 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1)
417 strm->avail_in = (unsigned)len;
490 if (strm->avail_in && gz_comp(state, Z_PARTIAL_FLUSH) == -1)