Lines Matching refs:lookahead_pos
1504 static MZ_FORCEINLINE void tdefl_find_match(tdefl_compressor *d, mz_uint lookahead_pos, mz_uint max… in tdefl_find_match() argument
1506 …mz_uint dist, pos = lookahead_pos & TDEFL_LZ_DICT_SIZE_MASK, match_len = *pMatch_len, probe_pos = … in tdefl_find_match()
1518 …if ((!next_probe_pos) || ((dist = (mz_uint16)(lookahead_pos - next_probe_pos)) > max_dist)) return… in tdefl_find_match()
1538 static MZ_FORCEINLINE void tdefl_find_match(tdefl_compressor *d, mz_uint lookahead_pos, mz_uint max… in tdefl_find_match() argument
1540 …mz_uint dist, pos = lookahead_pos & TDEFL_LZ_DICT_SIZE_MASK, match_len = *pMatch_len, probe_pos = … in tdefl_find_match()
1552 …if ((!next_probe_pos) || ((dist = (mz_uint16)(lookahead_pos - next_probe_pos)) > max_dist)) return… in tdefl_find_match()
1571 …mz_uint lookahead_pos = d->m_lookahead_pos, lookahead_size = d->m_lookahead_size, dict_size = d->m… in tdefl_compress_fast() local
1573 mz_uint cur_pos = lookahead_pos & TDEFL_LZ_DICT_SIZE_MASK; in tdefl_compress_fast()
1578 mz_uint dst_pos = (lookahead_pos + lookahead_size) & TDEFL_LZ_DICT_SIZE_MASK; in tdefl_compress_fast()
1604 d->m_hash[hash] = (mz_uint16)lookahead_pos; in tdefl_compress_fast()
1606 …if (((cur_match_dist = (mz_uint16)(lookahead_pos - probe_pos)) <= dict_size) && ((*(const mz_uint3… in tdefl_compress_fast()
1655 lookahead_pos += cur_match_len; in tdefl_compress_fast()
1664 …d->m_lookahead_pos = lookahead_pos; d->m_lookahead_size = lookahead_size; d->m_dict_size = dict_si… in tdefl_compress_fast()
1683 lookahead_pos++; in tdefl_compress_fast()
1691 …d->m_lookahead_pos = lookahead_pos; d->m_lookahead_size = lookahead_size; d->m_dict_size = dict_si… in tdefl_compress_fast()
1700 …d->m_lookahead_pos = lookahead_pos; d->m_lookahead_size = lookahead_size; d->m_dict_size = dict_si… in tdefl_compress_fast()