Lines Matching refs:m_next
83 mi->m_next = mp; in DeflateOutput()
126 if (state->cx.avail_in == 0 && mi->m_next != NULL) { in DeflateOutput()
127 mi = mi->m_next; in DeflateOutput()
130 if (mi->m_next == NULL) in DeflateOutput()
135 mo->m_next = m_get(DEFLATE_CHUNK_LEN, MB_CCPOUT); in DeflateOutput()
137 mo = mo->m_next; in DeflateOutput()
169 for (len = mo->m_len; len < olen; mo = mo->m_next, len += mo->m_len) in DeflateOutput()
172 if (mo->m_next != NULL) { in DeflateOutput()
173 m_freem(mo->m_next); in DeflateOutput()
174 mo->m_next = NULL; in DeflateOutput()
252 flush = mi->m_next ? Z_NO_FLUSH : Z_SYNC_FLUSH; in DeflateInput()
275 if (mi->m_next == NULL) in DeflateInput()
292 mo->m_next = m_get(DEFLATE_CHUNK_LEN, MB_CCPIN); in DeflateInput()
293 mo = mo->m_next; in DeflateInput()
352 mi_head->m_next = mi; in DeflateDictSetup()
397 if (state->cx.avail_in == 0 && mi && (mi = mi->m_next) != NULL) { in DeflateDictSetup()
401 if (mi->m_next == NULL) in DeflateDictSetup()