/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 */
|
ccp.c | 50 * size of 8 (window size = 256) for Deflate compression will cause 51 * buffer overruns and kernel crashes in the deflate module. 88 { "deflate", o_special, (void *)setdeflate, 89 "request Deflate compression", 91 { "nodeflate", o_bool, &ccp_wantoptions[0].deflate, 92 "don't allow Deflate compression", OPT_PRIOSUB | OPT_A2CLR, 93 &ccp_allowoptions[0].deflate }, 94 { "-deflate", o_bool, &ccp_wantoptions[0].deflate, 95 "don't allow Deflate compression", OPT_ALIAS | OPT_PRIOSUB | OPT_A2CLR [all...] |
/external/libpng/contrib/pngminim/decoder/ |
gather.sh | 9 rm minigzip.c example.c compress.c deflate.c gz*
|
/dalvik/libcore/archive/src/main/java/java/util/zip/ |
DeflaterOutputStream.java | 28 * compresses data using the <i>DEFLATE</i> algorithm. Basically it wraps the 136 protected void deflate() throws IOException { method in class:DeflaterOutputStream 139 x = def.deflate(buf); 179 x = def.deflate(buf); 217 deflate(); method 234 int count = def.deflate(buf, 0, buf.length, Deflater.SYNC_FLUSH);
|
Deflater.java | 22 * This class compresses data using the <i>DEFLATE</i> algorithm (see <a 114 // A stub buffer used when deflate() called while inputBuffer has not been 188 * @see #deflate(byte[], int, int) 190 public int deflate(byte[] buf) { method in class:Deflater 191 return deflate(buf, 0, buf.length); 206 public synchronized int deflate(byte[] buf, int off, int nbytes) { method in class:Deflater 223 * and additional calls to {@link #deflate} to be made. 227 public synchronized int deflate(byte[] buf, int off, int nbytes, int flush) { method in class:Deflater
|
/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...] |
DeflaterOutputStreamTest.java | 59 protected void deflate() throws IOException { method in class:DeflaterOutputStreamTest.MyDeflaterOutputStream 61 super.deflate(); 80 Deflater deflate = new Deflater(1); local 81 deflate.setInput(byteArray); 82 while (!(deflate.needsInput())) { 83 x += deflate.deflate(outPutBuf, x, outPutBuf.length - x); 85 deflate.finish(); 86 while (!(deflate.finished())) { 87 x = x + deflate.deflate(outPutBuf, x, outPutBuf.length - x) [all...] |
InflaterTest.java | 176 Deflater deflate = new Deflater(1); local 177 deflate.setInput(byteArray); 178 while (!(deflate.needsInput())) { 179 x += deflate.deflate(outPutBuf, x, outPutBuf.length - x); 181 deflate.finish(); 182 while (!(deflate.finished())) { 183 x = x + deflate.deflate(outPutBuf, x, outPutBuf.length - x); 198 // System.out.print(deflate.getTotalOut() + " " + inflate.getTotalIn()) 239 Deflater deflate = new Deflater(1); local [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
|
ZLib.pas | 203 {$L deflate.obj} 240 // deflate compresses data 243 function deflate(var strm: TZStreamRec; flush: Integer): Integer; external; function 304 while CCheck(deflate(strm, Z_FINISH)) <> Z_STREAM_END do 424 while (CCheck(deflate(FZRec, Z_FINISH)) <> Z_STREAM_END) 451 CCheck(deflate(FZRec, 0));
|
/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/ipsec-tools/src/racoon/samples/roadwarrior/server/ |
racoon.conf | 40 compression_algorithm deflate;
|
/external/libpng/contrib/pngminim/preader/ |
gather.sh | 10 rm minigzip.c example.c compress.c deflate.c gz*
|
/dalvik/libcore/archive/src/test/java/java/util/zip/ |
DeflaterTest.java | 57 int lastDeflated = deflater.deflate(compressed, totalDeflated,
|
/external/libpng/contrib/pngminim/encoder/ |
makefile | 17 ZOBJS = adler32$(O) compress$(O) crc32$(O) deflate$(O) \
|
/external/qemu/distrib/zlib-1.2.3/ |
compress.c | 49 err = deflate(&stream, Z_FINISH);
|
/external/zlib/ |
compress.c | 49 err = deflate(&stream, Z_FINISH);
|
example.c | 167 * Test deflate() with small buffers 189 err = deflate(&c_stream, Z_NO_FLUSH); 190 CHECK_ERR(err, "deflate"); 195 err = deflate(&c_stream, Z_FINISH); 197 CHECK_ERR(err, "deflate"); 246 * Test deflate() with large buffers and dynamic change of compression level 270 err = deflate(&c_stream, Z_NO_FLUSH); 271 CHECK_ERR(err, "deflate"); 273 fprintf(stderr, "deflate not greedy\n"); 281 err = deflate(&c_stream, Z_NO_FLUSH) [all...] |
make_vms.com | 75 $ CALL MAKE deflate.OBJ "CC ''CCOPT' deflate" - 76 deflate.c deflate.h zutil.h zlib.h zconf.h 88 trees.c deflate.h zutil.h zlib.h zconf.h 280 deflate.obj, trees.obj, zutil.obj, inflate.obj, \ 309 deflate.obj : deflate.c deflate.h zutil.h zlib.h zconf.h 316 trees.obj : trees.c deflate.h zutil.h zlib.h zconf. [all...] |
Android.mk | 14 deflate.c \
|
/external/zlib/examples/ |
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...] |
/frameworks/base/tests/CoreTests/android/core/ |
DeflateTest.java | 39 * Simple inflate/deflate test, taken from the reference docs for the 53 int compressedDataLength = compresser.deflate(output); 153 // deflate to current position in output buffer 156 compCount = deflater.deflate(outBuf, outPosn, LOCAL_BUF_SIZE);
|
/external/ppp/pppd/plugins/rp-pppoe/ |
plugin.c | 334 ccp_allowoptions[0].deflate = 0 ; 335 ccp_wantoptions[0].deflate = 0 ;
|