Home
last modified time | relevance | path

Searched refs:inflate (Results 1 - 25 of 145) sorted by relevance

123456

/third_party/node/test/parallel/
H A Dtest-zlib-dictionary.js55 const inflate = zlib.createInflate({ dictionary: spdyDict });
56 inflate.setEncoding('utf-8');
59 inflate.write(chunk);
62 inflate.on('data', function(chunk) {
67 inflate.end();
70 inflate.on('end', common.mustCall(function() {
82 const inflate = zlib.createInflate({ dictionary: spdyDict });
83 inflate.setEncoding('utf-8');
87 inflate.write(chunk);
90 inflate
[all...]
/third_party/libwebsockets/lib/roles/http/server/
H A Dfops-zip.c75 z_stream inflate; member
296 inflateEnd(&priv->inflate); in lws_fops_zip_reset_inflate()
298 priv->inflate.zalloc = Z_NULL; in lws_fops_zip_reset_inflate()
299 priv->inflate.zfree = Z_NULL; in lws_fops_zip_reset_inflate()
300 priv->inflate.opaque = Z_NULL; in lws_fops_zip_reset_inflate()
301 priv->inflate.avail_in = 0; in lws_fops_zip_reset_inflate()
302 priv->inflate.next_in = Z_NULL; in lws_fops_zip_reset_inflate()
304 if (inflateInit2(&priv->inflate, -MAX_WBITS) != Z_OK) { in lws_fops_zip_reset_inflate()
305 lwsl_err("inflate init failed\n"); in lws_fops_zip_reset_inflate()
448 lwsl_err("inflate ini in lws_fops_zip_open()
[all...]
/third_party/zlib/contrib/delphi/
H A Dzlibd32.mak22 OBJ2 = gzwrite.obj infback.obj inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.obj
24 OBJP2 = +gzwrite.obj+infback.obj+inffast.obj+inflate.obj+inftrees.obj+trees.obj+uncompr.obj+zutil.obj
49 infback.obj: infback.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
52 inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
55 inflate.obj: inflate.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
H A DZLib.pas206 {$L inflate.obj}
246 // inflate decompresses data
249 function inflate(var strm: TZStreamRec; flush: Integer): Integer; external; in inflate() function
347 while DCheck(inflate(strm, Z_NO_FLUSH)) <> Z_STREAM_END do
380 if DCheck(inflate(strm, Z_FINISH)) <> Z_STREAM_END then
517 CCheck(inflate(FZRec, 0));
/third_party/zlib/contrib/pascal/
H A Dzlibd32.mak22 OBJ2 = gzwrite.obj infback.obj inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.obj
24 OBJP2 = +gzwrite.obj+infback.obj+inffast.obj+inflate.obj+inftrees.obj+trees.obj+uncompr.obj+zutil.obj
49 infback.obj: infback.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
52 inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
55 inflate.obj: inflate.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
H A Dexample.pas226 * Test inflate with small buffers
252 err := inflate(d_stream, Z_NO_FLUSH);
255 CHECK_ERR(err, 'inflate');
262 EXIT_ERR('bad inflate')
264 WriteLn('inflate(): ', PChar(uncompr));
321 * Test inflate with large buffers
345 err := inflate(d_stream, Z_NO_FLUSH);
348 CHECK_ERR(err, 'large inflate');
356 WriteLn('bad large inflate: ', d_stream.total_out);
427 inflate(d_strea
[all...]
/third_party/libwebsockets/lib/core-net/
H A Ddummy-callback.c728 memset(&wsi->http.cgi->inflate, 0, in lws_callback_http_dummy()
729 sizeof(wsi->http.cgi->inflate)); in lws_callback_http_dummy()
731 if (inflateInit2(&wsi->http.cgi->inflate, in lws_callback_http_dummy()
740 wsi->http.cgi->inflate.next_in = args->data; in lws_callback_http_dummy()
741 wsi->http.cgi->inflate.avail_in = (unsigned int)args->len; in lws_callback_http_dummy()
745 wsi->http.cgi->inflate.next_out = in lws_callback_http_dummy()
747 wsi->http.cgi->inflate.avail_out = in lws_callback_http_dummy()
750 n = inflate(&wsi->http.cgi->inflate, in lws_callback_http_dummy()
758 inflateEnd(&wsi->http.cgi->inflate); in lws_callback_http_dummy()
[all...]
/third_party/zlib/contrib/dotzlib/DotZLib/
H A DInflater.cs16 /// Implements a data decompressor, using the inflate algorithm in the ZLib dll
25 private static extern int inflate(ref ZStream sz, int flush); in inflate() method in DotZLib.Inflater
67 err = inflate(ref _ztream, (int)FlushTypes.None); in Add()
72 err = inflate(ref _ztream, (int)FlushTypes.None); in Add()
89 err = inflate(ref _ztream, (int)FlushTypes.Finish); in Finish()
99 /// Closes the internal zlib inflate stream
/third_party/node/benchmark/zlib/
H A Dinflate.js6 method: ['inflate', 'inflateSync'],
13 method = method || 'inflate';
18 // Performs `n` single inflate operations
19 case 'inflate': {
20 const inflate = zlib.inflate;
25 inflate(chunk, next);
39 throw new Error('Unsupported inflate method');
/third_party/zlib/watcom/
H A Dwatcom_l.mak9 infback.c inffast.c inflate.c inftrees.c &
14 infback.obj inffast.obj inflate.obj inftrees.obj &
31 wlib -b -c $(ZLIB_LIB) -+inffast.obj -+inflate.obj -+inftrees.obj
H A Dwatcom_f.mak9 infback.c inffast.c inflate.c inftrees.c &
14 infback.obj inffast.obj inflate.obj inftrees.obj &
31 wlib -b -c $(ZLIB_LIB) -+inffast.obj -+inflate.obj -+inftrees.obj
/third_party/elfutils/libelf/
H A Delf_compress_gnu.c38 elf_compress_gnu (Elf_Scn *scn, int inflate, unsigned int flags) in elf_compress_gnu() argument
100 if (inflate == 1) in elf_compress_gnu()
144 else if (inflate == 0) in elf_compress_gnu()
/third_party/skia/third_party/externals/libpng/contrib/pngminim/decoder/
H A Dmakefile30 # Zlib (minimal inflate requirements - crc32 is used by libpng)
33 inffast$(C) inflate$(C) inftrees$(C) \
38 inflate.h inftrees.h zutil.h
50 inffast$(O) inflate$(O) inftrees$(O) \
/third_party/skia/third_party/externals/zlib/contrib/tests/
H A Dinfcover.cc1 /* infcover.c -- test zlib's inflate routines with full code coverage
19 #include "inflate.h"
258 /* -- inflate test routines -- */
297 /* generic inflate() run, where hex is the hexadecimal input data, what is the
299 inflate() on each call, or zero to feed it all, win is the window bits
301 is the error code expected from the first inflate() call (the second
302 inflate() call is expected to return Z_STREAM_END). If win is 47, then
305 inflate() is run until all of the input data is consumed. */
342 ret = inflate(&strm, Z_NO_FLUSH); assert(err == 9 || ret == err); in inf()
355 ret = inflate( in inf()
[all...]
/third_party/zlib/test/
H A Dinfcover.c1 /* infcover.c -- test zlib's inflate routines with full code coverage
18 #include "inflate.h"
236 /* -- inflate test routines -- */
275 /* generic inflate() run, where hex is the hexadecimal input data, what is the
277 inflate() on each call, or zero to feed it all, win is the window bits
279 is the error code expected from the first inflate() call (the second
280 inflate() call is expected to return Z_STREAM_END). If win is 47, then
283 inflate() is run until all of the input data is consumed. */
320 ret = inflate(&strm, Z_NO_FLUSH); assert(err == 9 || ret == err); in inf()
333 ret = inflate( in inf()
[all...]
H A Dexample.c207 * Test inflate() with small buffers
230 err = inflate(&d_stream, Z_NO_FLUSH); in test_inflate()
235 CHECK_ERR(err, "inflate"); in test_inflate()
242 fprintf(stderr, "bad inflate\n"); in test_inflate()
245 printf("inflate(): %s\n", (char *)uncompr); in test_inflate()
304 * Test inflate() with large buffers
327 err = inflate(&d_stream, Z_NO_FLUSH); in test_large_inflate()
332 CHECK_ERR(err, "large inflate"); in test_large_inflate()
339 fprintf(stderr, "bad large inflate: %ld\n", d_stream.total_out); in test_large_inflate()
406 err = inflate( in test_sync()
[all...]
/third_party/skia/third_party/externals/libpng/contrib/pngminim/preader/
H A Dmakefile46 # Zlib (minimal inflate requirements - crc32 is used by libpng)
49 inffast$(C) inflate$(C) inftrees$(C) \
54 inflate.h inftrees.h zutil.h
66 inffast$(O) inflate$(O) inftrees$(O) \
/third_party/ffmpeg/libavcodec/
H A Dflashsv.c152 zret = inflate(zstream, Z_SYNC_FLUSH); in flashsv2_prime()
170 zret = inflate(zstream, Z_SYNC_FLUSH); in flashsv2_prime()
186 zret = inflate(zstream, Z_SYNC_FLUSH); in flashsv2_prime()
191 zret = inflate(zstream, Z_SYNC_FLUSH); in flashsv2_prime()
226 ret = inflate(zstream, Z_FINISH); in flashsv_decode_block()
230 ret = inflate(zstream, Z_FINISH); in flashsv_decode_block()
/third_party/skia/tests/
H A DPDFDeflateWStreamTest.cpp85 rc = inflate(&flateData, Z_NO_FLUSH); in stream_inflate()
88 rc = inflate(&flateData, Z_FINISH); in stream_inflate()
/third_party/zlib/examples/
H A Dzran.c41 // inflate is initialized with those bits and the 32K of uncompressed data, and
137 z_stream strm = {0}; // inflate engine (gets fired up later) in deflate_index_build()
183 // We skip the inflate() call at the start of raw deflate data in in deflate_index_build()
190 ret = inflate(&strm, Z_BLOCK); in deflate_index_build()
213 // inflate state to read another gzip member. On success, this will in deflate_index_build()
275 // Then feed that to inflate(). This does what inflatePrime() does, except that
278 // value from inflate() is returned.
295 // Build an input buffer for inflate that is a multiple of eight bits in in inflatePreface()
314 // Deliver the input to inflate(). There is no output space provided, but in inflatePreface()
315 // inflate() ca in inflatePreface()
[all...]
/third_party/libwebsockets/lib/roles/cgi/
H A Dprivate-lib-roles-cgi.h70 z_stream inflate; member
/third_party/skia/third_party/externals/zlib/contrib/tests/fuzzers/
H A Dinflate_fuzzer.cc37 inflate(&stream, Z_NO_FLUSH); in LLVMFuzzerTestOneInput()
/third_party/libwebsockets/win32port/zlib/
H A Duncompr.c48 err = inflate(&stream, Z_FINISH);
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/
H A DInputMarginView.java62 inflater.inflate(R.layout.input_margin_view, this); in initializeViews()
/third_party/nghttp2/src/
H A Dnghttp2_gzip.c62 rv = inflate(&inflater->zst, Z_NO_FLUSH); in nghttp2_gzip_inflate()

Completed in 11 milliseconds

123456