Home | History | Annotate | Download | only in gzip

Lines Matching refs:uIntf

31     uIntf *,            /* code lengths in bits */
34 const uIntf *, /* list of base values for non-simple codes */
35 const uIntf *, /* list of extra bits for non-simple codes */
37 uIntf *, /* maximum lookup bits (returns actual) */
40 uIntf * )); /* space for values */
96 uIntf *b, /* code lengths in bits (all assumed <= BMAX) */
99 const uIntf *d, /* list of base values for non-simple codes */
100 const uIntf *e, /* list of extra bits for non-simple codes */
102 uIntf *m, /* maximum lookup bits, returns actual */
105 uIntf *v /* working area: values in order of bit length */
123 register uIntf *p; /* pointer into c[], b[], or v[] */
129 uIntf *xp; /* pointer into x */
300 uIntf *c, /* 19 code lengths */
301 uIntf *bb, /* bits tree desired/actual depth */
309 uIntf *v; /* work area for huft_build */
311 if ((v = (uIntf*)ZALLOC(z, 19, sizeof(uInt))) == Z_NULL)
313 r = huft_build(c, 19, 19, (uIntf*)Z_NULL, (uIntf*)Z_NULL,
330 uIntf *c, /* that many (total) code lengths */
331 uIntf *bl, /* literal desired/actual bit depth */
332 uIntf *bd, /* distance desired/actual bit depth */
341 uIntf *v; /* work area for huft_build */
344 if ((v = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL)
410 uIntf *bl, /* literal desired/actual bit depth */
411 uIntf *bd, /* distance desired/actual bit depth */
423 uIntf *c; /* length list for huft_build */
424 uIntf *v; /* work area for huft_build */
427 if ((c = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL)
429 if ((v = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL)