Home | History | Annotate | Download | only in net

Lines Matching refs:uIntf

3806     uIntf *,                    /* 19 code lengths */
3807 uIntf *, /* bits tree desired/actual depth */
3815 uIntf *, /* that many (total) code lengths */
3816 uIntf *, /* literal desired/actual bit depth */
3817 uIntf *, /* distance desired/actual bit depth */
3824 uIntf *, /* literal desired/actual bit depth */
3825 uIntf *, /* distance desired/actual bit depth */
3902 uIntf *blens; /* bit lengths of codes */
4176 if ((s->sub.trees.blens = (uIntf*)ZALLOC(z, t, sizeof(uInt))) == Z_NULL)
4452 uIntf *, /* code lengths in bits */
4455 const uIntf *, /* list of base values for non-simple codes */
4456 const uIntf *, /* list of extra bits for non-simple codes */
4458 uIntf *, /* maximum lookup bits (returns actual) */
4461 uIntf * ); /* space for values */
4516 local int huft_build(uIntf *b, /* code lengths in bits (all assumed <= BMAX) */
4519 const uIntf *d, /* list of base values for non-simple codes */
4520 const uIntf *e, /* list of extra bits for non-simple codes */
4522 uIntf *m, /* maximum lookup bits, returns actual */
4525 uIntf *v) /* working area: values in order of bit length */
4543 uIntf *p; /* pointer into c[], b[], or v[] */
4549 uIntf *xp; /* pointer into x */
4719 int inflate_trees_bits(uIntf *c, /* 19 code lengths */
4720 uIntf *bb, /* bits tree desired/actual depth */
4727 uIntf *v; /* work area for huft_build */
4729 if ((v = (uIntf*)ZALLOC(z, 19, sizeof(uInt))) == Z_NULL)
4731 r = huft_build(c, 19, 19, (uIntf*)Z_NULL, (uIntf*)Z_NULL,
4747 uIntf *c, /* number of distance codes */
4748 uIntf *bl, /* that many (total) code lengths */
4749 uIntf *bd, /* literal desired/actual bit depth */
4757 uIntf *v; /* work area for huft_build */
4760 if ((v = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL)
4977 uIntf *bl, /* literal desired/actual bit depth */
4978 uIntf *bd, /* distance desired/actual bit depth */
4989 uIntf *c; /* length list for huft_build */
4990 uIntf *v; /* work area for huft_build */
4993 if ((c = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL)
4995 if ((v = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL)