Lines Matching refs:next_out
239 … if ((!pStream) || (!pStream->state) || (flush < 0) || (flush > MZ_FINISH) || (!pStream->next_out)) in mz_deflate()
258 …defl_compressor *)pStream->state, pStream->next_in, &in_bytes, pStream->next_out, &out_bytes, (tde… in mz_deflate()
264 pStream->next_out += (mz_uint)out_bytes; in mz_deflate()
322 stream.next_out = pDest; in mz_compress2()
460 …press(&pState->m_decomp, pStream->next_in, &in_bytes, pStream->next_out, pStream->next_out, &out_b… in mz_inflate()
466 pStream->next_out += (mz_uint)out_bytes; in mz_inflate()
486 memcpy(pStream->next_out, pState->m_dict + pState->m_dict_ofs, n); in mz_inflate()
487 pStream->next_out += n; in mz_inflate()
511 memcpy(pStream->next_out, pState->m_dict + pState->m_dict_ofs, n); in mz_inflate()
512 pStream->next_out += n; in mz_inflate()
562 stream.next_out = pDest; in mz_uncompress()