Lines Matching refs:FAR
20 z_stream FAR *strm; in inflateBack9Init_()
21 unsigned char FAR *window;
25 struct inflate_state FAR *state;
38 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
218 z_stream FAR *strm; in inflateBack9()
220 void FAR *in_desc;
222 void FAR *out_desc;
224 struct inflate_state FAR *state;
225 z_const unsigned char FAR *next; /* next input */
226 unsigned char FAR *put; /* next output */
232 unsigned char FAR *window; /* allocated sliding window, if needed */
239 unsigned char FAR *from; /* where to copy match bytes from */
240 code const FAR *lencode; /* starting table for length/literal codes */
241 code const FAR *distcode; /* starting table for distance codes */
255 state = (struct inflate_state FAR *)strm->state;
370 lencode = (code const FAR *)(state->next);
445 lencode = (code const FAR *)(state->next);
454 distcode = (code const FAR *)(state->next);
607 z_stream FAR *strm; in inflateBack9End()