Home
last modified time | relevance | path

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

/hardware/google/gfxstream/third-party/astc-encoder/Source/
Dtinyexr.h3915 mz_uint cur_match_dist, cur_match_len = 1; in tdefl_compress_fast() local
3924 if (((cur_match_dist = (mz_uint16)(lookahead_pos - probe_pos)) <= in tdefl_compress_fast()
3945 cur_match_len = cur_match_dist ? TDEFL_MAX_MATCH_LEN : 0; in tdefl_compress_fast()
3949 (cur_match_dist >= 8U * 1024U))) { in tdefl_compress_fast()
3959 (cur_match_dist >= 1) && in tdefl_compress_fast()
3960 (cur_match_dist <= TDEFL_LZ_DICT_SIZE)); in tdefl_compress_fast()
3962 cur_match_dist--; in tdefl_compress_fast()
3965 *(mz_uint16 *)(&pLZ_code_buf[1]) = (mz_uint16)cur_match_dist; in tdefl_compress_fast()
3969 s0 = s_tdefl_small_dist_sym[cur_match_dist & 511]; in tdefl_compress_fast()
3970 s1 = s_tdefl_large_dist_sym[cur_match_dist >> 8]; in tdefl_compress_fast()
[all …]