/third_party/node/deps/zlib/google/ |
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/google/ |
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/flutter/skia/third_party/externals/zlib/contrib/bench/ |
D | zlib_bench.cc | 90 return MAX_WBITS; in zlib_stream_wrapper_type() 92 return MAX_WBITS + 16; in zlib_stream_wrapper_type() 94 return -MAX_WBITS; in zlib_stream_wrapper_type()
|
/third_party/flutter/skia/third_party/externals/zlib/google/ |
D | compression_utils.cc | 62 MAX_WBITS + kWindowBitsToGetGzipHeader, in GzipCompressHelper() 105 int err = inflateInit2(&stream, MAX_WBITS + kWindowBitsToGetGzipHeader); in GzipUncompressHelper()
|
/third_party/flutter/skia/third_party/externals/freetype/src/gzip/ |
D | ftzconf.h | 123 #ifndef MAX_WBITS 124 # define MAX_WBITS 15 /* 32K LZ77 window */ macro
|
D | zutil.h | 48 # define DEF_WBITS MAX_WBITS
|
D | ftgzip.c | 315 if ( inflateInit2( zstream, -MAX_WBITS ) != Z_OK || in ft_gzip_file_init() 749 err = inflateInit2( &stream, MAX_WBITS|32 ); in FT_Gzip_Uncompress()
|
/third_party/skia/third_party/externals/freetype/src/gzip/ |
D | ftzconf.h | 123 #ifndef MAX_WBITS 124 # define MAX_WBITS 15 /* 32K LZ77 window */ macro
|
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_Gzip_Uncompress() 762 err = inflateInit2( &stream, MAX_WBITS ); in FT_Gzip_Uncompress()
|
D | zutil.h | 48 # define DEF_WBITS MAX_WBITS
|
/third_party/skia/third_party/externals/zlib/contrib/bench/ |
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/cef/tools/ |
D | crash_server.py | 191 d = zlib.decompressobj(16 + zlib.MAX_WBITS) 278 request_body = zlib.decompress(request_body, 16 + zlib.MAX_WBITS)
|
/third_party/libwebsockets/win32port/zlib/ |
D | zconf.h | 220 #ifndef MAX_WBITS 221 # define MAX_WBITS 15 /* 32K LZ77 window */ macro
|
D | zutil.h | 55 # define DEF_WBITS MAX_WBITS
|
/third_party/flutter/skia/third_party/externals/zlib/ |
D | zconf.h | 272 #ifndef MAX_WBITS 273 # define MAX_WBITS 15 /* 32K LZ77 window */ macro
|
/third_party/freetype/src/gzip/ |
D | ftzconf.h | 269 #ifndef MAX_WBITS 270 # define MAX_WBITS 15 /* 32K LZ77 window */ macro
|
D | ftgzip.c | 330 if ( inflateInit2( zstream, -MAX_WBITS ) != Z_OK || in ft_gzip_file_init() 765 err = inflateInit2( &stream, MAX_WBITS|32 ); in FT_Gzip_Uncompress()
|
/third_party/zlib/ |
D | zconf.h | 269 #ifndef MAX_WBITS 270 # define MAX_WBITS 15 /* 32K LZ77 window */ macro
|
D | zconf.h.cmakein | 267 * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files 271 #ifndef MAX_WBITS 272 # define MAX_WBITS 15 /* 32K LZ77 window */
|
D | zconf.h.in | 265 * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files 269 #ifndef MAX_WBITS 270 # define MAX_WBITS 15 /* 32K LZ77 window */ macro
|
D | zutil.h | 68 # define DEF_WBITS MAX_WBITS
|
/third_party/skia/third_party/externals/zlib/ |
D | zconf.h | 281 #ifndef MAX_WBITS 282 # define MAX_WBITS 15 /* 32K LZ77 window */ macro
|
/third_party/node/deps/zlib/ |
D | zconf.h | 281 #ifndef MAX_WBITS 282 # define MAX_WBITS 15 /* 32K LZ77 window */ macro
|
/third_party/python/Modules/clinic/ |
D | zlibmodule.c.h | 92 int wbits = MAX_WBITS; in zlib_decompress() 189 int wbits = MAX_WBITS; in zlib_compressobj() 291 int wbits = MAX_WBITS; in zlib_decompressobj()
|
/third_party/python/Doc/library/ |
D | zlib.rst | 64 .. function:: compressobj(level=-1, method=DEFLATED, wbits=MAX_WBITS, memLevel=DEF_MEM_LEVEL, strat… 82 defaulting to ``15`` (MAX_WBITS): 135 .. function:: decompress(data, /, wbits=MAX_WBITS, bufsize=DEF_BUF_SIZE) 181 .. function:: decompressobj(wbits=MAX_WBITS[, zdict])
|