Searched refs:windowBits (Results 1 - 11 of 11) sorted by relevance
| /illumos-gate/usr/src/uts/common/zmod/ |
| H A D | zlib.h | 485 int windowBits, 496 The windowBits parameter is the base two logarithm of the window size 502 windowBits can also be -8..-15 for raw deflate. In this case, -windowBits 506 windowBits can also be greater than 15 for optional gzip encoding. Add 507 16 to windowBits to write a simple gzip header and trailer around the 517 usage as a function of windowBits and memLevel. 697 int windowBits)); 703 The windowBits parameter is the base two logarithm of the maximum window 706 instead. windowBits mus [all...] |
| H A D | inflate.c | 151 int ZEXPORT inflateInit2_(strm, windowBits, version, stream_size) 153 int windowBits; 174 if (windowBits < 0) { 176 windowBits = -windowBits; 179 state->wrap = (windowBits >> 4) + 1; 181 if (windowBits < 48) windowBits &= 15; 184 if (windowBits < 8 || windowBits > 1 [all...] |
| H A D | deflate.c | 222 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, 227 int windowBits; 261 if (windowBits < 0) { /* suppress zlib wrapper */ 263 windowBits = -windowBits; 266 else if (windowBits > 15) { 268 windowBits -= 16; 272 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 || 276 if (windowBits [all...] |
| /illumos-gate/usr/src/boot/lib/libz/ |
| H A D | zlib.h | 530 int windowBits, 541 The windowBits parameter is the base two logarithm of the window size 547 windowBits can also be -8..-15 for raw deflate. In this case, -windowBits 551 windowBits can also be greater than 15 for optional gzip encoding. Add 552 16 to windowBits to write a simple gzip header and trailer around the 562 as a function of windowBits and memLevel. 771 int windowBits)); 777 The windowBits parameter is the base two logarithm of the maximum window 780 instead. windowBits mus [all...] |
| H A D | inflate.c | 142 int ZEXPORT inflateReset2(strm, windowBits) 144 int windowBits; 153 /* extract wrap request from windowBits parameter */ 154 if (windowBits < 0) { 156 windowBits = -windowBits; 159 wrap = (windowBits >> 4) + 1; 161 if (windowBits < 48) 162 windowBits &= 15; 167 if (windowBits [all...] |
| H A D | infback.c | 25 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 = windowBits; 65 state->wsize = 1U << windowBits;
|
| H A D | deflate.c | 213 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, 218 int windowBits; 261 if (windowBits < 0) { /* suppress zlib wrapper */ 263 windowBits = -windowBits; 266 else if (windowBits > 15) { 268 windowBits -= 16; 272 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 || 276 if (windowBits [all...] |
| /illumos-gate/usr/src/uts/common/io/ppp/spppcomp/ |
| H A D | zlib.h | 193 * Maximum value for windowBits in deflateInit2 and inflateInit2 204 * 1 << (windowBits+2) + 1 << (memLevel+9) 206 * that is: 128K for windowBits=15 + 128K for memLevel = 8 (default 215 * The memory requirements for inflate are (in bytes) 1 << windowBits 216 * that is, 32K for windowBits=15 (default value) plus a few kilobytes 741 * int windowBits, 753 * The windowBits parameter is the base two logarithm of the window 765 * windowBits and memLevel. 782 * entire input data, or have at least 1<<(windowBits+1) bytes and be 899 * int windowBits)); [all...] |
| H A D | zlib.c | 119 /* default windowBits for decompression. MAX_WBITS is for compression only */ 850 int deflateInit2_(strm, level, method, windowBits, memLevel, strategy, 855 int windowBits; 893 if (windowBits < 0) { /* undocumented feature: suppress zlib header */ 895 windowBits = -windowBits; 898 windowBits <= 8 || windowBits > 15 || level < 0 || level > 9 || 909 s->w_bits = windowBits;
|
| /illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
| H A D | zlib.h | 85 /* Maximum value for windowBits in deflateInit2 and inflateInit2 */ 91 1 << (windowBits+2) + 1 << (memLevel+9) 92 that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values) 98 The memory requirements for inflate are (in bytes) 1 << windowBits 99 that is, 32K for windowBits=15 (default value) plus a few kilobytes 444 int windowBits, 456 The windowBits parameter is the base two logarithm of the window size 466 usage as a function of windowBits and memLevel. 483 data, or have at least 1<<(windowBits+1) bytes and be writable. If next_in 536 int windowBits)); [all...] |
| H A D | zlib.c | 68 /* default windowBits for decompression. MAX_WBITS is for compression only */ 589 int deflateInit2 (strm, level, method, windowBits, memLevel, 594 int windowBits; 610 if (windowBits < 0) { /* undocumented feature: suppress zlib header */ 612 windowBits = -windowBits; 615 windowBits < 8 || windowBits > 15 || level < 1 || level > 9) { 624 s->w_bits = windowBits;
|
Completed in 135 milliseconds