Home | History | Annotate | Download | only in zlib-1.2.3

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
678 state->head->extra = Z_NULL;
679 state->mode = EXTRA;
680 case EXTRA:
686 state->head->extra != Z_NULL) {
688 zmemcpy(state->head->extra + len, next,
991 state->extra = (unsigned)(this.op) & 15;
994 if (state->extra) {
995 NEEDBITS(state->extra);
996 state->length += BITS(state->extra);
997 DROPBITS(state->extra);
1024 state->extra = (unsigned)(this.op) & 15;
1027 if (state->extra) {
1028 NEEDBITS(state->extra);
1029 state->offset += BITS(state->extra);
1030 DROPBITS(state->extra);