Lines Matching defs:d
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()
2242 #define TINFL_MEMCPY(d, s, l) memcpy(d, s, l) argument