Lines Matching defs:window
25 windowBits is in the range 8..15, and window is a user-supplied
26 window and output buffer that is 2**windowBits bytes.
29 unsigned char FAR *window, const char *version, int stream_size)
36 if (strm == Z_NULL || window == Z_NULL ||
62 state->window = window;
202 /* Assure that some output space is available, by writing out the window
208 put = state->window; \
219 strm provides the memory allocation functions and window buffer on input,
225 filled the window with output, or when it completes with data in the
226 window, it calls out() to write out the data. The application must not
228 returns. The application must not change the window/output buffer until
277 put = state->window;
576 /* copy match from window to output */
601 if (out(out_desc, state->window, state->wsize - left))