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

1 2 3 4 5 6

  /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/okhttp/okio/src/test/java/okio/
InflaterSourceTest.java 72 OkBuffer deflated = deflate(original);
85 /** Use DeflaterOutputStream to deflate source. */
86 private OkBuffer deflate(ByteString source) throws IOException { method in class:InflaterSourceTest
  /frameworks/native/include/gui/
IGraphicBufferProducer.h 284 inline void deflate(int64_t* outTimestamp, bool* outIsAutoTimestamp, function in struct:android::IGraphicBufferProducer::QueueBufferInput
325 inline void deflate(uint32_t* outWidth, function in struct:android::IGraphicBufferProducer::QueueBufferOutput
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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...]
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketDeflateFramer.cpp 64 : 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
WebSocketPerMessageDeflate.cpp 67 : 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
192 m_failureReason = "Failed to deflate a frame";
  /external/okhttp/okio/src/main/java/okio/
DeflaterSink.java 24 * A sink that uses <a href="http://tools.ietf.org/html/rfc1951">DEFLATE</a> to
56 // Deflate those bytes into sink.
57 deflate(false);
71 private void deflate(boolean syncFlush) throws IOException { method in class:DeflaterSink
76 // The 4-parameter overload of deflate() doesn't exist in the RI until
81 ? deflater.deflate(s.data, s.limit, Segment.SIZE - s.limit, Deflater.SYNC_FLUSH)
82 : deflater.deflate(s.data, s.limit, Segment.SIZE - s.limit);
95 deflate(true);
107 deflate(false);
  /libcore/luni/src/main/java/java/util/zip/
DeflaterOutputStream.java 28 * compresses data using the <i>DEFLATE</i> algorithm. Basically it wraps the
115 protected void deflate() throws IOException { method in class:DeflaterOutputStream
117 while ((byteCount = def.deflate(buf)) != 0) {
154 int byteCount = def.deflate(buf);
179 deflate(); method
191 // Though not documented, it's illegal to call deflate with any flush param
193 // at the start of the deflate function in deflate.c.
196 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/freetype/src/gzip/
zconf.h 17 # define deflate z_deflate macro
127 /* The memory requirements for deflate are (in bytes):
  /external/zlib/src/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/zlib/src/contrib/pascal/
zlibpas.pas 107 function deflate(var strm: z_stream; flush: Integer): Integer; function
179 {$L deflate.obj}
195 function deflate; external; function
  /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_org/sdch/open-vcdiff/src/zlib/
zconf.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
  /external/chromium_org/third_party/openssl/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/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);
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
zconf.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/
zconf.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/
zconf.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
zconf.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/
zconf.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
zconf.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/
zconf.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/
zconf.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):

Completed in 2186 milliseconds

1 2 3 4 5 6