Symbol: huft
src/bin/unzip/explode.c
133
static int explode_lit OF((__GPRO__ struct huft *tb, struct huft *tl,
src/bin/unzip/explode.c
134
struct huft *td, int bb, int bl, int bd,
src/bin/unzip/explode.c
136
static int explode_nolit OF((__GPRO__ struct huft *tl, struct huft *td,
src/bin/unzip/explode.c
252
struct huft *tb, *tl, *td; /* literal, length, and distance tables */
src/bin/unzip/explode.c
262
struct huft *t; /* pointer to table entry */
src/bin/unzip/explode.c
370
struct huft *tl, *td; /* length and distance decoder tables */
src/bin/unzip/explode.c
380
struct huft *t; /* pointer to table entry */
src/bin/unzip/explode.c
498
struct huft *tb; /* literal code table */
src/bin/unzip/explode.c
499
struct huft *tl; /* length code table */
src/bin/unzip/explode.c
500
struct huft *td; /* distance code table */
src/bin/unzip/explode.c
563
tb = (struct huft *)NULL;
src/bin/unzip/explode.c
576
if (tb != (struct huft *)NULL) huft_free(tb);
src/bin/unzip/explode.c
594
if (tb != (struct huft *)NULL) huft_free(tb);
src/bin/unzip/globals.h
310
struct huft *fixed_tl; /* inflate static */
src/bin/unzip/globals.h
311
struct huft *fixed_td; /* inflate static */
src/bin/unzip/globals.h
314
struct huft *fixed_tl64; /* inflate static */
src/bin/unzip/globals.h
315
struct huft *fixed_td64; /* inflate static */
src/bin/unzip/globals.h
317
struct huft *fixed_tl32; /* inflate static */
src/bin/unzip/globals.h
318
struct huft *fixed_td32; /* inflate static */
src/bin/unzip/inflate.c
1227
h * (unsigned)sizeof(struct huft), (unsigned)sizeof(struct huft)));
src/bin/unzip/inflate.c
1252
if (G.fixed_tl != (struct huft *)NULL)
src/bin/unzip/inflate.c
1256
G.fixed_td = G.fixed_tl = (struct huft *)NULL;
src/bin/unzip/inflate.c
1282
struct huft **t; /* result: starting table */
src/bin/unzip/inflate.c
1305
register struct huft *q; /* points to current table */
src/bin/unzip/inflate.c
1306
struct huft r; /* table entry for structure assignment */
src/bin/unzip/inflate.c
1307
struct huft *u[BMAX]; /* table stack */
src/bin/unzip/inflate.c
1325
*t = (struct huft *)NULL;
src/bin/unzip/inflate.c
1378
u[0] = (struct huft *)NULL; /* just to keep compilers happy */
src/bin/unzip/inflate.c
1379
q = (struct huft *)NULL; /* ditto */
src/bin/unzip/inflate.c
1413
if ((q = (struct huft *)malloc((z + 1)*sizeof(struct huft))) ==
src/bin/unzip/inflate.c
1414
(struct huft *)NULL)
src/bin/unzip/inflate.c
1424
*(t = &(q->v.t)) = (struct huft *)NULL;
src/bin/unzip/inflate.c
1482
struct huft *t; /* table to free */
src/bin/unzip/inflate.c
1487
register struct huft *p, *q;
src/bin/unzip/inflate.c
1492
while (p != (struct huft *)NULL)
src/bin/unzip/inflate.c
491
int inflate_codes OF((__GPRO__ struct huft *tl, struct huft *td,
src/bin/unzip/inflate.c
674
struct huft *tl, *td; /* literal/length and distance decoder tables */
src/bin/unzip/inflate.c
683
struct huft *t; /* pointer to table entry */
src/bin/unzip/inflate.c
870
struct huft *fixed_tl = (struct huft *)NULL;
src/bin/unzip/inflate.c
871
struct huft *fixed_td;
src/bin/unzip/inflate.c
883
if (G.fixed_tl == (struct huft *)NULL)
src/bin/unzip/inflate.c
906
G.fixed_tl = (struct huft *)NULL;
src/bin/unzip/inflate.c
923
G.fixed_td = G.fixed_tl = (struct huft *)NULL;
src/bin/unzip/inflate.c
944
struct huft *tl; /* literal/length code table */
src/bin/unzip/inflate.c
945
struct huft *td; /* distance code table */
src/bin/unzip/unzpriv.h
1674
struct huft *t; /* pointer to next level of table */
src/bin/unzip/unzpriv.h
1855
int huft_free OF((struct huft *t)); /* inflate.c */
src/bin/unzip/unzpriv.h
1858
struct huft **t, int *m));