Lines Matching defs:len_to_move
4109 mz_uint len_to_move, cur_match_dist, cur_match_len, cur_pos;
4162 len_to_move = 1;
4196 len_to_move = cur_match_len;
4204 len_to_move = d->m_saved_match_len - 1;
4213 len_to_move = cur_match_len;
4219 // Move the lookahead forward by len_to_move bytes.
4220 d->m_lookahead_pos += len_to_move;
4221 MZ_ASSERT(d->m_lookahead_size >= len_to_move);
4222 d->m_lookahead_size -= len_to_move;
4224 MZ_MIN(d->m_dict_size + len_to_move, (mz_uint)TDEFL_LZ_DICT_SIZE);