Searched refs:windowBits (Results 1 - 7 of 7) sorted by relevance

/freebsd-13-stable/sys/netgraph/
H A Dng_deflate.h46 u_char windowBits; /* log2(Window size) */ member in struct:ng_deflate_config
52 { "windowBits", &ng_parse_uint8_type }, \
H A Dng_deflate.c235 if (cfg->windowBits < 8 || cfg->windowBits > 15)
238 cfg->windowBits = 0;
258 -cfg->windowBits, 8,
268 -cfg->windowBits)) != Z_OK) {
/freebsd-13-stable/sys/contrib/zlib/
H A Dzlib.h541 int windowBits,
552 The windowBits parameter is the base two logarithm of the window size
558 For the current implementation of deflate(), a windowBits value of 8 (a
566 windowBits can also be -8..-15 for raw deflate. In this case, -windowBits
570 windowBits can also be greater than 15 for optional gzip encoding. Add
571 16 to windowBits to write a simple gzip header and trailer around the
586 as a function of windowBits and memLevel.
834 int windowBits));
840 The windowBits paramete
[all...]
H A Dinfback.c25 windowBits is in the range 8..15, and window is a user-supplied
26 window and output buffer that is 2**windowBits bytes.
28 int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size)
30 int windowBits;
41 windowBits < 8 || windowBits > 15)
64 state->wbits = (uInt)windowBits;
65 state->wsize = 1U << windowBits;
H A Dinflate.c157 int ZEXPORT inflateReset2(strm, windowBits)
159 int windowBits;
168 /* extract wrap request from windowBits parameter */
169 if (windowBits < 0) {
171 windowBits = -windowBits;
174 wrap = (windowBits >> 4) + 5;
176 if (windowBits < 48)
177 windowBits &= 15;
182 if (windowBits
[all...]
H A Ddeflate.c243 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
248 int windowBits;
291 if (windowBits < 0) { /* suppress zlib wrapper */
293 windowBits = -windowBits;
296 else if (windowBits > 15) {
298 windowBits -= 16;
302 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
303 strategy < 0 || strategy > Z_FIXED || (windowBits
[all...]
/freebsd-13-stable/sys/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.c282 int windowBits, int memLevel,
287 return deflateInit2_(strm, level, method, windowBits, memLevel, strategy, version, stream_size);
513 int windowBits; member in struct:__anon11181
611 ZEXTERN int ZEXPORT z_inflateInit2_ OF((z_streamp strm, int windowBits, argument
615 return inflateInit2_(strm, windowBits, version, stream_size);
619 LOG_WRAPPERD("- inflateInit2 windowBits=%d\n", windowBits);
623 zwd->windowBits = windowBits;
667 int windowBits))
281 z_deflateInit2_(z_streamp strm, int level, int method, int windowBits, int memLevel, int strategy, const char *version, int stream_size) argument
666 z_inflateReset2(z_streamp strm, int windowBits) argument
1048 z_inflateBackInit_(z_streamp strm, int windowBits, unsigned char FAR *window, const char *version, int stream_size) argument
[all...]

Completed in 130 milliseconds