Lines Matching refs:state
51 struct inflate_state FAR *state; in inflate_fast() local
78 state = (struct inflate_state FAR *)strm->state; in inflate_fast()
85 dmax = state->dmax; in inflate_fast()
87 wsize = state->wsize; in inflate_fast()
88 whave = state->whave; in inflate_fast()
89 wnext = state->wnext; in inflate_fast()
90 window = state->window; in inflate_fast()
91 hold = state->hold; in inflate_fast()
92 bits = state->bits; in inflate_fast()
93 lcode = state->lencode; in inflate_fast()
94 dcode = state->distcode; in inflate_fast()
95 lmask = (1U << state->lenbits) - 1; in inflate_fast()
96 dmask = (1U << state->distbits) - 1; in inflate_fast()
159 state->mode = BAD; in inflate_fast()
170 if (state->sane) { in inflate_fast()
173 state->mode = BAD; in inflate_fast()
269 state->mode = BAD; in inflate_fast()
279 state->mode = TYPE; in inflate_fast()
284 state->mode = BAD; in inflate_fast()
301 state->hold = hold; in inflate_fast()
302 state->bits = bits; in inflate_fast()