Lines Matching refs:probe_pos
3785 match_len = *pMatch_len, probe_pos = pos, next_probe_pos, in tdefl_find_match() local
3797 next_probe_pos = d->m_next[probe_pos]; \ in tdefl_find_match()
3801 probe_pos = next_probe_pos & TDEFL_LZ_DICT_SIZE_MASK; \ in tdefl_find_match()
3802 if (TDEFL_READ_UNALIGNED_WORD(&d->m_dict[probe_pos + match_len - 1]) == c01) \ in tdefl_find_match()
3809 q = (const mz_uint16 *)(d->m_dict + probe_pos); in tdefl_find_match()
3840 match_len = *pMatch_len, probe_pos = pos, next_probe_pos, in tdefl_find_match() local
3851 next_probe_pos = d->m_next[probe_pos]; \ in tdefl_find_match()
3855 probe_pos = next_probe_pos & TDEFL_LZ_DICT_SIZE_MASK; \ in tdefl_find_match()
3856 if ((d->m_dict[probe_pos + match_len] == c0) && \ in tdefl_find_match()
3857 (d->m_dict[probe_pos + match_len - 1] == c1)) \ in tdefl_find_match()
3865 q = d->m_dict + probe_pos; in tdefl_find_match()
3921 mz_uint probe_pos = d->m_hash[hash]; in tdefl_compress_fast() local
3924 if (((cur_match_dist = (mz_uint16)(lookahead_pos - probe_pos)) <= in tdefl_compress_fast()
3927 (probe_pos &= TDEFL_LZ_DICT_SIZE_MASK)) & in tdefl_compress_fast()
3930 const mz_uint16 *q = (const mz_uint16 *)(d->m_dict + probe_pos); in tdefl_compress_fast()