Home | History | Annotate | Download | only in masmx64

Lines Matching refs:state

53         state->mode == LEN

57 state->bits < 8
59 On return, state->mode is one of:
102 /*116 72 */ unsigned status; /* set when state chng*/
110 struct inflate_state FAR *state;
124 /* copy state to local variables */
125 state = (struct inflate_state FAR *)strm->state;
132 ar.wsize = state->wsize;
133 ar.write = state->wnext;
134 ar.window = state->window;
135 ar.hold = state->hold;
136 ar.bits = state->bits;
137 ar.lcode = state->lencode;
138 ar.dcode = state->distcode;
139 ar.lmask = (1U << state->lenbits) - 1;
140 ar.dmask = (1U << state->distbits) - 1;
160 state->mode = BAD;
163 state->mode = TYPE;
172 /* update state and return */
181 state->hold = (unsigned long)ar.hold;
182 state->bits = ar.bits;