Lines Matching full:far
72 struct inflate_state FAR *state; in inflate_fast()
73 unsigned char FAR *in; /* local strm->next_in */ in inflate_fast()
74 unsigned char FAR *last; /* while in < last, enough input available */ in inflate_fast()
75 unsigned char FAR *out; /* local strm->next_out */ in inflate_fast()
76 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ in inflate_fast()
77 unsigned char FAR *end; /* while out < end, enough space available */ in inflate_fast()
84 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ in inflate_fast()
87 code const FAR *lcode; /* local strm->lencode */ in inflate_fast()
88 code const FAR *dcode; /* local strm->distcode */ in inflate_fast()
96 unsigned char FAR *from; /* where to copy match from */ in inflate_fast()
99 state = (struct inflate_state FAR *)strm->state; in inflate_fast()
187 strm->msg = (char *)"invalid distance too far back"; in inflate_fast()
199 strm->msg = (char *)"invalid distance too far back"; in inflate_fast()
325 /* return unused bytes (on entry, bits < 8, so in won't go too far back) */ in inflate_fast()