Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/esp_rom/include/esp32/rom/
Dminiz.h706 …_1 = 32, TDEFL_MAX_HUFF_SYMBOLS_2 = 19, TDEFL_LZ_DICT_SIZE = 32768, TDEFL_LZ_DICT_SIZE_MASK = TDEF… enumerator
751 mz_uint8 m_dict[TDEFL_LZ_DICT_SIZE + TDEFL_MAX_MATCH_LEN - 1];
756 mz_uint16 m_next[TDEFL_LZ_DICT_SIZE];
/hal_espressif-3.6.0/components/esp_rom/include/esp32c3/rom/
Dminiz.h678 …_1 = 32, TDEFL_MAX_HUFF_SYMBOLS_2 = 19, TDEFL_LZ_DICT_SIZE = 32768, TDEFL_LZ_DICT_SIZE_MASK = TDEF… enumerator
720 mz_uint8 m_dict[TDEFL_LZ_DICT_SIZE + TDEFL_MAX_MATCH_LEN - 1];
725 mz_uint16 m_next[TDEFL_LZ_DICT_SIZE];
/hal_espressif-3.6.0/components/esp_rom/include/esp32s2/rom/
Dminiz.h691 …_1 = 32, TDEFL_MAX_HUFF_SYMBOLS_2 = 19, TDEFL_LZ_DICT_SIZE = 32768, TDEFL_LZ_DICT_SIZE_MASK = TDEF… enumerator
736 mz_uint8 m_dict[TDEFL_LZ_DICT_SIZE + TDEFL_MAX_MATCH_LEN - 1];
741 mz_uint16 m_next[TDEFL_LZ_DICT_SIZE];
/hal_espressif-3.6.0/components/esp_rom/include/esp32s3/rom/
Dminiz.h677 …_1 = 32, TDEFL_MAX_HUFF_SYMBOLS_2 = 19, TDEFL_LZ_DICT_SIZE = 32768, TDEFL_LZ_DICT_SIZE_MASK = TDEF… enumerator
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-3.6.0/components/esp_rom/include/esp32h2/rom/
Dminiz.h678 …_1 = 32, TDEFL_MAX_HUFF_SYMBOLS_2 = 19, TDEFL_LZ_DICT_SIZE = 32768, TDEFL_LZ_DICT_SIZE_MASK = TDEF… enumerator
720 mz_uint8 m_dict[TDEFL_LZ_DICT_SIZE + TDEFL_MAX_MATCH_LEN - 1];
725 mz_uint16 m_next[TDEFL_LZ_DICT_SIZE];
/hal_espressif-3.6.0/components/esptool_py/esptool/flasher_stub/include/
Dminiz.h654 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-3.6.0/components/esptool_py/esptool/flasher_stub/
Dminiz.c1511 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 …]