Lines Matching defs:window
17 window is a user-supplied window and output buffer that is 64K bytes.
19 int ZEXPORT inflateBack9Init_(z_stream FAR *strm, unsigned char FAR *window,
26 if (strm == Z_NULL || window == Z_NULL)
39 state->window = window;
170 /* Assure that some output space is available, by writing out the window
176 put = window; \
187 strm provides the memory allocation functions and window buffer on input,
193 filled the window with output, or when it completes with data in the
194 window, it calls out() to write out the data. The application must not
196 returns. The application must not change the window/output buffer until
222 int wrap; /* true if the window has wrapped */
223 unsigned char FAR *window; /* allocated sliding window, if needed */
253 window = state->window;
258 put = window;
551 /* copy match from window to output */
576 if (out(out_desc, window, (unsigned)(WSIZE - left)))