Lines Matching refs:t
144 struct huft *t; /* pointer to next level of table */ member
328 struct huft **t, /* result: starting table */ in huft_build() argument
384 *t = (struct huft *)NULL; in huft_build()
498 *t = q + 1; /* link to list for huft_free() */ in huft_build()
499 *(t = &(q->v.t)) = (struct huft *)NULL; in huft_build()
509 r.v.t = q; /* pointer to this table */ in huft_build()
568 struct huft *t /* table to free */ in huft_free() argument
578 p = t; in huft_free()
581 q = (--p)->v.t; in huft_free()
601 struct huft *t; /* pointer to table entry */ in inflate_codes() local
618 if ((e = (t = tl + ((unsigned)b & ml))->e) > 16) in inflate_codes()
622 DUMPBITS(t->b) in inflate_codes()
625 } while ((e = (t = t->v.t + ((unsigned)b & mask_bits[e]))->e) > 16); in inflate_codes()
626 DUMPBITS(t->b) in inflate_codes()
629 slide[w++] = (uch)t->v.n; in inflate_codes()
645 n = t->v.n + ((unsigned)b & mask_bits[e]); in inflate_codes()
650 if ((e = (t = td + ((unsigned)b & md))->e) > 16) in inflate_codes()
654 DUMPBITS(t->b) in inflate_codes()
657 } while ((e = (t = t->v.t + ((unsigned)b & mask_bits[e]))->e) > 16); in inflate_codes()
658 DUMPBITS(t->b) in inflate_codes()
660 d = w - t->v.n - ((unsigned)b & mask_bits[e]); in inflate_codes()
1039 unsigned t; /* block type */ in inflate_block() local
1058 t = (unsigned)b & 3; in inflate_block()
1067 if (t == 2) in inflate_block()
1069 if (t == 0) in inflate_block()
1071 if (t == 1) in inflate_block()