HomeSort by relevance Sort by last modified time
    Searched refs:windowBits (Results 1 - 25 of 36) sorted by null

1 2

  /external/freetype/src/gzip/
zlib.h 399 int windowBits,
410 The windowBits parameter is the base two logarithm of the window size
420 usage as a function of windowBits and memLevel.
518 int windowBits));
524 The windowBits parameter is the base two logarithm of the maximum window
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
zlib.h 483 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.
    [all...]
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)
55 state->wbits = windowBits;
56 state->wsize = 1U << windowBits;
inflate.c 144 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 > 15) {
    [all...]
deflate.c 216 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 == 8) windowBits = 9; /* until 256-byte window bug fixed */
    [all...]
  /external/zlib/src/contrib/pascal/
zlibpas.pas 114 function deflateInit2(var strm: z_stream; level, method, windowBits,
126 function inflateInit2(var strm: z_stream; windowBits: Integer): Integer;
132 function inflateReset2(var strm: z_stream; windowBits: Integer): Integer;
137 windowBits: Integer; window: PChar): Integer;
165 level, method, windowBits, memLevel, strategy: Integer;
167 function inflateInit2_(var strm: z_stream; windowBits: Integer;
170 windowBits: Integer; window: PChar;
232 function deflateInit2(var strm: z_stream; level, method, windowBits, memLevel,
235 Result := deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
244 function inflateInit2(var strm: z_stream; windowBits: Integer): Integer
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
zlib.h 541 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.
    [all...]
inflate.c 157 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 && (windowBits < 8 || windowBits > 15)
    [all...]
  /external/libxml2/os400/
wrappers.c 143 _lx_inflateInit2_(z_streamp strm, int windowBits,
150 r = inflateInit2_(strm, windowBits,
157 _lx_deflateInit2_(z_streamp strm, int level, int method, int windowBits,
164 r = deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
  /external/python/cpython2/Modules/zlib/
zlib.h 541 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.
    [all...]
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 = (uInt)windowBits;
65 state->wsize = 1U << windowBits;
inflate.c 157 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 && (windowBits < 8 || windowBits > 15)
    [all...]
  /external/zlib/src/contrib/minizip/
zip.h 227 int windowBits,
244 int windowBits,
254 windowBits,memLevel,,strategy : see parameter strategy in deflateInit2
270 int windowBits,
291 int windowBits,
  /external/zlib/src/
zlib.h 541 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.
    [all...]
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 = (uInt)windowBits;
65 state->wsize = 1U << windowBits;
inflate.c 157 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 && (windowBits < 8 || windowBits > 15)
    [all...]
  /development/ndk/zlib/
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.
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
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.
    [all...]
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 && (windowBits < 8 || windowBits > 15))
    [all...]
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;
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 == 8) windowBits = 9; /* until 256-byte window bug fixed */
    [all...]
  /external/brotli/csharp/org/brotli/dec/
State.cs 145 int windowBits = DecodeWindowBits(state.br);
146 if (windowBits == 9)
149 throw new Org.Brotli.Dec.BrotliRuntimeException("Invalid 'windowBits' code");
151 state.maxRingBufferSize = 1 << windowBits;
  /external/u-boot/include/u-boot/
zlib.h 193 /* Maximum value for windowBits in deflateInit2 and inflateInit2.
203 (1 << (windowBits+2)) + (1 << (memLevel+9))
204 that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values)
210 The memory requirements for inflate are (in bytes) 1 << windowBits
211 that is, 32K for windowBits=15 (default value) plus a few kilobytes
523 int windowBits, int memLevel,
713 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
717 #define inflateInit2(strm, windowBits) \
718 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
  /external/u-boot/lib/zlib/
inflate.c 33 int ZEXPORT inflateInit2_(z_streamp strm, int windowBits, const char *version,
53 if (windowBits < 0) {
55 windowBits = -windowBits;
58 state->wrap = (windowBits >> 4) + 1;
60 if (windowBits < 48) windowBits &= 15;
63 if (windowBits < 8 || windowBits > 15) {
68 state->wbits = (unsigned)windowBits;
    [all...]
deflate.c 210 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
215 int windowBits;
249 if (windowBits < 0) { /* suppress zlib wrapper */
251 windowBits = -windowBits;
254 else if (windowBits > 15) {
256 windowBits -= 16;
260 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
264 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed *
    [all...]

Completed in 3396 milliseconds

1 2