Home | History | Annotate | Download | only in zlib

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
715 state->head->extra = Z_NULL;
716 state->mode = EXTRA;
717 case EXTRA:
723 state->head->extra != Z_NULL) {
725 zmemcpy(state->head->extra + len, next,
1053 state->extra = (unsigned)(here.op) & 15;
1056 if (state->extra) {
1057 NEEDBITS(state->extra);
1058 state->length += BITS(state->extra);
1059 DROPBITS(state->extra);
1060 state->back += state->extra;
1090 state->extra = (unsigned)(here.op) & 15;
1093 if (state->extra) {
1094 NEEDBITS(state->extra);
1095 state->offset += BITS(state->extra);
1096 DROPBITS(state->extra);
1097 state->back += state->extra;