Lines Matching refs:probe_pos
1506 …mz_uint dist, pos = lookahead_pos & TDEFL_LZ_DICT_SIZE_MASK, match_len = *pMatch_len, probe_pos = … in tdefl_find_match() local
1517 next_probe_pos = d->m_next[probe_pos]; \ in tdefl_find_match()
1519 probe_pos = next_probe_pos & TDEFL_LZ_DICT_SIZE_MASK; \ in tdefl_find_match()
1520 if (TDEFL_READ_UNALIGNED_WORD(&d->m_dict[probe_pos + match_len - 1]) == c01) break; in tdefl_find_match()
1523 …if (!dist) break; q = (const mz_uint16*)(d->m_dict + probe_pos); if (TDEFL_READ_UNALIGNED_WORD(q) … in tdefl_find_match()
1540 …mz_uint dist, pos = lookahead_pos & TDEFL_LZ_DICT_SIZE_MASK, match_len = *pMatch_len, probe_pos = … in tdefl_find_match() local
1551 next_probe_pos = d->m_next[probe_pos]; \ in tdefl_find_match()
1553 probe_pos = next_probe_pos & TDEFL_LZ_DICT_SIZE_MASK; \ in tdefl_find_match()
1554 …if ((d->m_dict[probe_pos + match_len] == c0) && (d->m_dict[probe_pos + match_len - 1] == c1)) brea… in tdefl_find_match()
1557 …if (!dist) break; p = s; q = d->m_dict + probe_pos; for (probe_len = 0; probe_len < max_match_len;… in tdefl_find_match()
1603 mz_uint probe_pos = d->m_hash[hash]; in tdefl_compress_fast() local
1606 …tch_dist = (mz_uint16)(lookahead_pos - probe_pos)) <= dict_size) && ((*(const mz_uint32 *)(d->m_di… in tdefl_compress_fast()
1609 const mz_uint16 *q = (const mz_uint16 *)(d->m_dict + probe_pos); in tdefl_compress_fast()