Home
last modified time | relevance | path

Searched refs:z_stream (Results 1 – 25 of 104) sorted by relevance

12345

/external/zlib/src/contrib/pascal/
Dzlibpas.pas27 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() argument
109 function inflateInit(var strm: z_stream): Integer; in inflateInit() argument
110 function inflate(var strm: z_stream; flush: Integer): Integer; in inflate()
111 function inflateEnd(var strm: z_stream): Integer; in inflateEnd() argument
114 function deflateInit2(var strm: z_stream; level, method, windowBits, in deflateInit2()
116 function deflateSetDictionary(var strm: z_stream; const dictionary: PChar; in deflateSetDictionary()
[all …]
Dexample.pas185 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 *)
/external/libmicrohttpd/src/microspdy/
Dcompression.h42 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,
Dcompression.c215 SPDYF_zlib_deflate_init(z_stream *strm) in SPDYF_zlib_deflate_init()
244 SPDYF_zlib_deflate_end(z_stream *strm) in SPDYF_zlib_deflate_end()
250 SPDYF_zlib_deflate(z_stream *strm, in SPDYF_zlib_deflate()
320 SPDYF_zlib_inflate_init(z_stream *strm) in SPDYF_zlib_inflate_init()
343 SPDYF_zlib_inflate_end(z_stream *strm) in SPDYF_zlib_inflate_end()
350 SPDYF_zlib_inflate(z_stream *strm, in SPDYF_zlib_inflate()
/external/zlib/src/as400/
Dzlib.inc14 * inflateInit(...: ZLIB_VERSION: %size(z_stream))
92 D z_stream DS align based(z_streamp)
280 D strm like(z_stream) Compression stream
286 D strm like(z_stream) Compression stream
290 D strm like(z_stream) Compression stream
293 D strm like(z_stream) Expansion stream
298 D strm like(z_stream) Expansion stream
302 D strm like(z_stream) Expansion stream
309 D strm like(z_stream) Compression stream
320 D strm like(z_stream) Compression stream
[all …]
/external/freetype/src/gzip/
Dzlib.h87 } z_stream; typedef
89 typedef z_stream FAR *z_streamp;
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))
Dftgzip.c186 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()
732 z_stream stream; in FT_Gzip_Uncompress()
/external/zlib/src/contrib/infback9/
Dinfback9.h23 ZEXTERN int ZEXPORT inflateBack9 OF((z_stream FAR *strm,
26 ZEXTERN int ZEXPORT inflateBack9End OF((z_stream FAR *strm));
27 ZEXTERN int ZEXPORT inflateBack9Init_ OF((z_stream FAR *strm,
33 ZLIB_VERSION, sizeof(z_stream))
/external/libcups/cups/
Dhttp.c1730 (http->coding >= _HTTP_CODING_GUNZIP && ((z_stream *)http->stream)->avail_in == 0))) in httpPeek()
1777 z_stream stream; /* Copy of decompressor stream */ in httpPeek()
1779 if (http->used > 0 && ((z_stream *)http->stream)->avail_in < HTTP_MAX_BUFFER) in httpPeek()
1781 size_t buflen = buflen = HTTP_MAX_BUFFER - ((z_stream *)http->stream)->avail_in; in httpPeek()
1784 if (((z_stream *)http->stream)->avail_in > 0 && in httpPeek()
1785 ((z_stream *)http->stream)->next_in > http->sbuffer) in httpPeek()
1786 … memmove(http->sbuffer, ((z_stream *)http->stream)->next_in, ((z_stream *)http->stream)->avail_in); in httpPeek()
1788 ((z_stream *)http->stream)->next_in = http->sbuffer; in httpPeek()
1799 memcpy(http->sbuffer + ((z_stream *)http->stream)->avail_in, http->buffer, buflen); in httpPeek()
1800 ((z_stream *)http->stream)->avail_in += buflen; in httpPeek()
[all …]
/external/curl/lib/
Dcontent_encoding.c68 process_zlib_error(struct connectdata *conn, z_stream *z) in process_zlib_error()
82 exit_zlib(z_stream *z, zlibInitState *zlib_init, CURLcode result) in exit_zlib()
94 z_stream *z = &k->z; /* zlib state structure */ in inflate_stream()
172 z_stream *z = &k->z; /* zlib state structure */ in Curl_unencode_deflate_write()
176 memset(z, 0, sizeof(z_stream)); in Curl_unencode_deflate_write()
282 z_stream *z = &k->z; /* zlib state structure */ in Curl_unencode_gzip_write()
286 memset(z, 0, sizeof(z_stream)); in Curl_unencode_gzip_write()
427 z_stream *z = &k->z; in Curl_unencode_cleanup()
/external/zlib/src/test/
Dinfcover.c158 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, ZLIB_VERSION - 1, (int)sizeof(z_stream)); in cover_support()
391 z_stream strm, copy; in cover_wrap()
457 state = (void *)((z_stream *)desc)->state; in pull()
[all …]
Dexample.c204 z_stream c_stream; /* compression stream */
243 z_stream d_stream; /* decompression stream */
283 z_stream c_stream; /* compression stream */
339 z_stream d_stream; /* decompression stream */
379 z_stream c_stream; /* compression stream */
418 z_stream d_stream; /* decompression stream */
461 z_stream c_stream; /* compression stream */
499 z_stream d_stream; /* decompression stream */
/external/pdfium/core/fxcodec/codec/
Dfx_codec_flate.cpp29 return ((z_stream*)context)->total_out; in FPDFAPI_FlateGetTotalOut()
32 return ((z_stream*)context)->total_in; in FPDFAPI_FlateGetTotalIn()
44 z_stream* p = (z_stream*)alloc_func(0, 1, sizeof(z_stream)); in FPDFAPI_FlateInit()
48 FXSYS_memset(p, 0, sizeof(z_stream)); in FPDFAPI_FlateInit()
58 ((z_stream*)context)->next_in = (unsigned char*)src_buf; in FPDFAPI_FlateInput()
59 ((z_stream*)context)->avail_in = src_size; in FPDFAPI_FlateInput()
65 ((z_stream*)context)->next_out = dest_buf; in FPDFAPI_FlateOutput()
66 ((z_stream*)context)->avail_out = dest_size; in FPDFAPI_FlateOutput()
68 int ret = inflate((z_stream*)context, Z_SYNC_FLUSH); in FPDFAPI_FlateOutput()
78 return ((z_stream*)context)->avail_in; in FPDFAPI_FlateGetAvailIn()
[all …]
/external/syslinux/com32/include/
Dzlib.h104 } z_stream; typedef
106 typedef z_stream FAR *z_streamp;
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))
/external/python/cpython2/Modules/zlib/
Dexample.c204 z_stream c_stream; /* compression stream */
243 z_stream d_stream; /* decompression stream */
283 z_stream c_stream; /* compression stream */
339 z_stream d_stream; /* decompression stream */
379 z_stream c_stream; /* compression stream */
418 z_stream d_stream; /* decompression stream */
461 z_stream c_stream; /* compression stream */
499 z_stream d_stream; /* decompression stream */
Dzlib.h104 } z_stream; typedef
106 typedef z_stream FAR *z_streamp;
1648 deflateInit_((strm), (level), ZLIB_VERSION, (int)sizeof(z_stream))
1650 inflateInit_((strm), ZLIB_VERSION, (int)sizeof(z_stream))
1653 (strategy), ZLIB_VERSION, (int)sizeof(z_stream))
1656 (int)sizeof(z_stream))
1659 ZLIB_VERSION, (int)sizeof(z_stream))
/external/zlib/src/
Dzlib.h104 } z_stream; typedef
106 typedef z_stream FAR *z_streamp;
1648 deflateInit_((strm), (level), ZLIB_VERSION, (int)sizeof(z_stream))
1650 inflateInit_((strm), ZLIB_VERSION, (int)sizeof(z_stream))
1653 (strategy), ZLIB_VERSION, (int)sizeof(z_stream))
1656 (int)sizeof(z_stream))
1659 ZLIB_VERSION, (int)sizeof(z_stream))
/external/zlib/
Dzlib.h104 } z_stream; typedef
106 typedef z_stream FAR *z_streamp;
1648 deflateInit_((strm), (level), ZLIB_VERSION, (int)sizeof(z_stream))
1650 inflateInit_((strm), ZLIB_VERSION, (int)sizeof(z_stream))
1653 (strategy), ZLIB_VERSION, (int)sizeof(z_stream))
1656 (int)sizeof(z_stream))
1659 ZLIB_VERSION, (int)sizeof(z_stream))
/external/zlib/src/contrib/testzlib/
Dtestzlib.c192 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()
/external/pdfium/third_party/zlib_v128/
Dzlib.h173 } z_stream; typedef
175 typedef z_stream FAR *z_streamp;
1717 deflateInit_((strm), (level), ZLIB_VERSION, (int)sizeof(z_stream))
1719 inflateInit_((strm), ZLIB_VERSION, (int)sizeof(z_stream))
1722 (strategy), ZLIB_VERSION, (int)sizeof(z_stream))
1725 (int)sizeof(z_stream))
1728 ZLIB_VERSION, (int)sizeof(z_stream))
/external/protobuf/src/google/protobuf/io/
Dgzip_stream.h95 z_stream zcontext_;
189 z_stream zcontext_;
/external/skia/src/pdf/
DSkDeflate.cpp36 z_stream* zStream, in do_deflate()
62 z_stream fZStream;
/external/elfutils/libdwfl/
Dgzip.c43 # define z_stream lzma_stream macro
55 # define z_stream bz_stream macro
228 z_stream z = { .next_in = mapped, .avail_in = state.mapped_size }; in unzip()
/external/zlib/src/examples/
Dgun.c201 int outfile, z_stream *strm) in lunpipe()
383 local int gunpipe(z_stream *strm, int infile, int outfile) in gunpipe()
548 local int gunzip(z_stream *strm, char *inname, char *outname, int test) in gunzip()
636 z_stream strm; in main()
Dzpipe.c40 z_stream strm; in def()
96 z_stream strm; in inf()

12345