Lines Matching refs:in_bytes
235 size_t in_bytes, out_bytes; in mz_deflate() local
255 in_bytes = pStream->avail_in; in mz_deflate()
258 …= tdefl_compress((tdefl_compressor *)pStream->state, pStream->next_in, &in_bytes, pStream->next_ou… in mz_deflate()
259 pStream->next_in += (mz_uint)in_bytes; in mz_deflate()
260 pStream->avail_in -= (mz_uint)in_bytes; in mz_deflate()
261 pStream->total_in += (mz_uint)in_bytes; in mz_deflate()
430 size_t in_bytes, out_bytes, orig_avail_in; in mz_inflate() local
458 in_bytes = pStream->avail_in; in mz_inflate()
460 …status = tinfl_decompress(&pState->m_decomp, pStream->next_in, &in_bytes, pStream->next_out, pStre… in mz_inflate()
462 pStream->next_in += (mz_uint)in_bytes; in mz_inflate()
463 pStream->avail_in -= (mz_uint)in_bytes; in mz_inflate()
464 pStream->total_in += (mz_uint)in_bytes; in mz_inflate()
497 in_bytes = pStream->avail_in; in mz_inflate()
500 …status = tinfl_decompress(&pState->m_decomp, pStream->next_in, &in_bytes, pState->m_dict, pState->… in mz_inflate()
503 pStream->next_in += (mz_uint)in_bytes; in mz_inflate()
504 pStream->avail_in -= (mz_uint)in_bytes; in mz_inflate()
505 pStream->total_in += (mz_uint)in_bytes; in mz_inflate()