Lines Matching refs:extra
235 unsigned extra; /* extra bits needed */
513 /* length code -- get extra bits, if any */
514 extra = (unsigned)(here.op) & 31;
515 if (extra != 0) {
516 NEEDBITS(extra);
517 length += BITS(extra);
518 DROPBITS(extra);
546 /* get distance extra bits, if any */
547 extra = (unsigned)(here.op) & 15;
548 if (extra != 0) {
549 NEEDBITS(extra);
550 offset += BITS(extra);
551 DROPBITS(extra);