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

12

/vbox/src/libs/zlib-1.2.6/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); method in class:DotZLib.Inflater
67 err = inflate(ref _ztream, (int)FlushTypes.None);
72 err = inflate(ref _ztream, (int)FlushTypes.None);
89 err = inflate(ref _ztream, (int)FlushTypes.Finish);
99 /// Closes the internal zlib inflate stream
/vbox/src/libs/zlib-1.2.6/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; 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));
/vbox/src/libs/zlib-1.2.6/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...]
H A Dzlibpas.pas110 function inflate(var strm: z_stream; flush: Integer): Integer; function
182 {$L inflate.obj}
208 function inflate; external; function
/vbox/src/libs/zlib-1.2.6/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
/vbox/src/libs/zlib-1.2.6/
H A Duncompr.c48 err = inflate(&stream, Z_FINISH);
H A Dmake_vms.com161 infback.c zutil.h inftrees.h inflate.h inffast.h inffixed.h
164 $ CALL MAKE inflate.OBJ "CC ''CCOPT' inflate" -
165 inflate.c zutil.h zlib.h zconf.h infblock.h
404 deflate.obj, trees.obj, zutil.obj, inflate.obj, \
440 inflate.obj : inflate.c zutil.h zlib.h zconf.h
446 infback.obj : infback.c zutil.h inftrees.h inflate.h inffast.h inffixed.h
H A Dzconf.h22 # define inflate vboxzlib_inflate macro
181 # define inflate z_inflate macro
350 The memory requirements for inflate are (in bytes) 1 << windowBits
H A Dgzread.c71 /* Look for gzip header, set up for inflate or copy. state->x.have must be 0.
78 a user buffer. If decompressing, the inflate state will be initialized.
85 /* allocate read buffers and inflate memory */
100 /* allocate inflate memory */
176 /* get more input for inflate() */
185 ret = inflate(strm, Z_NO_FLUSH);
188 "internal error: inflate stream corrupt");
H A Dzlib.h171 /* Allowed flush values; see deflate() and inflate() below for details */
203 /* Possible values of the data_type field (though see inflate()) */
376 inflate. If zalloc and zfree are set to Z_NULL, inflateInit updates them to
385 will be done by inflate(). (So next_in and avail_in may be modified, but
388 until inflate() is called.
392 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
394 inflate decompresses as much data as possible, and stops when the input
399 The detailed semantics are as follows. inflate performs one or both of the
405 resume at this point for the next call of inflate().
408 accordingly. inflate() provide
[all...]
H A Dzconf.h.cmakein92 # define inflate z_inflate
257 The memory requirements for inflate are (in bytes) 1 << windowBits
H A Dzconf.h.in90 # define inflate z_inflate
255 The memory requirements for inflate are (in bytes) 1 << windowBits
/vbox/src/libs/zlib-1.2.6/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);
333 ret = inflate(
[all...]
H A Dexample.c236 * Test inflate() with small buffers
260 err = inflate(&d_stream, Z_NO_FLUSH);
262 CHECK_ERR(err, "inflate");
269 fprintf(stderr, "bad inflate\n");
272 printf("inflate(): %s\n", (char *)uncompr);
332 * Test inflate() with large buffers
356 err = inflate(&d_stream, Z_NO_FLUSH);
358 CHECK_ERR(err, "large inflate");
365 fprintf(stderr, "bad large inflate: %ld\n", d_stream.total_out);
435 inflate(
[all...]
H A Dminigzip.c142 /* for Z_SOLO, create simplified gz* functions using deflate and inflate */
279 ret = inflate(strm, Z_NO_FLUSH);
/vbox/src/libs/zlib-1.2.6/examples/
H A Dfitblk.c94 return last deflate() return value, or Z_MEM_ERROR if inflate()
106 ret = inflate(inf, Z_NO_FLUSH);
134 z_stream def, inf; /* zlib deflate and inflate states */
H A Dzpipe.c1 /* zpipe.c: example of proper use of zlib's inflate() and deflate()
8 Use switch statement for inflate() return values
100 /* allocate inflate state */
121 /* run inflate() on input until output buffer not full */
125 ret = inflate(&strm, Z_NO_FLUSH);
142 /* done when inflate() says it's done */
H A Dzran.c28 inflate is initialized with those bits and the 32K of uncompressed data, and
149 /* initialize inflate */
159 /* inflate the input, maintain a sliding window, and build an index -- this
186 /* inflate until out of input, output, or at end of block --
190 ret = inflate(&strm, Z_BLOCK); /* return at end of block */
263 /* initialize file and inflate state to start there */
269 ret = inflateInit2(&strm, -15); /* raw inflate */
321 ret = inflate(&strm, Z_NO_FLUSH); /* normal inflate */
H A Dgzjoin.c51 inflate() and the crc32_combine() function. gzjoin will not compile with
60 /* crc32(), crc32_combine(), inflateInit2(), inflate(), inflateEnd() */
288 z_stream strm; /* zlib inflate stream */
296 /* allocate buffer for uncompressed data and initialize raw inflate
308 /* inflate and copy compressed data, clear last-block bit if requested */
328 ret = inflate(&strm, Z_BLOCK);
H A Dgzappend.c51 zlib 1.2.x's inflate() function. This option returns from inflate() at each
54 another required feature of zlib 1.2.x is that inflate() now provides the
307 /* inflate and check for errors */
308 ret = inflate(strm, Z_BLOCK);
/vbox/src/libs/zlib-1.2.6/contrib/testzlib/
H A Dtestzlib.c250 ret=inflate(&zcpr,Z_SYNC_FLUSH);
/vbox/src/libs/zlib-1.2.6/as400/
H A Dzlib.inc297 D inflate PR 10I 0 extproc('inflate') Expand data
381 D inflateMark PR 10I 0 extproc('inflateMark') Get inflate info

Completed in 2429 milliseconds

12