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

/external/libxml2/os400/
H A Dwrappers.c143 _lx_inflateInit2_(z_streamp strm, int windowBits, argument
150 r = inflateInit2_(strm, windowBits,
157 _lx_deflateInit2_(z_streamp strm, int level, int method, int windowBits, argument
164 r = deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_infback.c25 windowBits is in the range 8..15, and window is a user-supplied
26 window and output buffer that is 2**windowBits bytes.
30 int windowBits,
41 windowBits < 8 || windowBits > 15)
64 state->wbits = windowBits;
65 state->wsize = 1U << windowBits;
28 inflateBackInit_( z_streamp strm, int windowBits, unsigned char FAR *window, const char *version, int stream_size) argument
H A Dfx_zlib_inflate.c144 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 <
142 inflateReset2( z_streamp strm, int windowBits) argument
180 inflateInit2_( z_streamp strm, int windowBits, const char *version, int stream_size) argument
[all...]
H A Dfx_zlib_deflate.c217 int windowBits,
260 if (windowBits < 0) { /* suppress zlib wrapper */
262 windowBits = -windowBits;
265 else if (windowBits > 15) {
267 windowBits -= 16;
271 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
275 if (windowBits == 8) windowBits
213 deflateInit2_( z_streamp strm, int level, int method, int windowBits, int memLevel, int strategy, const char *version, int stream_size) argument
[all...]
/external/libpng/
H A Dpngwutil.c245 * deflate header) to correct the windowBits value to match the actual data
256 if (data_size <= 16384) /* else windowBits must be 15 */
330 int windowBits = png_ptr->zlib_window_bits; local
352 windowBits = png_ptr->zlib_text_window_bits;
365 /* Adjust 'windowBits' down if larger than 'data_size'; to stop this
369 * next windowBits size we need to fix up the value later. (Because even
379 unsigned int half_window_size = 1U << (windowBits-1);
384 --windowBits;
392 png_ptr->zlib_set_window_bits != windowBits ||
418 ret = deflateInit2(&png_ptr->zstream, level, method, windowBits,
[all...]
/external/pdfium/samples/fx_lpng/lpng_v163/
H A Dfx_pngwutil.c244 * deflate header) to correct the windowBits value to match the actual data
255 if (data_size <= 16384) /* else windowBits must be 15 */
329 int windowBits = png_ptr->zlib_window_bits; local
351 windowBits = png_ptr->zlib_text_window_bits;
364 /* Adjust 'windowBits' down if larger than 'data_size'; to stop this
368 * next windowBits size we need to fix up the value later. (Because even
378 unsigned int half_window_size = 1U << (windowBits-1);
383 --windowBits;
391 png_ptr->zlib_set_window_bits != windowBits ||
417 ret = deflateInit2(&png_ptr->zstream, level, method, windowBits,
[all...]
/external/zlib/src/contrib/minizip/
H A Dzip.c1059 int windowBits,int memLevel, int strategy,
1218 if (windowBits>0)
1219 windowBits = -windowBits;
1221 err = deflateInit2(&zi->ci.stream, level, Z_DEFLATED, windowBits, memLevel, strategy);
1269 int windowBits,int memLevel, int strategy,
1277 windowBits, memLevel, strategy,
1285 int windowBits,int memLevel, int strategy,
1292 windowBits, memLevel, strategy,
1300 int windowBits,in
1055 zipOpenNewFileInZip4_64(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting, uLong versionMadeBy, uLong flagBase, int zip64) argument
1265 zipOpenNewFileInZip4(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting, uLong versionMadeBy, uLong flagBase) argument
1281 zipOpenNewFileInZip3(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting) argument
1296 zipOpenNewFileInZip3_64(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting, int zip64) argument
[all...]

Completed in 225 milliseconds