Home | History | Annotate | Download | only in src

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
730 state->head->extra = Z_NULL;
731 state->mode = EXTRA;
732 case EXTRA:
738 state->head->extra != Z_NULL) {
740 zmemcpy(state->head->extra + len, next,
1067 state->extra = (unsigned)(here.op) & 15;
1070 if (state->extra) {
1071 NEEDBITS(state->extra);
1072 state->length += BITS(state->extra);
1073 DROPBITS(state->extra);
1074 state->back += state->extra;
1104 state->extra = (unsigned)(here.op) & 15;
1107 if (state->extra) {
1108 NEEDBITS(state->extra);
1109 state->offset += BITS(state->extra);
1110 DROPBITS(state->extra);
1111 state->back += state->extra;