Lines Matching defs:ct_data
345 } FAR ct_data;
355 ct_data *dyn_tree; /* the dynamic tree */
464 /* Didn't use ct_data typedef below to suppress compiler warning */
2060 local ct_data static_ltree[L_CODES+2];
2067 local ct_data static_dtree[D_CODES];
2092 local const ct_data static_ltree[L_CODES+2] = {
2153 local const ct_data static_dtree[D_CODES] = {
2222 const ct_data *static_tree; /* static tree or NULL */
2236 {(const ct_data *)0, extra_blbits, 0, BL_CODES, MAX_BL_BITS};
2244 local void pqdownheap(deflate_state *s, ct_data *tree, int k);
2246 local void gen_codes(ct_data *tree, int max_code, ushf *bl_count);
2248 local void scan_tree(deflate_state *s, ct_data *tree, int max_code);
2249 local void send_tree(deflate_state *s, ct_data *tree, int max_code);
2253 local void compress_block(deflate_state *s, const ct_data *ltree,
2254 const ct_data *dtree);
2401 gen_codes((ct_data *)static_ltree, L_CODES+1, bl_count);
2437 fprintf(header, "local const ct_data static_ltree[L_CODES+2] = {\n");
2443 fprintf(header, "local const ct_data static_dtree[D_CODES] = {\n");
2552 ct_data *tree, /* the tree to restore */
2588 ct_data *tree = desc->dyn_tree;
2590 const ct_data *stree = desc->stat_desc->static_tree;
2671 local void gen_codes (ct_data *tree, /* the tree to decorate */
2715 ct_data *tree = desc->dyn_tree;
2716 const ct_data *stree = desc->stat_desc->static_tree;
2791 gen_codes ((ct_data *)tree, max_code, s->bl_count);
2799 ct_data *tree, /* the tree to be scanned */
2843 ct_data *tree, /* the tree to be scanned */
2897 scan_tree(s, (ct_data *)s->dyn_ltree, s->l_desc.max_code);
2898 scan_tree(s, (ct_data *)s->dyn_dtree, s->d_desc.max_code);
2944 send_tree(s, (ct_data *)s->dyn_ltree, lcodes-1); /* literal tree */
2947 send_tree(s, (ct_data *)s->dyn_dtree, dcodes-1); /* distance tree */
3083 compress_block(s, (const ct_data *)static_ltree, (const ct_data *)static_dtree);
3091 compress_block(s, (const ct_data *)s->dyn_ltree, (const ct_data *)s->dyn_dtree);
3168 const ct_data *ltree, /* literal tree */
3169 const ct_data *dtree) /* distance tree */