Searched refs:TDEFL_LZ_DICT_SIZE (Results 1 – 3 of 3) sorted by relevance
/hal_espressif-latest/components/esp_rom/include/ |
D | miniz.h | 690 …_1 = 32, TDEFL_MAX_HUFF_SYMBOLS_2 = 19, TDEFL_LZ_DICT_SIZE = 32768, TDEFL_LZ_DICT_SIZE_MASK = TDEF… enumerator 732 mz_uint8 m_dict[TDEFL_LZ_DICT_SIZE + TDEFL_MAX_MATCH_LEN - 1]; 737 mz_uint16 m_next[TDEFL_LZ_DICT_SIZE];
|
/hal_espressif-latest/tools/esptool_py/flasher_stub/include/ |
D | miniz.h | 654 TDEFL_LZ_DICT_SIZE = (8*1024), enumerator 655 TDEFL_LZ_DICT_SIZE_MASK = TDEFL_LZ_DICT_SIZE - 1, 719 mz_uint8 m_dict[TDEFL_LZ_DICT_SIZE + TDEFL_MAX_MATCH_LEN - 1]; 724 mz_uint16 m_next[TDEFL_LZ_DICT_SIZE];
|
/hal_espressif-latest/tools/esptool_py/flasher_stub/ |
D | miniz.c | 1511 mz_uint32 n = MZ_MIN(TDEFL_LZ_DICT_SIZE - dst_pos, num_bytes_to_process); in tdefl_compress_fast() 1514 …memcpy(d->m_dict + TDEFL_LZ_DICT_SIZE + dst_pos, d->m_pSrc, MZ_MIN(n, (TDEFL_MAX_MATCH_LEN - 1) - … in tdefl_compress_fast() 1520 dict_size = MZ_MIN(TDEFL_LZ_DICT_SIZE - lookahead_size, dict_size); in tdefl_compress_fast() 1558 …ch_len >= TDEFL_MIN_MATCH_LEN) && (cur_match_dist >= 1) && (cur_match_dist <= TDEFL_LZ_DICT_SIZE)); in tdefl_compress_fast() 1593 dict_size = MZ_MIN(dict_size + cur_match_len, (mz_uint)TDEFL_LZ_DICT_SIZE); in tdefl_compress_fast() 1633 dict_size = MZ_MIN(dict_size + 1, (mz_uint)TDEFL_LZ_DICT_SIZE); in tdefl_compress_fast() 1685 …ERT((match_len >= TDEFL_MIN_MATCH_LEN) && (match_dist >= 1) && (match_dist <= TDEFL_LZ_DICT_SIZE)); in tdefl_record_match() 1734 d->m_dict[TDEFL_LZ_DICT_SIZE + dst_pos] = c; in tdefl_compress_normal() 1751 d->m_dict[TDEFL_LZ_DICT_SIZE + dst_pos] = c; in tdefl_compress_normal() 1761 d->m_dict_size = MZ_MIN(TDEFL_LZ_DICT_SIZE - d->m_lookahead_size, d->m_dict_size); in tdefl_compress_normal() [all …]
|