Lines Matching refs:extra
528 /* length code -- get extra bits, if any */
529 state->extra = (unsigned)(here.op) & 15;
530 if (state->extra != 0) {
531 NEEDBITS(state->extra);
532 state->length += BITS(state->extra);
533 DROPBITS(state->extra);
561 /* get distance extra bits, if any */
562 state->extra = (unsigned)(here.op) & 15;
563 if (state->extra != 0) {
564 NEEDBITS(state->extra);
565 state->offset += BITS(state->extra);
566 DROPBITS(state->extra);