Lines Matching defs:num_bytes_to_process
3894 mz_uint num_bytes_to_process = (mz_uint)MZ_MIN(
3896 d->m_src_buf_left -= num_bytes_to_process;
3897 lookahead_size += num_bytes_to_process;
3899 while (num_bytes_to_process) {
3900 mz_uint32 n = MZ_MIN(TDEFL_LZ_DICT_SIZE - dst_pos, num_bytes_to_process);
3907 num_bytes_to_process -= n;
4119 mz_uint num_bytes_to_process = (mz_uint)MZ_MIN(
4121 const mz_uint8 *pSrc_end = pSrc + num_bytes_to_process;
4122 src_buf_left -= num_bytes_to_process;
4123 d->m_lookahead_size += num_bytes_to_process;