Lines Matching refs:tdefl_compressor
190 tdefl_compressor *pComp; in mz_deflateInit2()
209 pComp = (tdefl_compressor *)pStream->zalloc(pStream->opaque, 1, sizeof(tdefl_compressor)); in mz_deflateInit2()
229 …tdefl_init((tdefl_compressor *)pStream->state, NULL, NULL, ((tdefl_compressor *)pStream->state)->m… in mz_deflateReset()
247 if (((tdefl_compressor *)pStream->state)->m_prev_return_status == TDEFL_STATUS_DONE) in mz_deflate()
258 …defl_status = tdefl_compress((tdefl_compressor *)pStream->state, pStream->next_in, &in_bytes, pStr… in mz_deflate()
262 pStream->adler = tdefl_get_adler32((tdefl_compressor *)pStream->state); in mz_deflate()
850 static void tdefl_optimize_huffman_table(tdefl_compressor *d, int table_num, int table_len, int cod… in tdefl_optimize_huffman_table()
969 static void tdefl_start_dynamic_block(tdefl_compressor *d) in tdefl_start_dynamic_block()
1056 static void tdefl_start_static_block(tdefl_compressor *d) in tdefl_start_static_block()
1081 static mz_bool tdefl_compress_lz_codes(tdefl_compressor *d) in tdefl_compress_lz_codes()
1175 static mz_bool tdefl_compress_lz_codes(tdefl_compressor *d) in tdefl_compress_lz_codes()
1223 static mz_bool tdefl_compress_block(tdefl_compressor *d, mz_bool static_block) in tdefl_compress_block()
1232 static int tdefl_flush_block(tdefl_compressor *d, int flush) in tdefl_flush_block()
1385 static MZ_FORCEINLINE void tdefl_find_match(tdefl_compressor *d, mz_uint lookahead_pos, mz_uint max… in tdefl_find_match()
1438 static MZ_FORCEINLINE void tdefl_find_match(tdefl_compressor *d, mz_uint lookahead_pos, mz_uint max… in tdefl_find_match()
1494 static mz_bool tdefl_compress_fast(tdefl_compressor *d) in tdefl_compress_fast()
1668 static MZ_FORCEINLINE void tdefl_record_literal(tdefl_compressor *d, mz_uint8 lit) in tdefl_record_literal()
1681 static MZ_FORCEINLINE void tdefl_record_match(tdefl_compressor *d, mz_uint match_len, mz_uint match… in tdefl_record_match()
1711 static mz_bool tdefl_compress_normal(tdefl_compressor *d) in tdefl_compress_normal()
1856 static tdefl_status tdefl_flush_output_buffer(tdefl_compressor *d) in tdefl_flush_output_buffer()
1877 tdefl_status tdefl_compress(tdefl_compressor *d, const void *pIn_buf, size_t *pIn_buf_size, void *p… in tdefl_compress()
1945 tdefl_status tdefl_compress_buffer(tdefl_compressor *d, const void *pIn_buf, size_t in_buf_size, td… in tdefl_compress_buffer()
1951 tdefl_status tdefl_init(tdefl_compressor *d, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_u… in tdefl_init()
1986 tdefl_status tdefl_get_prev_return_status(tdefl_compressor *d) in tdefl_get_prev_return_status()
1991 mz_uint32 tdefl_get_adler32(tdefl_compressor *d) in tdefl_get_adler32()
1998 tdefl_compressor *pComp; in tdefl_compress_mem_to_output()
2002 pComp = (tdefl_compressor *)MZ_MALLOC(sizeof(tdefl_compressor)); in tdefl_compress_mem_to_output()
2106 tdefl_compressor *pComp = (tdefl_compressor *)MZ_MALLOC(sizeof(tdefl_compressor)); in tdefl_write_image_to_png_file_in_memory_ex()
2190 tdefl_compressor *tdefl_compressor_alloc() in tdefl_compressor_alloc()
2192 return (tdefl_compressor *)MZ_MALLOC(sizeof(tdefl_compressor)); in tdefl_compressor_alloc()
2195 void tdefl_compressor_free(tdefl_compressor *pComp) in tdefl_compressor_free()
6096 tdefl_compressor *pComp = NULL; in mz_zip_writer_add_mem_ex_v2()
6209 …if (NULL == (pComp = (tdefl_compressor *)pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, sizeof(tdefl_com… in mz_zip_writer_add_mem_ex_v2()
6567 …tdefl_compressor *pComp = (tdefl_compressor *)pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, sizeof(tdef… in mz_zip_writer_add_read_buf_callback()