Home
last modified time | relevance | path

Searched refs:cur_match_dist (Results 1 – 1 of 1) sorted by relevance

/external/OpenCL-CTS/test_common/miniz/
Dminiz.c1599 mz_uint cur_match_dist, cur_match_len = 1; in tdefl_compress_fast() local
1606 …if (((cur_match_dist = (mz_uint16)(lookahead_pos - probe_pos)) <= dict_size) && ((*(const mz_uint3… in tdefl_compress_fast()
1615 cur_match_len = cur_match_dist ? TDEFL_MAX_MATCH_LEN : 0; in tdefl_compress_fast()
1617 …< TDEFL_MIN_MATCH_LEN) || ((cur_match_len == TDEFL_MIN_MATCH_LEN) && (cur_match_dist >= 8U*1024U))) in tdefl_compress_fast()
1629 …MZ_ASSERT((cur_match_len >= TDEFL_MIN_MATCH_LEN) && (cur_match_dist >= 1) && (cur_match_dist <= TD… in tdefl_compress_fast()
1631 cur_match_dist--; in tdefl_compress_fast()
1634 *(mz_uint16 *)(&pLZ_code_buf[1]) = (mz_uint16)cur_match_dist; in tdefl_compress_fast()
1638 s0 = s_tdefl_small_dist_sym[cur_match_dist & 511]; in tdefl_compress_fast()
1639 s1 = s_tdefl_large_dist_sym[cur_match_dist >> 8]; in tdefl_compress_fast()
1640 d->m_huff_count[1][(cur_match_dist < 512) ? s0 : s1]++; in tdefl_compress_fast()
[all …]