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

/freebsd-current/sys/netgraph/
H A Dng_deflate.h44 u_char windowBits; /* log2(Window size) */ member in struct:ng_deflate_config
50 { "windowBits", &ng_parse_uint8_type }, \
H A Dng_deflate.c233 if (cfg->windowBits < 8 || cfg->windowBits > 15)
236 cfg->windowBits = 0;
256 -cfg->windowBits, 8,
266 -cfg->windowBits)) != Z_OK) {
/freebsd-current/sys/contrib/zlib/
H A Dzlib.h542 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.
835 int windowBits);
841 The windowBits paramete
[all...]
H A Dinflate.c141 int ZEXPORT inflateReset2(z_streamp strm, int windowBits) { argument
149 /* extract wrap request from windowBits parameter */
150 if (windowBits < 0) {
151 if (windowBits < -15)
154 windowBits = -windowBits;
157 wrap = (windowBits >> 4) + 5;
159 if (windowBits < 48)
160 windowBits &= 15;
165 if (windowBits
178 inflateInit2_(z_streamp strm, int windowBits, const char *version, int stream_size) argument
[all...]
H A Dinfback.c22 windowBits is in the range 8..15, and window is a user-supplied
23 window and output buffer that is 2**windowBits bytes.
25 int ZEXPORT inflateBackInit_(z_streamp strm, int windowBits, argument
34 windowBits < 8 || windowBits > 15)
57 state->wbits = (uInt)windowBits;
58 state->wsize = 1U << windowBits;
H A Ddeflate.c380 int windowBits, int memLevel, int strategy,
414 if (windowBits < 0) { /* suppress zlib wrapper */
416 if (windowBits < -15)
418 windowBits = -windowBits;
421 else if (windowBits > 15) {
423 windowBits -= 16;
427 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
428 strategy < 0 || strategy > Z_FIXED || (windowBits
379 deflateInit2_(z_streamp strm, int level, int method, int windowBits, int memLevel, int strategy, const char *version, int stream_size) argument
[all...]
/freebsd-current/sys/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.c291 int windowBits, int memLevel,
296 return deflateInit2_(strm, level, method, windowBits, memLevel, strategy, version, stream_size);
528 int windowBits; member in struct:__anon351
626 ZEXTERN int ZEXPORT z_inflateInit2_ OF((z_streamp strm, int windowBits, argument
630 return inflateInit2_(strm, windowBits, version, stream_size);
634 LOG_WRAPPERD("- inflateInit2 windowBits=%d\n", windowBits);
638 zwd->windowBits = windowBits;
682 int windowBits))
290 z_deflateInit2_(z_streamp strm, int level, int method, int windowBits, int memLevel, int strategy, const char *version, int stream_size) argument
681 z_inflateReset2(z_streamp strm, int windowBits) argument
1063 z_inflateBackInit_(z_streamp strm, int windowBits, unsigned char FAR *window, const char *version, int stream_size) argument
[all...]
/freebsd-current/contrib/libfido2/fuzz/
H A Dwrap.c656 (z_streamp strm, int level, int method, int windowBits, int memLevel,
659 (strm, level, method, windowBits, memLevel, strategy, version,

Completed in 85 milliseconds