tag | line | file | source code |
huft | 129 | lib/inflate.c | struct huft *t; /* pointer to next level of table */ |
huft | 136 | lib/inflate.c | struct huft **, int *)); |
huft | 137 | lib/inflate.c | STATIC int huft_free OF((struct huft *)); |
huft | 138 | lib/inflate.c | STATIC int inflate_codes OF((struct huft *, struct huft *, int, int)); |
huft | 274 | lib/inflate.c | struct huft **t; /* result: starting table */ |
huft | 292 | lib/inflate.c | register struct huft *q; /* points to current table */ |
huft | 293 | lib/inflate.c | struct huft r; /* table entry for structure assignment */ |
huft | 294 | lib/inflate.c | struct huft *u[BMAX]; /* table stack */ |
huft | 315 | lib/inflate.c | *t = (struct huft *)NULL; |
huft | 373 | lib/inflate.c | u[0] = (struct huft *)NULL; /* just to keep compilers happy */ |
huft | 374 | lib/inflate.c | q = (struct huft *)NULL; /* ditto */ |
huft | 412 | lib/inflate.c | if ((q = (struct huft *)malloc((z + 1)*sizeof(struct huft))) == |
huft | 413 | lib/inflate.c | (struct huft *)NULL) |
huft | 422 | lib/inflate.c | *(t = &(q->v.t)) = (struct huft *)NULL; |
huft | 487 | lib/inflate.c | struct huft *t; /* table to free */ |
huft | 492 | lib/inflate.c | register struct huft *p, *q; |
huft | 497 | lib/inflate.c | while (p != (struct huft *)NULL) |
huft | 508 | lib/inflate.c | struct huft *tl, *td; /* literal/length and distance decoder tables */ |
huft | 516 | lib/inflate.c | struct huft *t; /* pointer to table entry */ |
huft | 678 | lib/inflate.c | struct huft *tl; /* literal/length code table */ |
huft | 679 | lib/inflate.c | struct huft *td; /* distance code table */ |
huft | 734 | lib/inflate.c | struct huft *tl; /* literal/length code table */ |
huft | 735 | lib/inflate.c | struct huft *td; /* distance code table */ |