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

12

/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/src/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/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWebSocketDeflateFramer.cpp64 : WebSocketExtensionProcessor("x-webkit-deflate-frame")
79 m_failureReason = "Received duplicate deflate-frame response";
108 m_failureReason = "Received unexpected deflate-frame parameter";
174 PassOwnPtr<DeflateResultHolder> WebSocketDeflateFramer::deflate(WebSocketFrame& frame) function in class:WebCore::WebSocketDeflateFramer
H A DWebSocketPerMessageDeflate.cpp67 : WebSocketExtensionProcessor("permessage-deflate")
75 return "permessage-deflate; client_max_window_bits";
82 m_failureReason = "Received duplicate permessage-deflate response";
137 m_failureReason = "Received an unexpected permessage-deflate extension parameter";
172 bool WebSocketPerMessageDeflate::deflate(WebSocketFrame& frame) function in class:WebCore::WebSocketPerMessageDeflate
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
H A DBinaryOutputCapsule.java467 baos.write(deflate(ByteUtils.convertToBytes(value)));
559 baos.write(deflate(ByteUtils.convertToBytes(value)));
689 protected static byte[] deflate(byte[] bytes) { method in class:BinaryOutputCapsule
/external/zlib/src/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/zlib/src/contrib/pascal/
H A Dzlibpas.pas107 function deflate(var strm: z_stream; flush: Integer): Integer; function
179 {$L deflate.obj}
195 function deflate; external; function
/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/chromium_org/sdch/open-vcdiff/src/zlib/
H A Dzconf.h17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
/external/libppp/src/
H A Dccp.h73 } deflate; member in struct:ccp_config
/external/open-vcdiff/src/zlib/
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/chromium_org/third_party/openssl/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);
/external/chromium_org/third_party/zlib/
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 */
147 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
378 s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */
443 err = deflate(strm, Z_BLOCK);
484 * resulting from using fixed blocks instead of stored blocks, which deflate
511 case 0: /* raw deflate */
563 * Flush as much pending output as possible. All deflate() outpu
588 int ZEXPORT deflate (strm, flush) function
[all...]
H A Dmozzconf.h50 #define deflate MOZ_Z_deflate macro
H A Dzconf.h39 # define deflate z_deflate macro
226 /* The memory requirements for deflate are (in bytes):
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
H A DHttpZipLocator.java94 boolean deflate; field in class:HttpZipLocator.ZipEntry2
227 entry.deflate = (method == ZipEntry.DEFLATED);
324 if (entry.deflate){
/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);
/external/zlib/src/
H A Ddeflate.c0 /* deflate.c -- compress data using the deflation algorithm
52 #include "deflate.h"
55 " deflate 1.2.8 Copyright 1995-2013 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
411 s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */
515 err = deflate(strm, Z_BLOCK);
558 * resulting from using fixed blocks instead of stored blocks, which deflate
585 case 0: /* raw deflate */
637 * Flush as much pending output as possible. All deflate() outpu
665 int ZEXPORT deflate (strm, flush) function
[all...]
H A Dzconf.h40 # define deflate z_deflate macro
250 /* The memory requirements for deflate are (in bytes):
/external/zlib/
H A Dzconf.h40 # define deflate z_deflate macro
250 /* The memory requirements for deflate are (in bytes):
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 701 milliseconds

12