Lines Matching refs:lookahead_pos

1385 static MZ_FORCEINLINE void tdefl_find_match(tdefl_compressor *d, mz_uint lookahead_pos, mz_uint max…  in tdefl_find_match()  argument
1387 …mz_uint dist, pos = lookahead_pos & TDEFL_LZ_DICT_SIZE_MASK, match_len = *pMatch_len, probe_pos = … in tdefl_find_match()
1402 if ((!next_probe_pos) || ((dist = (mz_uint16)(lookahead_pos - next_probe_pos)) > max_dist)) \ in tdefl_find_match()
1438 static MZ_FORCEINLINE void tdefl_find_match(tdefl_compressor *d, mz_uint lookahead_pos, mz_uint max… in tdefl_find_match() argument
1440 …mz_uint dist, pos = lookahead_pos & TDEFL_LZ_DICT_SIZE_MASK, match_len = *pMatch_len, probe_pos = … in tdefl_find_match()
1455 if ((!next_probe_pos) || ((dist = (mz_uint16)(lookahead_pos - next_probe_pos)) > max_dist)) \ in tdefl_find_match()
1497 …mz_uint lookahead_pos = d->m_lookahead_pos, lookahead_size = d->m_lookahead_size, dict_size = d->m… in tdefl_compress_fast() local
1499 mz_uint cur_pos = lookahead_pos & TDEFL_LZ_DICT_SIZE_MASK; in tdefl_compress_fast()
1504 mz_uint dst_pos = (lookahead_pos + lookahead_size) & TDEFL_LZ_DICT_SIZE_MASK; in tdefl_compress_fast()
1531 d->m_hash[hash] = (mz_uint16)lookahead_pos; in tdefl_compress_fast()
1533 …if (((cur_match_dist = (mz_uint16)(lookahead_pos - probe_pos)) <= dict_size) && ((TDEFL_READ_UNALI… in tdefl_compress_fast()
1592 lookahead_pos += cur_match_len; in tdefl_compress_fast()
1601 d->m_lookahead_pos = lookahead_pos; in tdefl_compress_fast()
1632 lookahead_pos++; in tdefl_compress_fast()
1640 d->m_lookahead_pos = lookahead_pos; in tdefl_compress_fast()
1657 d->m_lookahead_pos = lookahead_pos; in tdefl_compress_fast()