/third_party/zlib/contrib/pascal/ |
H A D | zlibpas.pas | 27 z_streamp = ^z_stream; 28 z_stream = packed record 106 function deflateInit(var strm: z_stream; level: Integer): Integer; in deflateInit() 107 function deflate(var strm: z_stream; flush: Integer): Integer; in deflate() 108 function deflateEnd(var strm: z_stream): Integer; in deflateEnd() 109 function inflateInit(var strm: z_stream): Integer; in inflateInit() 110 function inflate(var strm: z_stream; flush: Integer): Integer; in inflate() 111 function inflateEnd(var strm: z_stream): Integer; in inflateEnd() 114 function deflateInit2(var strm: z_stream; level, method, windowBits, in deflateInit2() 116 function deflateSetDictionary(var strm: z_stream; cons [all...] |
H A D | example.pas | 185 var c_stream: z_stream; (* compression stream *) 232 d_stream: z_stream; (* decompression stream *) 274 var c_stream: z_stream; (* compression stream *) 327 d_stream: z_stream; (* decompression stream *) 369 var c_stream: z_stream; (* compression stream *) 410 d_stream: z_stream; (* decompression stream *) 451 var c_stream: z_stream; (* compression stream *) 487 d_stream: z_stream; (* decompression stream *)
|
/third_party/skia/third_party/externals/microhttpd/src/microspdy/ |
H A D | compression.h | 42 SPDYF_zlib_deflate_init(z_stream *strm); 52 SPDYF_zlib_deflate_end(z_stream *strm); 69 SPDYF_zlib_deflate(z_stream *strm, 85 SPDYF_zlib_inflate_init(z_stream *strm); 95 SPDYF_zlib_inflate_end(z_stream *strm); 111 SPDYF_zlib_inflate(z_stream *strm,
|
/third_party/skia/third_party/externals/freetype/src/gzip/ |
H A D | zlib.h | 87 } z_stream; typedef 89 typedef z_stream FAR *z_streamp; 811 * and the compiler's view of z_stream: 816 deflateInit_((strm), (level), ZLIB_VERSION, sizeof(z_stream)) 818 inflateInit_((strm), ZLIB_VERSION, sizeof(z_stream)) 821 (strategy), ZLIB_VERSION, sizeof(z_stream)) 823 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
|
H A D | ftgzip.c | 186 z_stream zstream; /* zlib input stream */ 288 z_stream* zstream = &zip->zstream; in ft_gzip_file_init() 331 z_stream* zstream = &zip->zstream; in ft_gzip_file_done() 360 z_stream* zstream = &zip->zstream; in ft_gzip_file_reset() 382 z_stream* zstream = &zip->zstream; in ft_gzip_file_fill_input() 423 z_stream* zstream = &zip->zstream; in ft_gzip_file_fill_output() 733 z_stream stream; in FT_EXPORT_DEF()
|
/third_party/zlib/contrib/infback9/ |
H A D | infback9.h | 23 ZEXTERN int ZEXPORT inflateBack9(z_stream FAR *strm, 26 ZEXTERN int ZEXPORT inflateBack9End(z_stream FAR *strm); 27 ZEXTERN int ZEXPORT inflateBack9Init_(z_stream FAR *strm, 33 ZLIB_VERSION, sizeof(z_stream))
|
/third_party/node/deps/zlib/ |
H A D | zlib.h | 106 } z_stream; typedef 108 typedef z_stream FAR *z_streamp; 1781 * and the compiler's view of z_stream: 1799 deflateInit_((strm), (level), ZLIB_VERSION, (int)sizeof(z_stream)) 1801 inflateInit_((strm), ZLIB_VERSION, (int)sizeof(z_stream)) 1804 (strategy), ZLIB_VERSION, (int)sizeof(z_stream)) 1807 (int)sizeof(z_stream)) 1810 ZLIB_VERSION, (int)sizeof(z_stream)) 1813 deflateInit_((strm), (level), ZLIB_VERSION, (int)sizeof(z_stream)) 1815 inflateInit_((strm), ZLIB_VERSION, (int)sizeof(z_stream)) [all...] |
/third_party/zlib/ |
H A D | zlib.h | 106 } z_stream; typedef 108 typedef z_stream FAR *z_streamp; 1782 * and the compiler's view of z_stream: 1800 deflateInit_((strm), (level), ZLIB_VERSION, (int)sizeof(z_stream)) 1802 inflateInit_((strm), ZLIB_VERSION, (int)sizeof(z_stream)) 1805 (strategy), ZLIB_VERSION, (int)sizeof(z_stream)) 1808 (int)sizeof(z_stream)) 1811 ZLIB_VERSION, (int)sizeof(z_stream)) 1814 deflateInit_((strm), (level), ZLIB_VERSION, (int)sizeof(z_stream)) 1816 inflateInit_((strm), ZLIB_VERSION, (int)sizeof(z_stream)) [all...] |
/third_party/node/deps/v8/third_party/zlib/ |
H A D | zlib.h | 106 } z_stream; typedef 108 typedef z_stream FAR *z_streamp; 1764 * and the compiler's view of z_stream: 1782 deflateInit_((strm), (level), ZLIB_VERSION, (int)sizeof(z_stream)) 1784 inflateInit_((strm), ZLIB_VERSION, (int)sizeof(z_stream)) 1787 (strategy), ZLIB_VERSION, (int)sizeof(z_stream)) 1790 (int)sizeof(z_stream)) 1793 ZLIB_VERSION, (int)sizeof(z_stream)) 1796 deflateInit_((strm), (level), ZLIB_VERSION, (int)sizeof(z_stream)) 1798 inflateInit_((strm), ZLIB_VERSION, (int)sizeof(z_stream)) [all...] |
/third_party/skia/third_party/externals/zlib/contrib/tests/ |
H A D | infcover.cc | 47 z_stream strm; 173 local void mem_setup(z_stream *strm) in mem_setup() 191 local void mem_limit(z_stream *strm, size_t limit) in mem_limit() 199 local void mem_used(z_stream *strm, const char *prefix) in mem_used() 207 local void mem_high(z_stream *strm, const char *prefix) in mem_high() 215 local void mem_done(z_stream *strm, const char *prefix) in mem_done() 312 z_stream strm, copy; in inf() 375 z_stream strm; in cover_support() 398 ret = inflateInit_(&strm, ZLIB_VERSION - 1, (int)sizeof(z_stream)); in cover_support() 413 z_stream str in cover_wrap() [all...] |
/third_party/skia/third_party/externals/zlib/ |
H A D | zlib.h | 106 } z_stream; typedef 108 typedef z_stream FAR *z_streamp; 1762 * and the compiler's view of z_stream: 1780 deflateInit_((strm), (level), ZLIB_VERSION, (int)sizeof(z_stream)) 1782 inflateInit_((strm), ZLIB_VERSION, (int)sizeof(z_stream)) 1785 (strategy), ZLIB_VERSION, (int)sizeof(z_stream)) 1788 (int)sizeof(z_stream)) 1791 ZLIB_VERSION, (int)sizeof(z_stream)) 1794 deflateInit_((strm), (level), ZLIB_VERSION, (int)sizeof(z_stream)) 1796 inflateInit_((strm), ZLIB_VERSION, (int)sizeof(z_stream)) [all...] |
/third_party/zlib/test/ |
H A D | infcover.c | 32 z_stream strm; 158 local void mem_setup(z_stream *strm) in mem_setup() 176 local void mem_limit(z_stream *strm, size_t limit) in mem_limit() 184 local void mem_used(z_stream *strm, char *prefix) in mem_used() 192 local void mem_high(z_stream *strm, char *prefix) in mem_high() 200 local void mem_done(z_stream *strm, char *prefix) in mem_done() 290 z_stream strm, copy; in inf() 353 z_stream strm; in cover_support() 376 ret = inflateInit_(&strm, "!", (int)sizeof(z_stream)); in cover_support() 391 z_stream str in cover_wrap() [all...] |
H A D | example.c | 172 z_stream c_stream; /* compression stream */ in test_deflate() 213 z_stream d_stream; /* decompression stream */ in test_inflate() 255 z_stream c_stream; /* compression stream */ in test_large_deflate() 310 z_stream d_stream; /* decompression stream */ in test_large_inflate() 351 z_stream c_stream; /* compression stream */ in test_flush() 389 z_stream d_stream; /* decompression stream */ in test_sync() 429 z_stream c_stream; /* compression stream */ in test_dict_deflate() 466 z_stream d_stream; /* decompression stream */ in test_dict_inflate()
|
/third_party/node/deps/openssl/openssl/crypto/comp/ |
H A D | c_zlib.c | 119 z_stream istream; 120 z_stream ostream; 136 err = inflateInit_(&state->istream, ZLIB_VERSION, sizeof(z_stream)); in zlib_stateful_init() 146 ZLIB_VERSION, sizeof(z_stream)); in zlib_stateful_init() 274 z_stream zin; /* Input decompress context */ 281 z_stream zout; /* Output compression context */ 369 z_stream *zin; in bio_zlib_read() 431 z_stream *zout; in bio_zlib_write() 502 z_stream *zout; in bio_zlib_flush()
|
/third_party/openssl/crypto/comp/ |
H A D | c_zlib.c | 119 z_stream istream; 120 z_stream ostream; 136 err = inflateInit_(&state->istream, ZLIB_VERSION, sizeof(z_stream)); in zlib_stateful_init() 146 ZLIB_VERSION, sizeof(z_stream)); in zlib_stateful_init() 274 z_stream zin; /* Input decompress context */ 281 z_stream zout; /* Output compression context */ 369 z_stream *zin; in bio_zlib_read() 431 z_stream *zout; in bio_zlib_write() 502 z_stream *zout; in bio_zlib_flush()
|
/third_party/libwebsockets/lib/roles/ws/ext/ |
H A D | extension-permessage-deflate.h | 48 z_stream rx; 49 z_stream tx;
|
/third_party/libwebsockets/win32port/zlib/ |
H A D | zlib.h | 104 } z_stream;
typedef 106 typedef z_stream FAR *z_streamp;
1530 * and the compiler's view of z_stream:
1547 deflateInit_((strm), (level), ZLIB_VERSION, sizeof(z_stream))
1549 inflateInit_((strm), ZLIB_VERSION, sizeof(z_stream))
1552 (strategy), ZLIB_VERSION, sizeof(z_stream))
1554 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
1557 ZLIB_VERSION, sizeof(z_stream))
|
/third_party/curl/lib/ |
H A D | content_encoding.c | 104 z_stream z; /* State structure for zlib. */ 124 process_zlib_error(struct Curl_easy *data, z_stream *z) in process_zlib_error() 138 z_stream *z, zlibInitState *zlib_init, CURLcode result) in exit_zlib() 155 z_stream *z = &zp->z; in process_trailer() 181 z_stream *z = &zp->z; /* zlib state structure */ in inflate_stream() 284 z_stream *z = &zp->z; /* zlib state structure */ in deflate_do_init() 301 z_stream *z = &zp->z; /* zlib state structure */ in deflate_do_write() 321 z_stream *z = &zp->z; /* zlib state structure */ in deflate_do_close() 341 z_stream *z = &zp->z; /* zlib state structure */ in gzip_do_init() 458 z_stream * in gzip_do_write() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | zlib_wrapper.c | 43 z_stream *const zstream = &z->zstream; in ff_inflate_init() 76 z_stream *const zstream = &z->zstream; in ff_deflate_init()
|
/third_party/mesa3d/src/util/ |
H A D | compress.c | 88 z_stream strm; in util_compress_deflate() 131 z_stream strm; in util_compress_inflate()
|
/third_party/skia/third_party/externals/zlib/contrib/tests/fuzzers/ |
H A D | streaming_inflate_fuzzer.cc | 24 z_stream comp_strm; in LLVMFuzzerTestOneInput() 43 z_stream decomp_strm; in LLVMFuzzerTestOneInput()
|
/third_party/protobuf/src/google/protobuf/io/ |
H A D | gzip_stream.h | 93 z_stream zcontext_; 180 z_stream zcontext_;
|
/third_party/zlib/contrib/testzlib/ |
H A D | testzlib.c | 192 z_stream zcpr;
in main() 197 memset(&zcpr,0,sizeof(z_stream));
in main() 233 z_stream zcpr;
in main() 238 memset(&zcpr,0,sizeof(z_stream));
in main()
|
/third_party/skia/src/pdf/ |
H A D | SkDeflate.cpp | 38 z_stream* zStream, in do_deflate() 64 z_stream fZStream;
|
/third_party/elfutils/libdwfl/ |
H A D | gzip.c | 45 # define z_stream lzma_stream macro 63 # define z_stream bz_stream macro 305 z_stream z = { .next_in = mapped, .avail_in = state.mapped_size }; in unzip()
|