HomeSort by relevance Sort by last modified time
    Searched defs:deflate (Results 1 - 25 of 43) sorted by null

1 2

  /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):