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