Lines Matching defs:window

383    read or consumed.  The allocation of a sliding window will be deferred to
471 call. Z_FINISH also informs inflate to not maintain a sliding window if the
474 enough output space is provided, then a sliding window will be allocated and
483 memory for a sliding window when Z_FINISH is used.
551 The windowBits parameter is the base two logarithm of the window size
558 window size of 256 bytes) is not supported. As a result, a request for 8
559 will result in 9 (a 512-byte window). In that case, providing 8 to
566 determines the window size. deflate() will then generate raw deflate data
577 For raw deflate or gzip encoding, a request for a 256-byte window is
579 transmitting the window size to the decompressor.
634 discarded, for example if the dictionary is larger than the window size
637 addition, the current implementation of deflate will use at most the window
665 deflateGetDictionary() may return a length less than the window size, even
666 when more than the window size in input has been provided. It may return up
668 manages the sliding window and lookahead for matches, where matches can be
669 up to 258 bytes long. If the application needs the last window-size bytes of
839 The windowBits parameter is the base two logarithm of the maximum window
844 deflateInit2() was not used. If a compressed stream with a larger window
846 Z_DATA_ERROR instead of trying to allocate a larger window.
848 windowBits can also be zero to request that inflate use the window size in
852 determines the window size. inflate() will then process raw deflate data,
897 window and there is already data in the window, then the provided dictionary
973 the wrap and window size requests. The windowBits parameter is interpreted
974 the same as it is for inflateInit2. If the window size is changed, then the
975 memory allocated for the window is freed, and the window will be reallocated
1074 unsigned char FAR *window));
1080 logarithm of the window size, in the range 8..15. window is a caller
1082 assured that deflate was used with small window sizes, windowBits must be 15
1083 and a 32K byte window must be supplied to be able to decompress general
1105 output and the sliding window by simply making the window itself the output
1111 and to initialize the state with the user-provided window buffer.
1136 out() are permitted to change the contents of the window provided to
1138 The length written by out() will be at most the window size. Any non-zero
1792 unsigned char FAR *window,
1806 # define z_inflateBackInit(strm, windowBits, window) \
1807 inflateBackInit_((strm), (windowBits), (window), \
1820 # define inflateBackInit(strm, windowBits, window) \
1821 inflateBackInit_((strm), (windowBits), (window), \