Lines Matching refs:next_out
1046 unsigned char *next_out; // pointer to next byte to write member
2092 (!pStream->next_out)) in mz_deflate()
2110 pStream->next_in, &in_bytes, pStream->next_out, in mz_deflate()
2117 pStream->next_out += (mz_uint)out_bytes; in mz_deflate()
2167 stream.next_out = pDest; in mz_compress2()
2267 pStream->next_out, pStream->next_out, &out_bytes, in mz_inflate()
2274 pStream->next_out += (mz_uint)out_bytes; in mz_inflate()
2291 memcpy(pStream->next_out, pState->m_dict + pState->m_dict_ofs, n); in mz_inflate()
2292 pStream->next_out += n; in mz_inflate()
2320 memcpy(pStream->next_out, pState->m_dict + pState->m_dict_ofs, n); in mz_inflate()
2321 pStream->next_out += n; in mz_inflate()
2375 stream.next_out = pDest; in mz_uncompress()