Home
last modified time | relevance | path

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

/hardware/google/gfxstream/third-party/astc-encoder/Source/
Dtinyexr.h1793 TDEFL_LZ_DICT_SIZE = 32768, enumerator
1794 TDEFL_LZ_DICT_SIZE_MASK = TDEFL_LZ_DICT_SIZE - 1,
1861 mz_uint8 m_dict[TDEFL_LZ_DICT_SIZE + TDEFL_MAX_MATCH_LEN - 1];
1866 mz_uint16 m_next[TDEFL_LZ_DICT_SIZE];
3900 mz_uint32 n = MZ_MIN(TDEFL_LZ_DICT_SIZE - dst_pos, num_bytes_to_process); in tdefl_compress_fast()
3903 memcpy(d->m_dict + TDEFL_LZ_DICT_SIZE + dst_pos, d->m_pSrc, in tdefl_compress_fast()
3910 dict_size = MZ_MIN(TDEFL_LZ_DICT_SIZE - lookahead_size, dict_size); in tdefl_compress_fast()
3960 (cur_match_dist <= TDEFL_LZ_DICT_SIZE)); in tdefl_compress_fast()
3989 dict_size = MZ_MIN(dict_size + cur_match_len, TDEFL_LZ_DICT_SIZE); in tdefl_compress_fast()
4026 dict_size = MZ_MIN(dict_size + 1, TDEFL_LZ_DICT_SIZE); in tdefl_compress_fast()
[all …]