Lines Matching refs:base
1551 int extra_base; /* base index for extra_bits */
1856 int base = desc->stat_desc->extra_base;
1883 if (n >= base) xbits = extra[n-base];
2664 uInt Base; /* literal, length base, or distance base */
3182 cannot be used though, since there is no length base or extra bits
3607 #define base more.Base
3617 uIntf *, /* list of base values for non-simple codes */
3695 uIntf *d; /* list of base values for non-simple codes */
3861 r.base = *p++; /* simple code is just the value */
3866 r.base = d[*p++ - s];
4077 #define base more.Base
4089 LENEXT, /* i: getting length extra (have base) */
4191 c->sub.lit = t->base;
4192 Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ?
4194 "inflate: literal 0x%02x\n", t->base));
4201 c->len = t->base;
4221 case LENEXT: /* i: getting length extra (have base) */
4239 c->sub.copy.dist = t->base;
4395 #define base more.Base
4443 Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ?
4445 "inflate: * literal 0x%02x\n", t->base));
4446 *q++ = (Byte)t->base;
4456 c = t->base + ((uInt)b & inflate_mask[e]);
4460 /* decode distance base of block to copy */
4467 /* get extra bits to add to distance base */
4470 d = t->base + ((uInt)b & inflate_mask[e]);
4517 Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ?
4519 "inflate: * literal 0x%02x\n", t->base));
4520 *q++ = (Byte)t->base;