Searched refs:lookahead_pos (Results 1 – 1 of 1) sorted by relevance
/external/OpenCL-CTS/test_common/miniz/ |
D | miniz.c | 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() [all …]
|