/external/clearsilver/ |
configure | 6347 deflate (); function [all...] |
/external/dropbear/ |
configure | 3942 deflate (); function 4027 deflate (); function [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 */
|
/libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
DeflaterOutputStreamTest.java | 53 protected void deflate() throws IOException { method in class:DeflaterOutputStreamTest.MyDeflaterOutputStream 55 super.deflate(); 70 Deflater deflate = new Deflater(1); local 71 deflate.setInput(byteArray); 72 while (!(deflate.needsInput())) { 73 x += deflate.deflate(outPutBuf, x, outPutBuf.length - x); 75 deflate.finish(); 76 while (!(deflate.finished())) { 77 x = x + deflate.deflate(outPutBuf, x, outPutBuf.length - x) [all...] |
InflaterTest.java | 138 Deflater deflate = new Deflater(1); local 139 deflate.setInput(byteArray); 140 while (!(deflate.needsInput())) { 141 x += deflate.deflate(outPutBuf, x, outPutBuf.length - x); 143 deflate.finish(); 144 while (!(deflate.finished())) { 145 x = x + deflate.deflate(outPutBuf, x, outPutBuf.length - x); 160 // System.out.print(deflate.getTotalOut() + " " + inflate.getTotalIn()) 195 Deflater deflate = new Deflater(1); local [all...] |
/external/zlib/contrib/pascal/ |
zlibpas.pas | 85 function deflate(var strm: z_stream; flush: Integer): Integer; function 148 {$L deflate.obj} 162 function deflate; external; function
|
/libcore/luni/src/main/java/java/util/zip/ |
DeflaterOutputStream.java | 26 * compresses data using the <i>DEFLATE</i> algorithm. Basically it wraps the 134 protected void deflate() throws IOException { method in class:DeflaterOutputStream 136 while ((byteCount = def.deflate(buf)) != 0) { 175 int byteCount = def.deflate(buf); 213 deflate(); method 231 while ((byteCount = def.deflate(buf, 0, buf.length, Deflater.SYNC_FLUSH)) != 0) {
|
Deflater.java | 22 * This class compresses data using the <i>DEFLATE</i> algorithm (see <a 111 // A stub buffer used when deflate() called while inputBuffer has not been 181 * @see #deflate(byte[], int, int) 183 public int deflate(byte[] buf) { method in class:Deflater 184 return deflate(buf, 0, buf.length); 199 public synchronized int deflate(byte[] buf, int off, int nbytes) { method in class:Deflater 216 * and additional calls to {@link #deflate} to be made. 220 public synchronized int deflate(byte[] buf, int off, int nbytes, int flush) { method in class:Deflater
|
/external/zlib/contrib/delphi/ |
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));
|
/development/ndk/platforms/android-3/include/ |
zconf.h | 17 # define deflate z_deflate macro 151 /* The memory requirements for deflate are (in bytes):
|
/external/chromium/sdch/open-vcdiff/src/ |
zconf.h | 17 # define deflate z_deflate macro 151 /* The memory requirements for deflate are (in bytes):
|
/external/chromium/third_party/zlib/ |
mozzconf.h | 50 #define deflate MOZ_Z_deflate macro
|
zconf.h | 20 # define deflate z_deflate macro 154 /* The memory requirements for deflate are (in bytes):
|
deflate.c | 0 /* deflate.c -- compress data using the deflation algorithm 39 * Deutsch, L.P.,"DEFLATE Compressed Data Format Specification". 50 /* @(#) $Id: deflate.c,v 3.6 2005/08/04 19:14:14 tor%cs.brown.edu Exp $ */ 52 #include "deflate.h" 55 " deflate 1.2.3 Copyright 1995-2005 Jean-loup Gailly "; 69 finish_started, /* finish started, need only more output at next deflate */ 115 * See deflate.c for comments about the MIN_MATCH+1. 152 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4 376 s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */ 440 err = deflate(strm, Z_PARTIAL_FLUSH) 552 int ZEXPORT deflate (strm, flush) function [all...] |
/external/openssl/crypto/comp/ |
c_zlib.c | 126 #define deflate p_deflate macro 207 err = deflate(&state->ostream, Z_SYNC_FLUSH); 372 "deflate"); 437 int odone; /* deflate EOF */ 653 ret = deflate(zout, 0); 701 ret = deflate(zout, Z_FINISH);
|
/external/qemu/distrib/zlib-1.2.3/ |
zconf.h | 17 # define deflate z_deflate macro 151 /* The memory requirements for deflate are (in bytes):
|
deflate.c | 0 /* deflate.c -- compress data using the deflation algorithm 39 * Deutsch, L.P.,"DEFLATE Compressed Data Format Specification". 52 #include "deflate.h" 55 " deflate 1.2.3 Copyright 1995-2005 Jean-loup Gailly "; 69 finish_started, /* finish started, need only more output at next deflate */ 115 * See deflate.c for comments about the MIN_MATCH+1. 152 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4 376 s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */ 440 err = deflate(strm, Z_PARTIAL_FLUSH); 481 * resulting from using fixed blocks instead of stored blocks, which deflate 552 int ZEXPORT deflate (strm, flush) function [all...] |
/external/zlib/ |
zconf.in.h | 17 # define deflate z_deflate macro 151 /* The memory requirements for deflate are (in bytes):
|
deflate.c | 0 /* deflate.c -- compress data using the deflation algorithm 39 * Deutsch, L.P.,"DEFLATE Compressed Data Format Specification". 52 #include "deflate.h" 55 " deflate 1.2.5 Copyright 1995-2010 Jean-loup Gailly and Mark Adler "; 69 finish_started, /* finish started, need only more output at next deflate */ 146 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4 372 s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */ 437 err = deflate(strm, Z_BLOCK); 478 * resulting from using fixed blocks instead of stored blocks, which deflate 505 case 0: /* raw deflate */ 582 int ZEXPORT deflate (strm, flush) function [all...] |
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/ |
zconf.h | 17 # define deflate z_deflate macro 151 /* The memory requirements for deflate are (in bytes):
|
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/ |
zconf.h | 17 # define deflate z_deflate macro 151 /* The memory requirements for deflate are (in bytes):
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/ |
zconf.h | 17 # define deflate z_deflate macro 151 /* The memory requirements for deflate are (in bytes):
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/ |
zconf.h | 17 # define deflate z_deflate macro 151 /* The memory requirements for deflate are (in bytes):
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/ |
zconf.h | 17 # define deflate z_deflate macro 151 /* The memory requirements for deflate are (in bytes):
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/ |
zconf.h | 17 # define deflate z_deflate macro 151 /* The memory requirements for deflate are (in bytes):
|