Lines Matching defs:tl
3076 inflate_huft *tl, *td; /* trees to free */
3221 inflate_trees_free(s->sub.decode.tl, z);
3295 inflate_huft *tl, *td;
3297 inflate_trees_fixed(&bl, &bd, &tl, &td);
3298 s->sub.decode.codes = inflate_codes_new(bl, bd, tl, td, z);
3304 s->sub.decode.tl = Z_NULL; /* don't try to free these */
3448 inflate_huft *tl, *td;
3455 s->sub.trees.blens, &bl, &bd, &tl, &td, z);
3464 if ((c = inflate_codes_new(bl, bd, tl, td, z)) == Z_NULL)
3467 inflate_trees_free(tl, z);
3473 s->sub.decode.tl = tl;
3484 inflate_trees_free(s->sub.decode.tl, z);
3915 local int inflate_trees_dynamic(nl, nd, c, bl, bd, tl, td, z)
3921 inflate_huft * FAR *tl; /* literal/length tree result */
3928 if ((r = huft_build(c, nl, 257, cplens, cplext, tl, bl, z)) != Z_OK)
3934 inflate_trees_free(*tl, z);
3955 inflate_trees_free(*tl, z);
4000 local int inflate_trees_fixed(bl, bd, tl, td)
4003 inflate_huft * FAR *tl; /* literal/length tree result */
4044 *tl = fixed_tl;
4122 local inflate_codes_statef *inflate_codes_new(bl, bd, tl, td, z)
4124 inflate_huft *tl, *td;
4135 c->ltree = tl;
4409 local int inflate_fast(bl, bd, tl, td, s, z)
4411 inflate_huft *tl, *td;
4440 if ((e = (t = tl + ((uInt)b & ml))->exop) == 0)