Searched defs:deflate (Results 1 - 13 of 13) sorted by relevance

/external/dropbear/
H A Dconfigure3918 echo "$as_me:$LINENO: checking for deflate in -lz" >&5
3919 echo $ECHO_N "checking for deflate in -lz... $ECHO_C" >&6
3938 char deflate ();
3942 deflate (); function
4003 echo "$as_me:$LINENO: checking for deflate in -lz" >&5
4004 echo $ECHO_N "checking for deflate in -lz... $ECHO_C" >&6
4023 char deflate ();
4027 deflate (); function
/external/ppp/pppd/
H A Dccp.h35 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? */
/external/zlib/contrib/dotzlib/DotZLib/
H A DDeflater.cs16 /// Implements a data compressor, using the deflate algorithm in the ZLib dll
25 private static extern int deflate(ref ZStream sz, int flush); method in class:DotZLib.Deflater
69 err = deflate(ref _ztream, (int)FlushTypes.None);
74 err = deflate(ref _ztream, (int)FlushTypes.None);
91 err = deflate(ref _ztream, (int)FlushTypes.Finish);
101 /// Closes the internal zlib deflate stream
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
H A DDeflaterOutputStreamTest.java53 protected void deflate() throws IOException { method in class:DeflaterOutputStreamTest.MyDeflaterOutputStream
55 super.deflate();
70 Deflater deflate = new Deflater(1);
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
[all...]
/external/zlib/contrib/pascal/
H A Dzlibpas.pas85 function deflate(var strm: z_stream; flush: Integer): Integer; function
148 {$L deflate.obj}
162 function deflate; external; function
/external/zlib/contrib/delphi/
H A DZLib.pas203 {$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/chromium/sdch/open-vcdiff/src/
H A Dzconf.h17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
/external/qemu/distrib/zlib-1.2.3/
H A Dzconf.h17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
H A Ddeflate.c0 /* deflate.c -- compress data using the deflation algorithm
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
527 * Flush as much pending output as possible. All deflate() outpu
552 int ZEXPORT deflate (strm, flush) function
[all...]
/external/zlib/
H A Dzconf.in.h17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
H A Ddeflate.c0 /* deflate.c -- compress data using the deflation algorithm
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 */
557 * Flush as much pending output as possible. All deflate() outpu
582 int ZEXPORT deflate (strm, flush) function
[all...]
H A Dzconf.h36 # define deflate z_deflate macro
223 /* The memory requirements for deflate are (in bytes):
/external/openssl/crypto/comp/
H A Dc_zlib.c126 #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);

Completed in 312 milliseconds