Searched refs:num_bytes_to_process (Results 1 – 1 of 1) sorted by relevance
1505 …mz_uint num_bytes_to_process = (mz_uint)MZ_MIN(d->m_src_buf_left, TDEFL_COMP_FAST_LOOKAHEAD_SIZE -… in tdefl_compress_fast() local1506 d->m_src_buf_left -= num_bytes_to_process; in tdefl_compress_fast()1507 lookahead_size += num_bytes_to_process; in tdefl_compress_fast()1509 while (num_bytes_to_process) in tdefl_compress_fast()1511 mz_uint32 n = MZ_MIN(TDEFL_LZ_DICT_SIZE - dst_pos, num_bytes_to_process); in tdefl_compress_fast()1517 num_bytes_to_process -= n; in tdefl_compress_fast()1725 …mz_uint num_bytes_to_process = (mz_uint)MZ_MIN(src_buf_left, TDEFL_MAX_MATCH_LEN - d->m_lookahead_… in tdefl_compress_normal() local1726 const mz_uint8 *pSrc_end = pSrc + num_bytes_to_process; in tdefl_compress_normal()1727 src_buf_left -= num_bytes_to_process; in tdefl_compress_normal()1728 d->m_lookahead_size += num_bytes_to_process; in tdefl_compress_normal()