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;
169 /* Assure that some output space is available, by writing out the window
175 put = window; \
186 strm provides the memory allocation functions and window buffer on input,
192 filled the window with output, or when it completes with data in the
193 window, it calls out() to write out the data. The application must not
195 returns. The application must not change the window/output buffer until
221 int wrap; /* true if the window has wrapped */
222 unsigned char FAR *window; /* allocated sliding window, if needed */
252 window = state->window;
257 put = window;
550 /* copy match from window to output */
575 if (out(out_desc, window, (unsigned)(WSIZE - left)))