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
731 state->head->extra = Z_NULL;
732 state->mode = EXTRA;
733 case EXTRA:
739 state->head->extra != Z_NULL) {
741 zmemcpy(state->head->extra + len, next,
1068 state->extra = (unsigned)(here.op) & 15;
1071 if (state->extra) {
1072 NEEDBITS(state->extra);
1073 state->length += BITS(state->extra);
1074 DROPBITS(state->extra);
1075 state->back += state->extra;
1105 state->extra = (unsigned)(here.op) & 15;
1108 if (state->extra) {
1109 NEEDBITS(state->extra);
1110 state->offset += BITS(state->extra);
1111 DROPBITS(state->extra);
1112 state->back += state->extra;