Lines Matching refs:avail_out
276 state->strm.avail_out = wspace - (PPP_HDRLEN + 2);
279 state->strm.avail_out = 1000000;
298 if (flush != Z_NO_FLUSH && state->strm.avail_out != 0)
307 if (state->strm.avail_out == 0) {
318 state->strm.avail_out = wspace = M_TRAILINGSPACE(m);
323 state->strm.avail_out = 1000000;
328 olen += (m->m_len = wspace - state->strm.avail_out);
520 * Set up to call inflate. We set avail_out to 1 initially so we can
530 state->strm.avail_out = 1;
548 if (flush != Z_NO_FLUSH && state->strm.avail_out != 0)
558 if (state->strm.avail_out == 0) {
560 state->strm.avail_out = ospace - PPP_HDRLEN;
565 ++state->strm.avail_out;
580 state->strm.avail_out = ospace = M_TRAILINGSPACE(mo);
588 olen += (mo->m_len = ospace - state->strm.avail_out);