Home | History | Annotate | Download | only in infback9

Lines Matching refs:FAR

19 int ZEXPORT inflateBack9Init_(z_stream FAR *strm, unsigned char FAR *window,
21 struct inflate_state FAR *state;
34 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
212 int ZEXPORT inflateBack9(z_stream FAR *strm, in_func in, void FAR *in_desc,
213 out_func out, void FAR *out_desc) {
214 struct inflate_state FAR *state;
215 z_const unsigned char FAR *next; /* next input */
216 unsigned char FAR *put; /* next output */
222 unsigned char FAR *window; /* allocated sliding window, if needed */
229 unsigned char FAR *from; /* where to copy match bytes from */
230 code const FAR *lencode; /* starting table for length/literal codes */
231 code const FAR *distcode; /* starting table for distance codes */
245 state = (struct inflate_state FAR *)strm->state;
360 lencode = (code const FAR *)(state->next);
435 lencode = (code const FAR *)(state->next);
444 distcode = (code const FAR *)(state->next);
544 strm->msg = (char *)"invalid distance too far back";
596 int ZEXPORT inflateBack9End(z_stream FAR *strm) {