147 #if defined(__TINYC__) && (defined(__linux) || defined(__linux__))
149 #define MINIZ_NO_TIME
154 #if !defined(MINIZ_NO_TIME) && !defined(MINIZ_NO_ARCHIVE_APIS)
158 #if defined(_M_IX86) || defined(_M_X64) || defined(__i386__) || defined(__i386) || defined(__i486__) || defined(__i486) || defined(i386) || defined(__ia64__) || defined(__x86_64__)
160 #define MINIZ_X86_OR_X64_CPU 1
162 #define MINIZ_X86_OR_X64_CPU 0
165 #if (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__) || MINIZ_X86_OR_X64_CPU
167 #define MINIZ_LITTLE_ENDIAN 1
169 #define MINIZ_LITTLE_ENDIAN 0
173 #if !defined(MINIZ_USE_UNALIGNED_LOADS_AND_STORES)
174 #if MINIZ_X86_OR_X64_CPU
176 #define MINIZ_USE_UNALIGNED_LOADS_AND_STORES 1
177 #define MINIZ_UNALIGNED_USE_MEMCPY
179 #define MINIZ_USE_UNALIGNED_LOADS_AND_STORES 0
183 #if defined(_M_X64) || defined(_WIN64) || defined(__MINGW64__) || defined(_LP64) || defined(__LP64__) || defined(__ia64__) || defined(__x86_64__)
185 #define MINIZ_HAS_64BIT_REGISTERS 1
187 #define MINIZ_HAS_64BIT_REGISTERS 0
202 #define MZ_ADLER32_INIT (1)
206 #define MZ_CRC32_INIT (0)
221 #define MZ_DEFLATED 8
225 typedef void *(*mz_alloc_func)(
void *opaque,
size_t items,
size_t size);
227 typedef void *(*mz_realloc_func)(
void *opaque,
void *address,
size_t items,
size_t size);
240 #define MZ_VERSION "10.2.0"
241 #define MZ_VERNUM 0xA100
242 #define MZ_VER_MAJOR 10
243 #define MZ_VER_MINOR 2
244 #define MZ_VER_REVISION 0
245 #define MZ_VER_SUBREVISION 0
247 #ifndef MINIZ_NO_ZLIB_APIS
276 #define MZ_DEFAULT_WINDOW_BITS 15
278 struct mz_internal_state;
399 #ifndef MINIZ_NO_ZLIB_COMPATIBLE_NAMES
412 #define Z_NO_FLUSH MZ_NO_FLUSH
413 #define Z_PARTIAL_FLUSH MZ_PARTIAL_FLUSH
414 #define Z_SYNC_FLUSH MZ_SYNC_FLUSH
415 #define Z_FULL_FLUSH MZ_FULL_FLUSH
416 #define Z_FINISH MZ_FINISH
417 #define Z_BLOCK MZ_BLOCK
419 #define Z_STREAM_END MZ_STREAM_END
420 #define Z_NEED_DICT MZ_NEED_DICT
421 #define Z_ERRNO MZ_ERRNO
422 #define Z_STREAM_ERROR MZ_STREAM_ERROR
423 #define Z_DATA_ERROR MZ_DATA_ERROR
424 #define Z_MEM_ERROR MZ_MEM_ERROR
425 #define Z_BUF_ERROR MZ_BUF_ERROR
426 #define Z_VERSION_ERROR MZ_VERSION_ERROR
427 #define Z_PARAM_ERROR MZ_PARAM_ERROR
428 #define Z_NO_COMPRESSION MZ_NO_COMPRESSION
429 #define Z_BEST_SPEED MZ_BEST_SPEED
430 #define Z_BEST_COMPRESSION MZ_BEST_COMPRESSION
431 #define Z_DEFAULT_COMPRESSION MZ_DEFAULT_COMPRESSION
432 #define Z_DEFAULT_STRATEGY MZ_DEFAULT_STRATEGY
433 #define Z_FILTERED MZ_FILTERED
434 #define Z_HUFFMAN_ONLY MZ_HUFFMAN_ONLY
436 #define Z_FIXED MZ_FIXED
437 #define Z_DEFLATED MZ_DEFLATED
438 #define Z_DEFAULT_WINDOW_BITS MZ_DEFAULT_WINDOW_BITS
439 #define alloc_func mz_alloc_func
440 #define free_func mz_free_func
441 #define internal_state mz_internal_state
442 #define z_stream mz_stream
443 #define deflateInit mz_deflateInit
444 #define deflateInit2 mz_deflateInit2
445 #define deflateReset mz_deflateReset
446 #define deflate mz_deflate
447 #define deflateEnd mz_deflateEnd
448 #define deflateBound mz_deflateBound
449 #define compress mz_compress
450 #define compress2 mz_compress2
451 #define compressBound mz_compressBound
452 #define inflateInit mz_inflateInit
453 #define inflateInit2 mz_inflateInit2
454 #define inflateReset mz_inflateReset
455 #define inflate mz_inflate
456 #define inflateEnd mz_inflateEnd
457 #define uncompress mz_uncompress
458 #define uncompress2 mz_uncompress2
459 #define crc32 mz_crc32
460 #define adler32 mz_adler32
462 #define MAX_MEM_LEVEL 9
463 #define zError mz_error
464 #define ZLIB_VERSION MZ_VERSION
465 #define ZLIB_VERNUM MZ_VERNUM
466 #define ZLIB_VER_MAJOR MZ_VER_MAJOR
467 #define ZLIB_VER_MINOR MZ_VER_MINOR
468 #define ZLIB_VER_REVISION MZ_VER_REVISION
469 #define ZLIB_VER_SUBREVISION MZ_VER_SUBREVISION
470 #define zlibVersion mz_version
471 #define zlib_version mz_version()
507 #define MZ_MACRO_END while (0, 0)
509 #define MZ_MACRO_END while (0)
512 #ifdef MINIZ_NO_STDIO
513 #define MZ_FILE void *
520 typedef struct mz_dummy_time_t_tag
524 #define MZ_TIME_T mz_dummy_time_t
526 #define MZ_TIME_T time_t
529 #define MZ_ASSERT(x) assert(x)
531 #ifdef MINIZ_NO_MALLOC
532 #define MZ_MALLOC(x) NULL
533 #define MZ_FREE(x) (void)x, ((void)0)
534 #define MZ_REALLOC(p, x) NULL
536 #define MZ_MALLOC(x) malloc(x)
537 #define MZ_FREE(x) free(x)
538 #define MZ_REALLOC(p, x) realloc(p, x)
541 #define MZ_MAX(a, b) (((a) > (b)) ? (a) : (b))
542 #define MZ_MIN(a, b) (((a) < (b)) ? (a) : (b))
543 #define MZ_CLEAR_OBJ(obj) memset(&(obj), 0, sizeof(obj))
545 #if MINIZ_USE_UNALIGNED_LOADS_AND_STORES && MINIZ_LITTLE_ENDIAN
546 #define MZ_READ_LE16(p) *((const mz_uint16 *)(p))
547 #define MZ_READ_LE32(p) *((const mz_uint32 *)(p))
549 #define MZ_READ_LE16(p) ((mz_uint32)(((const mz_uint8 *)(p))[0]) | ((mz_uint32)(((const mz_uint8 *)(p))[1]) << 8U))
550 #define MZ_READ_LE32(p) ((mz_uint32)(((const mz_uint8 *)(p))[0]) | ((mz_uint32)(((const mz_uint8 *)(p))[1]) << 8U) | ((mz_uint32)(((const mz_uint8 *)(p))[2]) << 16U) | ((mz_uint32)(((const mz_uint8 *)(p))[3]) << 24U))
553 #define MZ_READ_LE64(p) (((mz_uint64)MZ_READ_LE32(p)) | (((mz_uint64)MZ_READ_LE32((const mz_uint8 *)(p) + sizeof(mz_uint32))) << 32U))
556 #define MZ_FORCEINLINE __forceinline
557 #elif defined(__GNUC__)
558 #define MZ_FORCEINLINE __inline__ __attribute__((__always_inline__))
560 #define MZ_FORCEINLINE inline
571 #define MZ_UINT16_MAX (0xFFFFU)
572 #define MZ_UINT32_MAX (0xFFFFFFFFU)
586 #define TDEFL_LESS_MEMORY 0
665 #if TDEFL_LESS_MEMORY
715 mz_uint m_saved_match_dist, m_saved_match_len, m_saved_lit, m_output_flush_ofs, m_output_flush_remaining, m_finished, m_block_index,
m_wants_to_finish;
756 #ifndef MINIZ_NO_MALLOC
799 #define TINFL_DECOMPRESS_MEM_TO_MEM_FAILED ((size_t)(-1))
810 #ifndef MINIZ_NO_MALLOC
819 #define TINFL_LZ_DICT_SIZE 32768
856 #define tinfl_init(r) \
862 #define tinfl_get_adler32(r) (r)->m_check_adler32
885 #if MINIZ_HAS_64BIT_REGISTERS
886 #define TINFL_USE_64BIT_BITBUF 1
888 #define TINFL_USE_64BIT_BITBUF 0
891 #if TINFL_USE_64BIT_BITBUF
893 #define TINFL_BITBUF_SIZE (64)
896 #define TINFL_BITBUF_SIZE (32)
901 mz_uint32 m_state,
m_num_bits,
m_zhdr0,
m_zhdr1,
m_z_adler32,
m_final,
m_type,
m_check_adler32,
m_dist,
m_counter,
m_num_extra,
m_table_sizes[
TINFL_MAX_HUFF_TABLES];
917 #ifndef MINIZ_NO_ARCHIVE_APIS
945 #ifndef MINIZ_NO_TIME
1096 #ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS
1118 #ifndef MINIZ_NO_STDIO
1216 #ifndef MINIZ_NO_STDIO
1229 typedef void *mz_zip_streaming_extract_state_ptr;
1231 uint64_t mz_zip_streaming_extract_get_size(
mz_zip_archive *pZip, mz_zip_streaming_extract_state_ptr pState);
1232 uint64_t mz_zip_streaming_extract_get_cur_ofs(
mz_zip_archive *pZip, mz_zip_streaming_extract_state_ptr pState);
1234 size_t mz_zip_streaming_extract_read(
mz_zip_archive *pZip, mz_zip_streaming_extract_state_ptr pState,
void *pBuf,
size_t buf_size);
1235 mz_bool mz_zip_streaming_extract_end(
mz_zip_archive *pZip, mz_zip_streaming_extract_state_ptr pState);
1254 #ifndef MINIZ_NO_ARCHIVE_WRITING_APIS
1265 #ifndef MINIZ_NO_STDIO
1292 const char *user_extra_data_central,
mz_uint user_extra_data_central_len);
1297 const MZ_TIME_T *pFile_time,
const void *pComment,
mz_uint16 comment_size,
mz_uint level_and_flags,
const char *user_extra_data_local,
mz_uint user_extra_data_local_len,
1298 const char *user_extra_data_central,
mz_uint user_extra_data_central_len);
1301 #ifndef MINIZ_NO_STDIO
1308 const MZ_TIME_T *pFile_time,
const void *pComment,
mz_uint16 comment_size,
mz_uint level_and_flags,
const char *user_extra_data_local,
mz_uint user_extra_data_local_len,
1309 const char *user_extra_data_central,
mz_uint user_extra_data_central_len);
strategy
Block allocation strategies.
unsigned int
A callback function used to compare two keys in a database.
mz_zip_reader_extract_iter_state * mz_zip_reader_extract_file_iter_new(mz_zip_archive *pZip, const char *pFilename, mz_uint flags)
void * tdefl_write_image_to_png_file_in_memory(const void *pImage, int w, int h, int num_chans, size_t *pLen_out)
mz_ulong mz_adler32(mz_ulong adler, const unsigned char *ptr, size_t buf_len)
mz_bool mz_zip_is_zip64(mz_zip_archive *pZip)
@ MZ_ZIP_FLAG_ASCII_FILENAME
@ MZ_ZIP_FLAG_WRITE_HEADER_SET_SIZE
@ MZ_ZIP_FLAG_WRITE_ZIP64
@ MZ_ZIP_FLAG_WRITE_ALLOW_READING
@ MZ_ZIP_FLAG_VALIDATE_HEADERS_ONLY
@ MZ_ZIP_FLAG_VALIDATE_LOCATE_FILE_FLAG
@ MZ_ZIP_FLAG_COMPRESSED_DATA
@ MZ_ZIP_FLAG_DO_NOT_SORT_CENTRAL_DIRECTORY
@ MZ_ZIP_FLAG_CASE_SENSITIVE
@ MZ_ZIP_FLAG_IGNORE_PATH
mz_bool mz_zip_reader_end(mz_zip_archive *pZip)
int mz_uncompress2(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong *pSource_len)
mz_bool mz_zip_validate_archive(mz_zip_archive *pZip, mz_uint flags)
mz_bool mz_zip_writer_finalize_archive(mz_zip_archive *pZip)
mz_zip_type mz_zip_get_type(mz_zip_archive *pZip)
mz_bool tdefl_compress_mem_to_output(const void *pBuf, size_t buf_len, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags)
struct mz_stream_s mz_stream
mz_bool mz_zip_end(mz_zip_archive *pZip)
mz_uint mz_zip_reader_get_num_files(mz_zip_archive *pZip)
mz_bool mz_zip_writer_init_file(mz_zip_archive *pZip, const char *pFilename, mz_uint64 size_to_reserve_at_beginning)
size_t(* mz_file_write_func)(void *pOpaque, mz_uint64 file_ofs, const void *pBuf, size_t n)
mz_bool mz_zip_reader_init_file(mz_zip_archive *pZip, const char *pFilename, mz_uint32 flags)
int mz_deflateReset(mz_streamp pStream)
size_t mz_zip_get_central_dir_size(mz_zip_archive *pZip)
void * tinfl_decompress_mem_to_heap(const void *pSrc_buf, size_t src_buf_len, size_t *pOut_len, int flags)
int mz_inflateInit(mz_streamp pStream)
mz_bool mz_zip_reader_extract_to_cfile(mz_zip_archive *pZip, mz_uint file_index, FILE *File, mz_uint flags)
int mz_inflate(mz_streamp pStream, int flush)
int mz_compress(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong source_len)
mz_uint32 tdefl_get_adler32(tdefl_compressor *d)
mz_bool mz_zip_reader_extract_file_to_callback(mz_zip_archive *pZip, const char *pFilename, mz_file_write_func pCallback, void *pOpaque, mz_uint flags)
mz_ulong mz_compressBound(mz_ulong source_len)
mz_bool mz_zip_reader_locate_file_v2(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags, mz_uint32 *file_index)
@ TDEFL_MAX_HUFF_SYMBOLS_0
@ TDEFL_LZ_DICT_SIZE_MASK
@ TDEFL_MAX_HUFF_SYMBOLS_1
@ TDEFL_MAX_HUFF_SYMBOLS_2
mz_bool mz_zip_add_mem_to_archive_file_in_place(const char *pZip_filename, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags)
int mz_deflateEnd(mz_streamp pStream)
size_t tdefl_compress_mem_to_mem(void *pOut_buf, size_t out_buf_len, const void *pSrc_buf, size_t src_buf_len, int flags)
@ TINFL_STATUS_ADLER32_MISMATCH
@ TINFL_STATUS_NEEDS_MORE_INPUT
@ TINFL_STATUS_HAS_MORE_OUTPUT
@ TINFL_STATUS_FAILED_CANNOT_MAKE_PROGRESS
mz_zip_mode mz_zip_get_mode(mz_zip_archive *pZip)
tdefl_status tdefl_init(tdefl_compressor *d, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags)
const char * mz_version(void)
size_t mz_zip_read_archive_data(mz_zip_archive *pZip, mz_uint64 file_ofs, void *pBuf, size_t n)
int tinfl_decompress_mem_to_callback(const void *pIn_buf, size_t *pIn_buf_size, tinfl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags)
mz_bool mz_zip_writer_init_file_v2(mz_zip_archive *pZip, const char *pFilename, mz_uint64 size_to_reserve_at_beginning, mz_uint flags)
mz_bool mz_zip_reader_is_file_a_directory(mz_zip_archive *pZip, mz_uint file_index)
mz_bool mz_zip_writer_add_read_buf_callback(mz_zip_archive *pZip, const char *pArchive_name, mz_file_read_func read_callback, void *callback_opaque, mz_uint64 max_size, const time_t *pFile_time, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, const char *user_extra_data_local, mz_uint user_extra_data_local_len, const char *user_extra_data_central, mz_uint user_extra_data_central_len)
mz_bool mz_zip_add_mem_to_archive_file_in_place_v2(const char *pZip_filename, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, mz_zip_error *pErr)
@ TDEFL_FORCE_ALL_RAW_BLOCKS
@ TDEFL_GREEDY_PARSING_FLAG
@ TDEFL_FORCE_ALL_STATIC_BLOCKS
@ TDEFL_WRITE_ZLIB_HEADER
@ TDEFL_NONDETERMINISTIC_PARSING_FLAG
mz_bool mz_zip_reader_extract_to_mem_no_alloc(mz_zip_archive *pZip, mz_uint file_index, void *pBuf, size_t buf_size, mz_uint flags, void *pUser_read_buf, size_t user_read_buf_size)
mz_bool mz_zip_writer_add_mem_ex(mz_zip_archive *pZip, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, mz_uint64 uncomp_size, mz_uint32 uncomp_crc32)
int(* tinfl_put_buf_func_ptr)(const void *pBuf, int len, void *pUser)
tdefl_status tdefl_get_prev_return_status(tdefl_compressor *d)
mz_bool mz_zip_writer_init_heap(mz_zip_archive *pZip, size_t size_to_reserve_at_beginning, size_t initial_allocation_size)
@ TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF
@ TINFL_FLAG_HAS_MORE_INPUT
@ TINFL_FLAG_COMPUTE_ADLER32
@ TINFL_FLAG_PARSE_ZLIB_HEADER
mz_zip_error mz_zip_peek_last_error(mz_zip_archive *pZip)
mz_bool mz_zip_reader_init(mz_zip_archive *pZip, mz_uint64 size, mz_uint flags)
void * miniz_def_alloc_func(void *opaque, size_t items, size_t size)
mz_zip_error mz_zip_get_last_error(mz_zip_archive *pZip)
mz_bool mz_zip_reader_extract_file_to_file(mz_zip_archive *pZip, const char *pArchive_filename, const char *pDst_filename, mz_uint flags)
tdefl_status tdefl_compress_buffer(tdefl_compressor *d, const void *pIn_buf, size_t in_buf_size, tdefl_flush flush)
mz_bool mz_zip_reader_extract_to_callback(mz_zip_archive *pZip, mz_uint file_index, mz_file_write_func pCallback, void *pOpaque, mz_uint flags)
mz_bool mz_zip_validate_file_archive(const char *pFilename, mz_uint flags, mz_zip_error *pErr)
void * tdefl_write_image_to_png_file_in_memory_ex(const void *pImage, int w, int h, int num_chans, size_t *pLen_out, mz_uint level, mz_bool flip)
int mz_deflateInit2(mz_streamp pStream, int level, int method, int window_bits, int mem_level, int strategy)
mz_bool mz_zip_reader_init_mem(mz_zip_archive *pZip, const void *pMem, size_t size, mz_uint flags)
mz_bool mz_zip_writer_init_cfile(mz_zip_archive *pZip, FILE *pFile, mz_uint flags)
int mz_deflateInit(mz_streamp pStream, int level)
const char * mz_zip_get_error_string(mz_zip_error mz_err)
mz_bool mz_zip_reader_init_cfile(mz_zip_archive *pZip, FILE *pFile, mz_uint64 archive_size, mz_uint flags)
void * mz_zip_reader_extract_to_heap(mz_zip_archive *pZip, mz_uint file_index, size_t *pSize, mz_uint flags)
void miniz_def_free_func(void *opaque, void *address)
int mz_compress2(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong source_len, int level)
mz_bool mz_zip_writer_end(mz_zip_archive *pZip)
mz_bool mz_zip_writer_add_file(mz_zip_archive *pZip, const char *pArchive_name, const char *pSrc_filename, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags)
mz_bool mz_zip_writer_add_mem_ex_v2(mz_zip_archive *pZip, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, mz_uint64 uncomp_size, mz_uint32 uncomp_crc32, time_t *last_modified, const char *user_extra_data_local, mz_uint user_extra_data_local_len, const char *user_extra_data_central, mz_uint user_extra_data_central_len)
void *(* mz_alloc_func)(void *opaque, size_t items, size_t size)
int mz_inflateReset(mz_streamp pStream)
int mz_zip_reader_locate_file(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags)
@ TDEFL_DEFAULT_MAX_PROBES
size_t(* mz_file_read_func)(void *pOpaque, mz_uint64 file_ofs, void *pBuf, size_t n)
mz_bool mz_zip_reader_is_file_encrypted(mz_zip_archive *pZip, mz_uint file_index)
mz_bool mz_zip_writer_init(mz_zip_archive *pZip, mz_uint64 existing_size)
void mz_zip_zero_struct(mz_zip_archive *pZip)
@ TDEFL_LEVEL1_HASH_SIZE_MASK
mz_bool mz_zip_reader_extract_file_to_cfile(mz_zip_archive *pZip, const char *pArchive_filename, FILE *pFile, mz_uint flags)
mz_uint64 mz_zip_get_archive_size(mz_zip_archive *pZip)
size_t mz_zip_reader_extract_iter_read(mz_zip_reader_extract_iter_state *pState, void *pvBuf, size_t buf_size)
@ MZ_ZIP_MAX_ARCHIVE_FILE_COMMENT_SIZE
@ MZ_ZIP_MAX_ARCHIVE_FILENAME_SIZE
void * mz_zip_extract_archive_file_to_heap_v2(const char *pZip_filename, const char *pArchive_name, const char *pComment, size_t *pSize, mz_uint flags, mz_zip_error *pErr)
int mz_inflateInit2(mz_streamp pStream, int window_bits)
mz_bool mz_zip_writer_add_from_zip_reader(mz_zip_archive *pZip, mz_zip_archive *pSource_zip, mz_uint src_file_index)
mz_bool mz_zip_reader_is_file_supported(mz_zip_archive *pZip, mz_uint file_index)
mz_bool mz_zip_reader_extract_to_mem(mz_zip_archive *pZip, mz_uint file_index, void *pBuf, size_t buf_size, mz_uint flags)
void *(* mz_realloc_func)(void *opaque, void *address, size_t items, size_t size)
mz_zip_error mz_zip_set_last_error(mz_zip_archive *pZip, mz_zip_error err_num)
int mz_uncompress(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong source_len)
mz_bool mz_zip_writer_add_cfile(mz_zip_archive *pZip, const char *pArchive_name, FILE *pSrc_file, mz_uint64 max_size, const time_t *pFile_time, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, const char *user_extra_data_local, mz_uint user_extra_data_local_len, const char *user_extra_data_central, mz_uint user_extra_data_central_len)
mz_bool mz_zip_reader_file_stat(mz_zip_archive *pZip, mz_uint file_index, mz_zip_archive_file_stat *pStat)
mz_bool mz_zip_writer_init_from_reader_v2(mz_zip_archive *pZip, const char *pFilename, mz_uint flags)
mz_bool mz_zip_reader_init_file_v2(mz_zip_archive *pZip, const char *pFilename, mz_uint flags, mz_uint64 file_start_ofs, mz_uint64 archive_size)
void tdefl_compressor_free(tdefl_compressor *pComp)
mz_uint64 mz_zip_get_archive_file_start_offset(mz_zip_archive *pZip)
tinfl_decompressor * tinfl_decompressor_alloc(void)
int mz_inflateEnd(mz_streamp pStream)
mz_bool mz_zip_writer_add_mem(mz_zip_archive *pZip, const char *pArchive_name, const void *pBuf, size_t buf_size, mz_uint level_and_flags)
int mz_deflate(mz_streamp pStream, int flush)
mz_bool mz_zip_reader_extract_file_to_mem(mz_zip_archive *pZip, const char *pFilename, void *pBuf, size_t buf_size, mz_uint flags)
@ TDEFL_STATUS_PUT_BUF_FAILED
void(* mz_free_func)(void *opaque, void *address)
void * mz_zip_reader_extract_file_to_heap(mz_zip_archive *pZip, const char *pFilename, size_t *pSize, mz_uint flags)
mz_bool mz_zip_reader_extract_file_to_mem_no_alloc(mz_zip_archive *pZip, const char *pFilename, void *pBuf, size_t buf_size, mz_uint flags, void *pUser_read_buf, size_t user_read_buf_size)
const char * mz_error(int err)
size_t tinfl_decompress_mem_to_mem(void *pOut_buf, size_t out_buf_len, const void *pSrc_buf, size_t src_buf_len, int flags)
tinfl_status tinfl_decompress(tinfl_decompressor *r, const mz_uint8 *pIn_buf_next, size_t *pIn_buf_size, mz_uint8 *pOut_buf_start, mz_uint8 *pOut_buf_next, size_t *pOut_buf_size, const mz_uint32 decomp_flags)
mz_bool mz_zip_validate_mem_archive(const void *pMem, size_t size, mz_uint flags, mz_zip_error *pErr)
mz_bool mz_zip_validate_file(mz_zip_archive *pZip, mz_uint file_index, mz_uint flags)
mz_ulong mz_deflateBound(mz_streamp pStream, mz_ulong source_len)
mz_ulong mz_crc32(mz_ulong crc, const unsigned char *ptr, size_t buf_len)
tdefl_compressor * tdefl_compressor_alloc(void)
mz_uint tdefl_create_comp_flags_from_zip_params(int level, int window_bits, int strategy)
mz_bool(* mz_file_needs_keepalive)(void *pOpaque)
@ MZ_ZIP_MODE_WRITING_HAS_BEEN_FINALIZED
mz_bool mz_zip_reader_extract_iter_free(mz_zip_reader_extract_iter_state *pState)
mz_bool(* tdefl_put_buf_func_ptr)(const void *pBuf, int len, void *pUser)
@ MZ_ZIP_UNSUPPORTED_METHOD
@ MZ_ZIP_UNSUPPORTED_FEATURE
@ MZ_ZIP_FILE_OPEN_FAILED
@ MZ_ZIP_WRITE_CALLBACK_FAILED
@ MZ_ZIP_CRC_CHECK_FAILED
@ MZ_ZIP_FILE_CLOSE_FAILED
@ MZ_ZIP_FILE_CREATE_FAILED
@ MZ_ZIP_VALIDATION_FAILED
@ MZ_ZIP_FILE_STAT_FAILED
@ MZ_ZIP_INVALID_FILENAME
@ MZ_ZIP_COMPRESSION_FAILED
@ MZ_ZIP_UNSUPPORTED_ENCRYPTION
@ MZ_ZIP_UNSUPPORTED_MULTIDISK
@ MZ_ZIP_ARCHIVE_TOO_LARGE
@ MZ_ZIP_DECOMPRESSION_FAILED
@ MZ_ZIP_FILE_WRITE_FAILED
@ MZ_ZIP_INVALID_PARAMETER
@ MZ_ZIP_INVALID_HEADER_OR_CORRUPTED
@ MZ_ZIP_UNSUPPORTED_CDIR_SIZE
@ MZ_ZIP_FILE_READ_FAILED
@ MZ_ZIP_FAILED_FINDING_CENTRAL_DIR
@ MZ_ZIP_UNEXPECTED_DECOMPRESSED_SIZE
@ MZ_ZIP_FILE_SEEK_FAILED
mz_bool mz_zip_writer_finalize_heap_archive(mz_zip_archive *pZip, void **ppBuf, size_t *pSize)
void * miniz_def_realloc_func(void *opaque, void *address, size_t items, size_t size)
mz_bool mz_zip_writer_init_v2(mz_zip_archive *pZip, mz_uint64 existing_size, mz_uint flags)
tdefl_status tdefl_compress(tdefl_compressor *d, const void *pIn_buf, size_t *pIn_buf_size, void *pOut_buf, size_t *pOut_buf_size, tdefl_flush flush)
mz_bool mz_zip_writer_init_from_reader(mz_zip_archive *pZip, const char *pFilename)
void * mz_zip_extract_archive_file_to_heap(const char *pZip_filename, const char *pArchive_name, size_t *pSize, mz_uint flags)
mz_zip_error mz_zip_clear_last_error(mz_zip_archive *pZip)
@ TINFL_MAX_HUFF_SYMBOLS_2
@ TINFL_MAX_HUFF_SYMBOLS_0
@ TINFL_MAX_HUFF_SYMBOLS_1
FILE * mz_zip_get_cfile(mz_zip_archive *pZip)
mz_zip_reader_extract_iter_state * mz_zip_reader_extract_iter_new(mz_zip_archive *pZip, mz_uint file_index, mz_uint flags)
mz_bool mz_zip_writer_init_heap_v2(mz_zip_archive *pZip, size_t size_to_reserve_at_beginning, size_t initial_allocation_size, mz_uint flags)
mz_bool mz_zip_reader_extract_to_file(mz_zip_archive *pZip, mz_uint file_index, const char *pDst_filename, mz_uint flags)
mz_uint mz_zip_reader_get_filename(mz_zip_archive *pZip, mz_uint file_index, char *pFilename, mz_uint filename_buf_size)
mz_uint32 tinfl_bit_buf_t
void tinfl_decompressor_free(tinfl_decompressor *pDecomp)
void * tdefl_compress_mem_to_heap(const void *pSrc_buf, size_t src_buf_len, size_t *pOut_len, int flags)
const struct ncbi::grid::netcache::search::fields::SIZE size
double r(size_t dimension_, const Int4 *score_, const double *prob_, double theta_)
struct mz_internal_state * state
const unsigned char * next_in
mz_uint32 m_external_attr
mz_uint16 m_version_needed
mz_uint16 m_version_made_by
mz_uint64 m_central_dir_ofs
mz_uint64 m_local_header_ofs
mz_uint16 m_internal_attr
mz_uint64 m_central_directory_file_ofs
mz_zip_error m_last_error
mz_file_needs_keepalive m_pNeeds_keepalive
mz_file_write_func m_pWrite
mz_zip_internal_state * m_pState
mz_realloc_func m_pRealloc
mz_file_read_func m_pRead
mz_uint64 m_file_offset_alignment
mz_uint m_wants_to_finish
tdefl_status m_prev_return_status
tdefl_put_buf_func_ptr m_pPut_buf_func
mz_uint8 * m_pOutput_buf_end
tinfl_bit_buf_t m_bit_buf
size_t m_dist_from_out_buf_start
mz_uint32 m_check_adler32
tinfl_huff_table m_tables[TINFL_MAX_HUFF_TABLES]
mz_uint32 m_table_sizes[TINFL_MAX_HUFF_TABLES]
mz_uint8 m_len_codes[TINFL_MAX_HUFF_SYMBOLS_0+TINFL_MAX_HUFF_SYMBOLS_1+137]