Lines Matching refs:state
72 struct inflate_state FAR *state; in inflate_fast() local
99 state = (struct inflate_state FAR *)strm->state; in inflate_fast()
114 dmax = state->dmax; in inflate_fast()
116 wsize = state->wsize; in inflate_fast()
117 whave = state->whave; in inflate_fast()
118 write = state->write; in inflate_fast()
119 window = state->window; in inflate_fast()
120 hold = state->hold; in inflate_fast()
121 bits = state->bits; in inflate_fast()
122 lcode = state->lencode; in inflate_fast()
123 dcode = state->distcode; in inflate_fast()
124 lmask = (1U << state->lenbits) - 1; in inflate_fast()
125 dmask = (1U << state->distbits) - 1; in inflate_fast()
188 state->mode = BAD; in inflate_fast()
200 state->mode = BAD; in inflate_fast()
305 state->mode = BAD; in inflate_fast()
315 state->mode = TYPE; in inflate_fast()
320 state->mode = BAD; in inflate_fast()
337 state->hold = hold; in inflate_fast()
338 state->bits = bits; in inflate_fast()