Home
last modified time | relevance | path

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

/hardware/google/gfxstream/third-party/astc-encoder/Source/
Dtinyexr.h3526 match_dist = *(const mz_uint16 *)(pLZ_codes + 1); in tdefl_compress_lz_codes() local
3536 s0 = s_tdefl_small_dist_sym[match_dist & 511]; in tdefl_compress_lz_codes()
3537 n0 = s_tdefl_small_dist_extra[match_dist & 511]; in tdefl_compress_lz_codes()
3538 s1 = s_tdefl_large_dist_sym[match_dist >> 8]; in tdefl_compress_lz_codes()
3539 n1 = s_tdefl_large_dist_extra[match_dist >> 8]; in tdefl_compress_lz_codes()
3540 sym = (match_dist < 512) ? s0 : s1; in tdefl_compress_lz_codes()
3541 num_extra_bits = (match_dist < 512) ? n0 : n1; in tdefl_compress_lz_codes()
3546 TDEFL_PUT_BITS_FAST(match_dist & mz_bitmasks[num_extra_bits], in tdefl_compress_lz_codes()
3608 match_dist = (pLZ_codes[1] | (pLZ_codes[2] << 8)); in tdefl_compress_lz_codes() local
3617 if (match_dist < 512) { in tdefl_compress_lz_codes()
[all …]