D | deftree.c | 138 static void pqdownheap (deflate_state *s, ct_data *tree, int k); 140 static void gen_codes (ct_data *tree, int max_code, ush *bl_count); 142 static void scan_tree (deflate_state *s, ct_data *tree, int max_code); 143 static void send_tree (deflate_state *s, ct_data *tree, int max_code); 156 # define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len) argument 160 # define send_code(s, c, tree) \ argument 162 send_bits(s, tree[c].Code, tree[c].Len); } 350 #define pqremove(s, tree, top) \ argument 354 pqdownheap(s, tree, SMALLEST); \ 361 #define smaller(tree, n, m, depth) \ argument [all …]
|