/external/clearsilver/ruby/ext/hdf/ |
extconf.rb | 8 have_library("z", "deflate")
|
/external/qemu/distrib/zlib-1.2.3/ |
sources.make | 2 ZLIB_SOURCES := adler32.c compress.c crc32.c deflate.c gzio.c infback.c inffast.c inflate.c inftrees.c trees.c uncompr.c zutil.c
|
zlib.h | 28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format). 58 around a deflate stream, which is itself documented in RFC 1951. 63 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream. 168 /* Allowed flush values; see deflate() and inflate() below for details */ 203 /* The deflate compression method (the only one supported in this version) */ 238 perform any compression: this will be done by deflate(). 242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush)); 244 deflate compresses as much data as possible, and stops when the input 249 The detailed semantics are as follows. deflate performs one or both of the 255 processing will resume at this point for the next call of deflate() [all...] |
/external/ppp/pppd/ |
ccp.h | 35 bool deflate; /* do Deflate? */ member in struct:ccp_options 38 bool deflate_correct; /* use correct code for deflate? */ 39 bool deflate_draft; /* use draft RFC code for deflate? */ 42 u_short deflate_size; /* lg(window size) for Deflate */
|
/external/zlib/contrib/puff/ |
README | 8 puff.c provides the routine puff() to decompress the deflate data format. It 14 puff.c was written to document the deflate format unambiguously, by virtue of 16 describes the deflate format. I have received many questions on details of the 17 deflate format, and I hope that reading this code will answer those questions. 18 puff.c is heavily commented with details of the deflate format, especially 37 Then you can call puff() to decompress a deflate stream that is in memory in 46 that in order to decompress the deflate data successfully, you need to know 57 The deflate format is self-terminating. If the deflate stream does not end
|
/external/zlib/examples/ |
zlib_how.html | 11 We often get questions about how the <tt>deflate()</tt> and <tt>inflate()</tt> functions should be used. 16 from an input file to an output file using <tt>deflate()</tt> and <tt>inflate()</tt> respectively. The 22 /* zpipe.c: example of proper use of zlib's inflate() and deflate() 41 <tt>deflate()</tt>, and <tt>deflateEnd()</tt>, and the basic decompression 73 return codes. <tt>flush</tt> will keep track of the current flushing state for <tt>deflate()</tt>, 75 <tt>have</tt> is the amount of data returned from <tt>deflate()</tt>. The <tt>strm</tt> structure 77 <tt>deflate()</tt> state. <tt>in</tt> and <tt>out</tt> are the input and output buffers for 78 <tt>deflate()</tt>. 87 <tt>deflateInit()</tt>. This must be done before the first use of <tt>deflate()</tt>. 121 /* allocate deflate state * [all...] |
README.examples | 27 - illustrates use of raw deflate and Z_SYNC_FLUSH 32 - describes in excruciating detail the use of deflate() and inflate() 36 - illustrates the proper use of deflate() and inflate()
|
fitblk.c | 19 enough deflate blocks to produce output to fill the requested 21 below). The last deflate block may go quite a bit past that, but 24 buffer. The deflate process is terminated after that amount of 26 The last deflate block of the result will be of a comparable size 27 to the final product, so that the header for that deflate block and 44 the last deflate block compressing more efficiently with a smaller 47 out the requested size, and small enough so that the final deflate 48 block of the second pass will be close in size to the final deflate 71 input reached; return last deflate() return value, or Z_ERRNO if 86 ret = deflate(def, flush) [all...] |
zpipe.c | 1 /* zpipe.c: example of proper use of zlib's inflate() and deflate() 34 /* allocate deflate state */ 52 /* run deflate() on input until output buffer not full, finish 57 ret = deflate(&strm, flush); /* no bad return value */ 78 allocated for processing, Z_DATA_ERROR if the deflate data is 100 /* decompress until deflate stream ends or end of file */ 155 fputs("invalid or incomplete deflate data\n", stderr);
|
/external/ipsec-tools/src/racoon/samples/roadwarrior/server/ |
racoon.conf | 40 compression_algorithm deflate;
|
racoon.conf-radius | 40 compression_algorithm deflate;
|
/external/zlib/old/os2/ |
zlib.def | 14 deflate
|
/external/zlib/win32/ |
zlib.def | 7 deflate
|
/dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
DeflaterTest.java | 74 * @tests java.util.zip.Deflater#deflate(byte[]) 79 method = "deflate", 92 x += defl.deflate(outPutBuf); 95 .deflate(outPutBuf)); 123 * @tests java.util.zip.Deflater#deflate(byte[], int, int) 128 method = "deflate", 143 x += defl.deflate(outPutBuf, offSet, length); 146 .deflate(outPutBuf, offSet, length)); 185 defl.deflate(outPutBuf, offSet, length); 211 defl.deflate(outPutBuf) [all...] |
/external/zlib/contrib/delphi/ |
zlibd32.mak | 21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzio.obj infback.obj 23 OBJP1 = +adler32.obj+compress.obj+crc32.obj+deflate.obj+gzio.obj+infback.obj 39 deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h 54 trees.obj: trees.c zutil.h zlib.h zconf.h deflate.h trees.h
|
/external/zlib/contrib/pascal/ |
zlibd32.mak | 21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzio.obj infback.obj 23 OBJP1 = +adler32.obj+compress.obj+crc32.obj+deflate.obj+gzio.obj+infback.obj 39 deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h 54 trees.obj: trees.c zutil.h zlib.h zconf.h deflate.h trees.h
|
example.pas | 181 * Test deflate with small buffers 206 err := deflate(c_stream, Z_NO_FLUSH); 207 CHECK_ERR(err, 'deflate'); 214 err := deflate(c_stream, Z_FINISH); 217 CHECK_ERR(err, 'deflate'); 269 * Test deflate with large buffers and dynamic change of compression level 292 err := deflate(c_stream, Z_NO_FLUSH); 293 CHECK_ERR(err, 'deflate'); 295 EXIT_ERR('deflate not greedy'); 301 err := deflate(c_stream, Z_NO_FLUSH) [all...] |
/external/ipsec-tools/src/racoon/samples/roadwarrior/client/ |
racoon.conf | 32 compression_algorithm deflate ;
|
/external/libpng/contrib/pngminim/decoder/ |
gather.sh | 9 rm minigzip.c example.c compress.c deflate.c gz*
|
/external/zlib/old/ |
descrip.mms | 12 deflate.obj, trees.obj, zutil.obj, inflate.obj, infblock.obj,\ 36 deflate.obj : deflate.h zutil.h zlib.h zconf.h 46 trees.obj : deflate.h zutil.h zlib.h zconf.h
|
Makefile.riscos | 18 @.lib: @.o.adler32 @.o.compress @.o.crc32 @.o.deflate @.o.gzio \ 21 LibFile $(LibFileflags) @.o.adler32 @.o.compress @.o.crc32 @.o.deflate \ 85 o.deflate: c.deflate 86 o.deflate: h.deflate 87 o.deflate: h.zutil 88 o.deflate: h.zlib 89 o.deflate: h.zconf 140 o.trees: h.deflate [all...] |
/external/zlib/ |
INDEX | 29 deflate.c 30 deflate.h
|
/external/zlib/contrib/masmx86/ |
gvmat32c.c | 4 * from Jean-loup Gailly in deflate.c
13 #include "deflate.h"
|
/external/kernel-headers/original/linux/ |
zlib.h | 27 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format). 35 /* zlib deflate based on ZLIB_VERSION "1.1.3" */ 67 around a deflate stream, which is itself documented in RFC 1951. 146 /* Allowed flush values; see deflate() and inflate() below for details */ 178 /* The deflate compression method (the only one supported in this version) */ 208 perform any compression: this will be done by deflate(). 214 deflate compresses as much data as possible, and stops when the input 219 The detailed semantics are as follows. deflate performs one or both of the 225 processing will resume at this point for the next call of deflate(). 233 Before the call of deflate(), the application should ensure that at leas [all...] |
/external/ipsec-tools/src/racoon/samples/ |
racoon.conf.in | 101 compression_algorithm deflate; 110 compression_algorithm deflate; 119 compression_algorithm deflate;
|