Lines Matching refs:huft
249 int inflate_codes OF((__GPRO__ struct huft *tl, struct huft *td,
432 struct huft *tl, *td; /* literal/length and distance decoder tables */
441 struct huft *t; /* pointer to table entry */
628 struct huft *fixed_tl = (struct huft *)NULL;
629 struct huft *fixed_td;
641 if (G.fixed_tl == (struct huft *)NULL) in inflate_fixed()
664 G.fixed_tl = (struct huft *)NULL; in inflate_fixed()
681 G.fixed_td = G.fixed_tl = (struct huft *)NULL; in inflate_fixed()
702 struct huft *tl; /* literal/length code table */ in inflate_dynamic()
703 struct huft *td; /* distance code table */ in inflate_dynamic()
985 h * (unsigned)sizeof(struct huft), (unsigned)sizeof(struct huft)));
1010 if (G.fixed_tl != (struct huft *)NULL) in inflate_free()
1014 G.fixed_td = G.fixed_tl = (struct huft *)NULL; in inflate_free()
1040 struct huft **t; /* result: starting table */
1063 register struct huft *q; /* points to current table */
1064 struct huft r; /* table entry for structure assignment */
1065 struct huft *u[BMAX]; /* table stack */
1083 *t = (struct huft *)NULL;
1136 u[0] = (struct huft *)NULL; /* just to keep compilers happy */
1137 q = (struct huft *)NULL; /* ditto */
1171 if ((q = (struct huft *)malloc((z + 1)*sizeof(struct huft))) ==
1172 (struct huft *)NULL)
1182 *(t = &(q->v.t)) = (struct huft *)NULL;
1240 struct huft *t; /* table to free */ in huft_free()
1245 register struct huft *p, *q;
1250 while (p != (struct huft *)NULL)