Lines Matching refs:state
90 struct inflate_state *state; in inflate_fast() local
117 state = (struct inflate_state *)strm->state; in inflate_fast()
124 dmax = state->dmax; in inflate_fast()
126 wsize = state->wsize; in inflate_fast()
127 whave = state->whave; in inflate_fast()
128 write = state->write; in inflate_fast()
129 window = state->window; in inflate_fast()
130 hold = state->hold; in inflate_fast()
131 bits = state->bits; in inflate_fast()
132 lcode = state->lencode; in inflate_fast()
133 dcode = state->distcode; in inflate_fast()
134 lmask = (1U << state->lenbits) - 1; in inflate_fast()
135 dmask = (1U << state->distbits) - 1; in inflate_fast()
194 state->mode = BAD; in inflate_fast()
205 state->mode = BAD; in inflate_fast()
313 state->mode = BAD; in inflate_fast()
322 state->mode = TYPE; in inflate_fast()
327 state->mode = BAD; in inflate_fast()
344 state->hold = hold; in inflate_fast()
345 state->bits = bits; in inflate_fast()