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