Searched refs:num_bytes_to_process (Results 1 – 1 of 1) sorted by relevance
1579 …mz_uint num_bytes_to_process = (mz_uint)MZ_MIN(d->m_src_buf_left, TDEFL_COMP_FAST_LOOKAHEAD_SIZE -… in tdefl_compress_fast() local1580 d->m_src_buf_left -= num_bytes_to_process; in tdefl_compress_fast()1581 lookahead_size += num_bytes_to_process; in tdefl_compress_fast()1583 while (num_bytes_to_process) in tdefl_compress_fast()1585 mz_uint32 n = MZ_MIN(TDEFL_LZ_DICT_SIZE - dst_pos, num_bytes_to_process); in tdefl_compress_fast()1591 num_bytes_to_process -= n; in tdefl_compress_fast()1749 …mz_uint num_bytes_to_process = (mz_uint)MZ_MIN(src_buf_left, TDEFL_MAX_MATCH_LEN - d->m_lookahead_… in tdefl_compress_normal() local1750 const mz_uint8 *pSrc_end = pSrc + num_bytes_to_process; in tdefl_compress_normal()1751 src_buf_left -= num_bytes_to_process; in tdefl_compress_normal()1752 d->m_lookahead_size += num_bytes_to_process; in tdefl_compress_normal()