lib/inflate.c
144
struct huft *t; /* pointer to next level of table */
lib/inflate.c
151
const ush *, const ush *, struct huft **, int *));
lib/inflate.c
152
STATIC int INIT huft_free OF((struct huft *));
lib/inflate.c
153
STATIC int INIT inflate_codes OF((struct huft *, struct huft *, int, int));
lib/inflate.c
328
struct huft **t, /* result: starting table */
lib/inflate.c
346
register struct huft *q; /* points to current table */
lib/inflate.c
347
struct huft r; /* table entry for structure assignment */
lib/inflate.c
354
struct huft *u[BMAX]; /* table stack */
lib/inflate.c
359
struct huft **u;
lib/inflate.c
384
*t = (struct huft *)NULL;
lib/inflate.c
448
u[0] = (struct huft *)NULL; /* just to keep compilers happy */
lib/inflate.c
449
q = (struct huft *)NULL; /* ditto */
lib/inflate.c
488
if ((q = (struct huft *)malloc((z + 1)*sizeof(struct huft))) ==
lib/inflate.c
489
(struct huft *)NULL)
lib/inflate.c
499
*(t = &(q->v.t)) = (struct huft *)NULL;
lib/inflate.c
568
struct huft *t /* table to free */
lib/inflate.c
574
register struct huft *p, *q;
lib/inflate.c
579
while (p != (struct huft *)NULL)
lib/inflate.c
590
struct huft *tl, /* literal/length decoder tables */
lib/inflate.c
591
struct huft *td, /* distance decoder tables */
lib/inflate.c
601
struct huft *t; /* pointer to table entry */
lib/inflate.c
771
struct huft *tl; /* literal/length code table */
lib/inflate.c
772
struct huft *td; /* distance code table */
lib/inflate.c
837
struct huft *tl; /* literal/length code table */
lib/inflate.c
838
struct huft *td; /* distance code table */