Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/esptool_py/esptool/flasher_stub/
Dminiz.c307 …return MZ_MAX(128 + (source_len * 110) / 100, 128 + source_len + ((source_len / (31 * 1024)) + 1) … in mz_deflateBound()
1041 num_bit_lengths = MZ_MAX(4, (num_bit_lengths + 1)); in tdefl_start_dynamic_block()
2030 new_capacity = MZ_MAX(128U, new_capacity << 1U); in tdefl_output_buffer_putter()
2115 out_buf.m_capacity = 57 + MZ_MAX(64, (1 + bpl) * h); in tdefl_write_image_to_png_file_in_memory_ex()
2715 if ((MZ_MAX(pOut_buf_cur, pSrc) + counter) > pOut_buf_end) in tinfl_decompress()
3259 new_capacity = MZ_MAX(1, pArray->m_capacity); in mz_zip_array_ensure_capacity()
3505 cur_file_ofs = MZ_MAX((mz_int64)pZip->m_archive_size - (mz_int64)sizeof(buf_u32), 0); in mz_zip_reader_locate_header_sig()
3533 cur_file_ofs = MZ_MAX(cur_file_ofs - (sizeof(buf_u32) - 3), 0); in mz_zip_reader_locate_header_sig()
3692 (MZ_MAX(MZ_MAX(comp_size, decomp_size), local_header_ofs) == MZ_UINT32_MAX)) in mz_zip_reader_read_central_dir()
4162 …if (MZ_MAX(MZ_MAX(pStat->m_comp_size, pStat->m_uncomp_size), pStat->m_local_header_ofs) == MZ_UINT… in mz_zip_file_stat_internal()
[all …]
/hal_espressif-3.6.0/components/esptool_py/esptool/flasher_stub/include/
Dminiz.h537 #define MZ_MAX(a, b) (((a) > (b)) ? (a) : (b)) macro