/third_party/node/deps/v8/third_party/zlib/google/ |
H A D | compression_utils_portable.cc | 54 return MAX_WBITS; in ZlibStreamWrapperType() 56 return MAX_WBITS + kWindowBitsToGetGzipHeader; in ZlibStreamWrapperType() 58 return -MAX_WBITS; in ZlibStreamWrapperType()
|
H A D | zip_internal.cc | 375 /*windowBits=*/-MAX_WBITS, in ZipOpenNewFileInZip()
|
/third_party/node/deps/zlib/google/ |
H A D | compression_utils_portable.cc | 54 return MAX_WBITS; in ZlibStreamWrapperType() 56 return MAX_WBITS + kWindowBitsToGetGzipHeader; in ZlibStreamWrapperType() 58 return -MAX_WBITS; in ZlibStreamWrapperType()
|
H A D | zip_internal.cc | 376 /*windowBits=*/-MAX_WBITS, in ZipOpenNewFileInZip()
|
/third_party/skia/third_party/externals/zlib/google/ |
H A D | compression_utils_portable.cc | 54 return MAX_WBITS; in ZlibStreamWrapperType() 56 return MAX_WBITS + kWindowBitsToGetGzipHeader; in ZlibStreamWrapperType() 58 return -MAX_WBITS; in ZlibStreamWrapperType()
|
/third_party/skia/third_party/externals/zlib/contrib/bench/ |
H A D | zlib_bench.cc | 85 return MAX_WBITS; in zlib_stream_wrapper_type() 87 return MAX_WBITS + 16; in zlib_stream_wrapper_type() 89 return -MAX_WBITS; in zlib_stream_wrapper_type()
|
/third_party/skia/third_party/externals/freetype/src/gzip/ |
H A D | ftzconf.h | 119 * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files 123 #ifndef MAX_WBITS 124 # define MAX_WBITS 15 /* 32K LZ77 window */ macro
|
H A D | ftgzip.c | 319 if ( inflateInit2( zstream, -MAX_WBITS ) != Z_OK || in ft_gzip_file_init() 760 err = inflateInit2( &stream, MAX_WBITS|32 ); in FT_EXPORT_DEF() 762 err = inflateInit2( &stream, MAX_WBITS ); in FT_EXPORT_DEF()
|
H A D | zutil.h | 48 # define DEF_WBITS MAX_WBITS 50 /* default windowBits for decompression. MAX_WBITS is for compression only */
|
/third_party/python/Modules/clinic/ |
H A D | zlibmodule.c.h | 6 "compress($module, data, /, level=Z_DEFAULT_COMPRESSION, wbits=MAX_WBITS)\n" 34 int wbits = MAX_WBITS; in zlib_compress() 76 "decompress($module, data, /, wbits=MAX_WBITS, bufsize=DEF_BUF_SIZE)\n" 104 int wbits = MAX_WBITS; in zlib_decompress() 156 " wbits=MAX_WBITS, memLevel=DEF_MEM_LEVEL,\n" 201 int wbits = MAX_WBITS; in zlib_compressobj() 278 "decompressobj($module, /, wbits=MAX_WBITS, zdict=b\'\')\n" 303 int wbits = MAX_WBITS; in zlib_decompressobj()
|
/third_party/node/deps/v8/third_party/zlib/ |
H A D | zconf.h | 277 * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files 281 #ifndef MAX_WBITS 282 # define MAX_WBITS 15 /* 32K LZ77 window */ macro
|
H A D | zutil.h | 72 # define DEF_WBITS MAX_WBITS 74 /* default windowBits for decompression. MAX_WBITS is for compression only */
|
/third_party/node/deps/zlib/ |
H A D | zconf.h | 284 * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files 288 #ifndef MAX_WBITS 289 # define MAX_WBITS 15 /* 32K LZ77 window */ macro
|
H A D | zutil.h | 83 # define DEF_WBITS MAX_WBITS 85 /* default windowBits for decompression. MAX_WBITS is for compression only */
|
/third_party/libwebsockets/win32port/zlib/ |
H A D | zconf.h | 216 * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files
220 #ifndef MAX_WBITS
221 # define MAX_WBITS 15 /* 32K LZ77 window */
macro
|
H A D | zutil.h | 55 # define DEF_WBITS MAX_WBITS
57 /* default windowBits for decompression. MAX_WBITS is for compression only */
|
/third_party/skia/third_party/externals/zlib/ |
H A D | zconf.h | 277 * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files 281 #ifndef MAX_WBITS 282 # define MAX_WBITS 15 /* 32K LZ77 window */ macro
|
H A D | zutil.h | 76 # define DEF_WBITS MAX_WBITS 78 /* default windowBits for decompression. MAX_WBITS is for compression only */
|
/third_party/zlib/ |
H A D | zconf.h | 272 * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files 276 #ifndef MAX_WBITS 277 # define MAX_WBITS 15 /* 32K LZ77 window */ macro
|
H A D | zutil.h | 68 # define DEF_WBITS MAX_WBITS 70 /* default windowBits for decompression. MAX_WBITS is for compression only */
|
/third_party/python/Lib/ |
H A D | gzip.py | 203 -zlib.MAX_WBITS, 458 wbits=-zlib.MAX_WBITS) 604 do = zlib.decompressobj(wbits=-zlib.MAX_WBITS)
|
/third_party/curl/src/ |
H A D | mkhelp.pl | 169 if(inflateInit2(&z, -MAX_WBITS) != Z_OK)
|
/third_party/curl/lib/ |
H A D | content_encoding.c | 250 if(inflateInit2(z, -MAX_WBITS) == Z_OK) { in inflate_stream() 349 if(inflateInit2(z, MAX_WBITS + 32) != Z_OK) { in gzip_do_init() 356 if(inflateInit2(z, -MAX_WBITS) != Z_OK) { in gzip_do_init()
|
/third_party/python/Lib/test/ |
H A D | test_zlib.py | 142 zlib.compressobj, 1, zlib.DEFLATED, zlib.MAX_WBITS + 1) 211 wbits=zlib.MAX_WBITS, 641 co = zlib.compressobj(wbits=-zlib.MAX_WBITS, zdict=zdict) 643 dco = zlib.decompressobj(wbits=-zlib.MAX_WBITS, zdict=zdict)
|
/third_party/skia/third_party/externals/libpng/contrib/tools/ |
H A D | pngcp.c | 202 { "default", MAX_WBITS/*from zlib*/ }, 204 RANGE(8, MAX_WBITS/*from zlib*/), 272 { "default", MAX_WBITS }, 274 RANGE(8, MAX_WBITS), /* modified by set_windowBits_hi */ 2089 int wb = MAX_WBITS; /* for large images */ in set_windowBits_hi()
|