Lines Matching defs:extra
226 unsigned extra; /* extra bits needed */
504 /* length code -- get extra bits, if any */
505 extra = (unsigned)(here.op) & 31;
506 if (extra != 0) {
507 NEEDBITS(extra);
508 length += BITS(extra);
509 DROPBITS(extra);
537 /* get distance extra bits, if any */
538 extra = (unsigned)(here.op) & 15;
539 if (extra != 0) {
540 NEEDBITS(extra);
541 offset += BITS(extra);
542 DROPBITS(extra);