Lines Matching refs:extra
19 * - Remove unnecessary second byte pull from length extra in inffast.c
34 * - Remove distance extra == 0 check in inflate_fast()--only helps for lengths
735 state->head->extra = Z_NULL;
736 state->mode = EXTRA;
737 case EXTRA:
743 state->head->extra != Z_NULL) {
745 zmemcpy(state->head->extra + len, next,
1072 state->extra = (unsigned)(here.op) & 15;
1075 if (state->extra) {
1076 NEEDBITS(state->extra);
1077 state->length += BITS(state->extra);
1078 DROPBITS(state->extra);
1079 state->back += state->extra;
1109 state->extra = (unsigned)(here.op) & 15;
1112 if (state->extra) {
1113 NEEDBITS(state->extra);
1114 state->offset += BITS(state->extra);
1115 DROPBITS(state->extra);
1116 state->back += state->extra;