Lines Matching refs:probe_pos
1387 …mz_uint dist, pos = lookahead_pos & TDEFL_LZ_DICT_SIZE_MASK, match_len = *pMatch_len, probe_pos = … in tdefl_find_match() local
1401 next_probe_pos = d->m_next[probe_pos]; \ in tdefl_find_match()
1404 probe_pos = next_probe_pos & TDEFL_LZ_DICT_SIZE_MASK; \ in tdefl_find_match()
1405 if (TDEFL_READ_UNALIGNED_WORD(&d->m_dict[probe_pos + match_len - 1]) == c01) \ in tdefl_find_match()
1413 q = (const mz_uint16 *)(d->m_dict + probe_pos); in tdefl_find_match()
1440 …mz_uint dist, pos = lookahead_pos & TDEFL_LZ_DICT_SIZE_MASK, match_len = *pMatch_len, probe_pos = … in tdefl_find_match() local
1454 next_probe_pos = d->m_next[probe_pos]; \ in tdefl_find_match()
1457 probe_pos = next_probe_pos & TDEFL_LZ_DICT_SIZE_MASK; \ in tdefl_find_match()
1458 if ((d->m_dict[probe_pos + match_len] == c0) && (d->m_dict[probe_pos + match_len - 1] == c1)) \ in tdefl_find_match()
1467 q = d->m_dict + probe_pos; in tdefl_find_match()
1530 mz_uint probe_pos = d->m_hash[hash]; in tdefl_compress_fast() local
1533 …_dist = (mz_uint16)(lookahead_pos - probe_pos)) <= dict_size) && ((TDEFL_READ_UNALIGNED_WORD32(d->… in tdefl_compress_fast()
1536 const mz_uint16 *q = (const mz_uint16 *)(d->m_dict + probe_pos); in tdefl_compress_fast()