Lines Matching refs:tdefl_compressor
255 tdefl_compressor *pComp; in mz_deflateInit2()
270 pComp = (tdefl_compressor *)pStream->zalloc(pStream->opaque, 1, sizeof(tdefl_compressor)); in mz_deflateInit2()
289 …tdefl_init((tdefl_compressor*)pStream->state, NULL, NULL, ((tdefl_compressor*)pStream->state)->m_f… in mz_deflateReset()
304 if (((tdefl_compressor*)pStream->state)->m_prev_return_status == TDEFL_STATUS_DONE) in mz_deflate()
313 …defl_status = tdefl_compress((tdefl_compressor*)pStream->state, pStream->next_in, &in_bytes, pStre… in mz_deflate()
315 …pStream->total_in += (mz_uint)in_bytes; pStream->adler = tdefl_get_adler32((tdefl_compressor*)pStr… in mz_deflate()
1110 static void tdefl_optimize_huffman_table(tdefl_compressor *d, int table_num, int table_len, int cod… in tdefl_optimize_huffman_table()
1175 static void tdefl_start_dynamic_block(tdefl_compressor *d) in tdefl_start_dynamic_block()
1237 static void tdefl_start_static_block(tdefl_compressor *d) in tdefl_start_static_block()
1258 static mz_bool tdefl_compress_lz_codes(tdefl_compressor *d) in tdefl_compress_lz_codes()
1347 static mz_bool tdefl_compress_lz_codes(tdefl_compressor *d) in tdefl_compress_lz_codes()
1392 static mz_bool tdefl_compress_block(tdefl_compressor *d, mz_bool static_block) in tdefl_compress_block()
1401 static int tdefl_flush_block(tdefl_compressor *d, int flush) in tdefl_flush_block()
1504 static MZ_FORCEINLINE void tdefl_find_match(tdefl_compressor *d, mz_uint lookahead_pos, mz_uint max… in tdefl_find_match()
1538 static MZ_FORCEINLINE void tdefl_find_match(tdefl_compressor *d, mz_uint lookahead_pos, mz_uint max… in tdefl_find_match()
1568 static mz_bool tdefl_compress_fast(tdefl_compressor *d) in tdefl_compress_fast()
1706 static MZ_FORCEINLINE void tdefl_record_literal(tdefl_compressor *d, mz_uint8 lit) in tdefl_record_literal()
1714 static MZ_FORCEINLINE void tdefl_record_match(tdefl_compressor *d, mz_uint match_len, mz_uint match… in tdefl_record_match()
1736 static mz_bool tdefl_compress_normal(tdefl_compressor *d) in tdefl_compress_normal()
1854 static tdefl_status tdefl_flush_output_buffer(tdefl_compressor *d) in tdefl_flush_output_buffer()
1875 tdefl_status tdefl_compress(tdefl_compressor *d, const void *pIn_buf, size_t *pIn_buf_size, void *p… in tdefl_compress()
1931 tdefl_status tdefl_compress_buffer(tdefl_compressor *d, const void *pIn_buf, size_t in_buf_size, td… in tdefl_compress_buffer()
1936 tdefl_status tdefl_init(tdefl_compressor *d, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_u… in tdefl_init()
1955 tdefl_status tdefl_get_prev_return_status(tdefl_compressor *d) in tdefl_get_prev_return_status()
1960 mz_uint32 tdefl_get_adler32(tdefl_compressor *d) in tdefl_get_adler32()
1967 …tdefl_compressor *pComp; mz_bool succeeded; if (((buf_len) && (!pBuf)) || (!pPut_buf_func)) return… in tdefl_compress_mem_to_output()
1968 pComp = (tdefl_compressor*)MZ_MALLOC(sizeof(tdefl_compressor)); if (!pComp) return MZ_FALSE; in tdefl_compress_mem_to_output()
2045 …tdefl_compressor *pComp = (tdefl_compressor *)MZ_MALLOC(sizeof(tdefl_compressor)); tdefl_output_bu… in tdefl_write_image_to_png_file_in_memory_ex()
3507 tdefl_compressor *pComp = NULL; in mz_zip_writer_add_mem_ex()
3561 …if (NULL == (pComp = (tdefl_compressor *)pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, sizeof(tdefl_com… in mz_zip_writer_add_mem_ex()
3748 …tdefl_compressor *pComp = (tdefl_compressor *)pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, sizeof(tdef… in mz_zip_writer_add_file()