HomeSort by relevance Sort by last modified time
    Searched defs:deflate (Results 1 - 25 of 35) 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 */
  /dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
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...]
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...]
  /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
  /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
  /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));
  /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.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
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.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...]
  /ndk/build/platforms/android-3/arch-arm/usr/include/
zconf.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
  /ndk/build/platforms/android-4/arch-arm/usr/include/
zconf.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
  /ndk/build/platforms/android-5/arch-arm/usr/include/
zconf.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
  /ndk/build/platforms/android-5/arch-x86/usr/include/
zconf.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
  /ndk/build/platforms/android-8/arch-arm/usr/include/
zconf.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
  /ndk/build/platforms/android-8/arch-x86/usr/include/
zconf.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
  /prebuilt/common/commons-compress/
commons-compress-1.0.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 

Completed in 1016 milliseconds

1 2