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

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dzlib.h452 int windowBits,
463 The windowBits parameter is the base two logarithm of the window size
473 usage as a function of windowBits and memLevel.
577 extern int inflateInit2 (z_streamp strm, int windowBits);
583 The windowBits parameter is the base two logarithm of the maximum window
586 instead. windowBits must be greater than or equal to the windowBits value
592 windowBits can also be -8..-15 for raw inflate. In this case, -windowBits
602 above on the use in deflateInit2() applies to the magnitude of windowBits
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/
H A Dzlib.h483 int windowBits,
494 The windowBits parameter is the base two logarithm of the window size
500 windowBits can also be -8..-15 for raw deflate. In this case, -windowBits
504 windowBits can also be greater than 15 for optional gzip encoding. Add
505 16 to windowBits to write a simple gzip header and trailer around the
515 usage as a function of windowBits and memLevel.
695 int windowBits));
701 The windowBits parameter is the base two logarithm of the maximum window
704 instead. windowBits mus
[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)
55 state->wbits = windowBits;
56 state->wsize = 1U << windowBits;
H A Dinflate.c144 int ZEXPORT inflateInit2_(strm, windowBits, version, stream_size)
146 int windowBits;
167 if (windowBits < 0) {
169 windowBits = -windowBits;
172 state->wrap = (windowBits >> 4) + 1;
174 if (windowBits < 48) windowBits &= 15;
177 if (windowBits < 8 || windowBits > 1
[all...]
H A Ddeflate.c216 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
221 int windowBits;
255 if (windowBits < 0) { /* suppress zlib wrapper */
257 windowBits = -windowBits;
260 else if (windowBits > 15) {
262 windowBits -= 16;
266 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
270 if (windowBits
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/
H A Dzlib.h483 int windowBits,
494 The windowBits parameter is the base two logarithm of the window size
500 windowBits can also be -8..-15 for raw deflate. In this case, -windowBits
504 windowBits can also be greater than 15 for optional gzip encoding. Add
505 16 to windowBits to write a simple gzip header and trailer around the
515 usage as a function of windowBits and memLevel.
695 int windowBits));
701 The windowBits parameter is the base two logarithm of the maximum window
704 instead. windowBits mus
[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)
55 state->wbits = windowBits;
56 state->wsize = 1U << windowBits;
H A Dinflate.c144 int ZEXPORT inflateInit2_(strm, windowBits, version, stream_size)
146 int windowBits;
167 if (windowBits < 0) {
169 windowBits = -windowBits;
172 state->wrap = (windowBits >> 4) + 1;
174 if (windowBits < 48) windowBits &= 15;
177 if (windowBits < 8 || windowBits > 1
[all...]
H A Ddeflate.c216 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
221 int windowBits;
255 if (windowBits < 0) { /* suppress zlib wrapper */
257 windowBits = -windowBits;
260 else if (windowBits > 15) {
262 windowBits -= 16;
266 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
270 if (windowBits
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/common/
H A Dzlib.h156 /* Maximum value for windowBits in deflateInit2 and inflateInit2 */
162 1 << (windowBits+2) + 1 << (memLevel+9)
163 that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values)
169 The memory requirements for inflate are (in bytes) 1 << windowBits
170 that is, 32K for windowBits=15 (default value) plus a few kilobytes
590 int windowBits,
602 The windowBits parameter is the base two logarithm of the window size
612 usage as a function of windowBits and memLevel.
627 data, or have at least 1<<(windowBits+1) bytes and be writable. If next_in
735 int windowBits));
[all...]
H A Dzlib.c107 /* default windowBits for decompression. MAX_WBITS is for compression only */
734 int deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
739 int windowBits;
771 if (windowBits < 0) { /* undocumented feature: suppress zlib header */
773 windowBits = -windowBits;
776 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
786 s->w_bits = windowBits;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/pascal/
H A Dzlibpas.pas92 function deflateInit2(var strm: z_stream; level, method, windowBits,
101 function inflateInit2(var strm: z_stream; windowBits: Integer): Integer;
108 windowBits: Integer; window: PChar): Integer;
134 level, method, windowBits, memLevel, strategy: Integer;
136 function inflateInit2_(var strm: z_stream; windowBits: Integer;
139 windowBits: Integer; window: PChar;
192 function deflateInit2(var strm: z_stream; level, method, windowBits, memLevel,
195 Result := deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
204 function inflateInit2(var strm: z_stream; windowBits: Integer): Integer;
206 Result := inflateInit2_(strm, windowBits, ZLIB_VERSIO
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/pascal/
H A Dzlibpas.pas92 function deflateInit2(var strm: z_stream; level, method, windowBits,
101 function inflateInit2(var strm: z_stream; windowBits: Integer): Integer;
108 windowBits: Integer; window: PChar): Integer;
134 level, method, windowBits, memLevel, strategy: Integer;
136 function inflateInit2_(var strm: z_stream; windowBits: Integer;
139 windowBits: Integer; window: PChar;
192 function deflateInit2(var strm: z_stream; level, method, windowBits, memLevel,
195 Result := deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
204 function inflateInit2(var strm: z_stream; windowBits: Integer): Integer;
206 Result := inflateInit2_(strm, windowBits, ZLIB_VERSIO
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/pppdump/
H A Dzlib.h85 /* 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 Dzlib.c68 /* 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;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/zlib_inflate/
H A Dinflate.c49 int zlib_inflateInit2(z_streamp strm, int windowBits) argument
59 if (windowBits < 0) {
61 windowBits = -windowBits;
64 state->wrap = (windowBits >> 4) + 1;
66 if (windowBits < 8 || windowBits > 15) {
69 state->wbits = (unsigned)windowBits;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/minizip/
H A Dzip.h190 int windowBits,
198 windowBits,memLevel,,strategy : see parameter strategy in deflateInit2
H A Dzip.c694 windowBits, memLevel, strategy,
707 int windowBits;
867 if (windowBits>0)
868 windowBits = -windowBits;
871 Z_DEFLATED, windowBits, memLevel, strategy);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/minizip/
H A Dzip.h190 int windowBits,
198 windowBits,memLevel,,strategy : see parameter strategy in deflateInit2
H A Dzip.c694 windowBits, memLevel, strategy,
707 int windowBits;
867 if (windowBits>0)
868 windowBits = -windowBits;
871 Z_DEFLATED, windowBits, memLevel, strategy);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/zlib_deflate/
H A Ddeflate.c171 int windowBits,
193 if (windowBits < 0) { /* undocumented feature: suppress zlib header */
195 windowBits = -windowBits;
198 windowBits < 9 || windowBits > 15 || level < 0 || level > 9 ||
207 s->w_bits = windowBits;
167 zlib_deflateInit2( z_streamp strm, int level, int method, int windowBits, int memLevel, int strategy ) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/as400/
H A Dzlib.inc228 D windowBits 10I 0 value log2(window size)
263 D windowBits 10I 0 value log2(window size)
286 D windowBits 10I 0 value Log2(buffer size)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/as400/
H A Dzlib.inc228 D windowBits 10I 0 value log2(window size)
263 D windowBits 10I 0 value log2(window size)
286 D windowBits 10I 0 value Log2(buffer size)

Completed in 219 milliseconds