Lines Matching refs:window
383 read or consumed. The allocation of a sliding window will be deferred to
472 call. Z_FINISH also informs inflate to not maintain a sliding window if the
475 enough output space is provided, then a sliding window will be allocated and
484 memory for a sliding window when Z_FINISH is used.
552 The windowBits parameter is the base two logarithm of the window size
559 window size of 256 bytes) is not supported. As a result, a request for 8
560 will result in 9 (a 512-byte window). In that case, providing 8 to
567 determines the window size. deflate() will then generate raw deflate data
578 For raw deflate or gzip encoding, a request for a 256-byte window is
580 transmitting the window size to the decompressor.
635 discarded, for example if the dictionary is larger than the window size
638 addition, the current implementation of deflate will use at most the window
666 deflateGetDictionary() may return a length less than the window size, even
667 when more than the window size in input has been provided. It may return up
669 manages the sliding window and lookahead for matches, where matches can be
670 up to 258 bytes long. If the application needs the last window-size bytes of
841 The windowBits parameter is the base two logarithm of the maximum window
846 deflateInit2() was not used. If a compressed stream with a larger window
848 Z_DATA_ERROR instead of trying to allocate a larger window.
850 windowBits can also be zero to request that inflate use the window size in
854 determines the window size. inflate() will then process raw deflate data,
899 window and there is already data in the window, then the provided dictionary
976 the wrap and window size requests. The windowBits parameter is interpreted
977 the same as it is for inflateInit2. If the window size is changed, then the
978 memory allocated for the window is freed, and the window will be reallocated
1077 unsigned char FAR *window);
1083 logarithm of the window size, in the range 8..15. window is a caller
1085 assured that deflate was used with small window sizes, windowBits must be 15
1086 and a 32K byte window must be supplied to be able to decompress general
1108 output and the sliding window by simply making the window itself the output
1114 and to initialize the state with the user-provided window buffer.
1139 out() are permitted to change the contents of the window provided to
1141 The length written by out() will be at most the window size. Any non-zero
1795 unsigned char FAR *window,
1809 # define z_inflateBackInit(strm, windowBits, window) \
1810 inflateBackInit_((strm), (windowBits), (window), \
1823 # define inflateBackInit(strm, windowBits, window) \
1824 inflateBackInit_((strm), (windowBits), (window), \