Lines Matching refs:olen
74 int olen, ilen, len, res, flush; in DeflateOutput() local
110 olen = 0; in DeflateOutput()
136 olen += (mo->m_len = DEFLATE_CHUNK_LEN); in DeflateOutput()
144 olen += (mo->m_len = DEFLATE_CHUNK_LEN - state->cx.avail_out); in DeflateOutput()
145 olen -= 4; /* exclude the trailing EMPTY_BLOCK */ in DeflateOutput()
151 if (olen >= ilen) { in DeflateOutput()
155 ilen, olen, *proto); in DeflateOutput()
169 for (len = mo->m_len; len < olen; mo = mo->m_next, len += mo->m_len) in DeflateOutput()
171 mo->m_len -= len - olen; in DeflateOutput()
178 ccp->compout += olen; in DeflateOutput()
181 ilen, olen, *proto); in DeflateOutput()
204 int ilen, olen; in DeflateInput() local
254 olen = 0; in DeflateInput()
291 olen += (mo->m_len = DEFLATE_CHUNK_LEN); in DeflateInput()
310 olen += (mo->m_len = DEFLATE_CHUNK_LEN - state->cx.avail_out); in DeflateInput()
315 olen -= 2; in DeflateInput()
318 ccp->uncompin += olen; in DeflateInput()
321 ilen, olen, *proto); in DeflateInput()