Searched refs:deflate_state (Results 1 – 3 of 3) sorted by relevance
| /rk3399_rockchip-uboot/lib/zlib/ |
| H A D | trees.c | 144 local void init_block OF((deflate_state *s)); 145 local void pqdownheap OF((deflate_state *s, ct_data *tree, int k)); 146 local void gen_bitlen OF((deflate_state *s, tree_desc *desc)); 148 local void build_tree OF((deflate_state *s, tree_desc *desc)); 149 local void scan_tree OF((deflate_state *s, ct_data *tree, int max_code)); 150 local void send_tree OF((deflate_state *s, ct_data *tree, int max_code)); 151 local int build_bl_tree OF((deflate_state *s)); 152 local void send_all_trees OF((deflate_state *s, int lcodes, int dcodes, 154 local void compress_block OF((deflate_state *s, ct_data *ltree, 156 local int detect_data_type OF((deflate_state *s)); [all …]
|
| H A D | deflate.h | 270 } FAR deflate_state; typedef 293 void ZLIB_INTERNAL _tr_init OF((deflate_state *s)); 294 int ZLIB_INTERNAL _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc)); 295 void ZLIB_INTERNAL _tr_flush_block OF((deflate_state *s, charf *buf, 297 void ZLIB_INTERNAL _tr_align OF((deflate_state *s)); 298 void ZLIB_INTERNAL _tr_stored_block OF((deflate_state *s, charf *buf,
|
| H A D | deflate.c | 73 typedef block_state (*compress_func) OF((deflate_state *s, int flush)); 76 local void fill_window OF((deflate_state *s)); 77 local block_state deflate_stored OF((deflate_state *s, int flush)); 78 local block_state deflate_fast OF((deflate_state *s, int flush)); 80 local block_state deflate_slow OF((deflate_state *s, int flush)); 82 local block_state deflate_rle OF((deflate_state *s, int flush)); 83 local block_state deflate_huff OF((deflate_state *s, int flush)); 84 local void lm_init OF((deflate_state *s)); 85 local void putShortMSB OF((deflate_state *s, uInt b)); 90 uInt longest_match OF((deflate_state *s, IPos cur_match)); [all …]
|