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

1 2

  /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 */
  /external/apache-harmony/archive/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 139 Deflater deflate = new Deflater(1); local
140 deflate.setInput(byteArray);
141 while (!(deflate.needsInput())) {
142 x += deflate.deflate(outPutBuf, x, outPutBuf.length - x);
144 deflate.finish();
145 while (!(deflate.finished())) {
146 x = x + deflate.deflate(outPutBuf, x, outPutBuf.length - x);
161 // System.out.print(deflate.getTotalOut() + " " + inflate.getTotalIn())
196 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 28 * compresses data using the <i>DEFLATE</i> algorithm. Basically it wraps the
136 protected void deflate() throws IOException { method in class:DeflaterOutputStream
138 while ((byteCount = def.deflate(buf)) != 0) {
175 int byteCount = def.deflate(buf);
200 deflate(); method
215 while ((byteCount = def.deflate(buf, 0, buf.length, Deflater.SYNC_FLUSH)) != 0) {
Deflater.java 25 * This class compresses data using the <i>DEFLATE</i> algorithm (see <a
41 * int byteCount = deflater.deflate(buf);
201 public int deflate(byte[] buf) { method in class:Deflater
202 return deflate(buf, 0, buf.length);
211 public synchronized int deflate(byte[] buf, int offset, int byteCount) { method in class:Deflater
224 * and additional calls to {@link #deflate} to be made.
228 public synchronized int deflate(byte[] buf, int offset, int byteCount, int flush) { method in class:Deflater
298 * successfully compressed and consumed by {@link #deflate deflate}.
  /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));
  /libcore/luni/src/test/java/libcore/java/util/zip/
InflaterTest.java 40 byte[] deflatedBytes = deflate(expectedBytes, dictionary);
95 byte[] emptyInput = deflate(new byte[0], null);
103 private static byte[] deflate(byte[] input, byte[] dictionary) { method in class:InflaterTest
113 int byteCount = deflater.deflate(buf);
  /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/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):
  /prebuilt/ndk/android-ndk-r5/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-r6/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-r6/platforms/android-3/arch-x86/usr/include/
zconf.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):

Completed in 838 milliseconds

1 2