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

12

/external/okhttp/okio/src/main/java/okio/
H A DDeflaterSink.java57 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);
/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/okhttp/okio/src/test/java/okio/
H A DInflaterSourceTest.java72 OkBuffer deflated = deflate(original);
85 /** Use DeflaterOutputStream to deflate source. */
86 private OkBuffer deflate(ByteString source) throws IOException { method in class:InflaterSourceTest
/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/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:blink::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:blink::WebSocketPerMessageDeflate
192 m_failureReason = "Failed to deflate a frame";
/external/freetype/src/gzip/
H A Dzconf.h17 # define deflate z_deflate macro
127 /* The memory requirements for deflate are (in bytes):
/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_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/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/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/qemu/distrib/zlib-1.2.8/
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/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/pdfium/core/include/thirdparties/zlib/
H A Dzconf.h40 # define deflate z_deflate macro
250 /* The memory requirements for deflate are (in bytes):
H A Dzlib.h28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
50 #define deflate FPDFAPI_deflate macro
121 around a deflate stream, which is itself documented in RFC 1951.
126 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
231 /* Allowed flush values; see deflate() and inflate() below for details */
266 /* The deflate compression method (the only one supported in this version) */
302 this will be done by deflate().
306 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
308 deflate compresses as much data as possible, and stops when the input
313 The detailed semantics are as follows. deflate perform
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_deflate.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
410 s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */
514 err = deflate(strm, Z_BLOCK);
557 * resulting from using fixed blocks instead of stored blocks, which deflate
584 case 0: /* raw deflate */
636 * Flush as much pending output as possible. All deflate() outpu
664 int ZEXPORT deflate ( function
[all...]
H A Dzconf.h40 # define deflate z_deflate macro
250 /* The memory requirements for deflate are (in bytes):
H A Dzlib.h28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
54 #define deflate FPDFAPI_deflate macro
125 around a deflate stream, which is itself documented in RFC 1951.
130 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
235 /* Allowed flush values; see deflate() and inflate() below for details */
270 /* The deflate compression method (the only one supported in this version) */
306 this will be done by deflate().
310 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
312 deflate compresses as much data as possible, and stops when the input
317 The detailed semantics are as follows. deflate perform
[all...]
/external/zlib/
H A Dzconf.h40 # define deflate z_deflate macro
250 /* The memory requirements for deflate are (in bytes):
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp46 -C Code for Zlib (huffman, deflate, ...)
862 /*get the literal and length code tree of a deflated block with fixed tree, as per the deflate specification*/
881 /*get the distance code tree of a deflated block with fixed tree, as specified in the deflate specification*/
929 /*get the tree of a deflated block with fixed tree, as specified in the deflate specification*/
1316 /*values in encoded vector are those used by deflate:
1340 gives exactly the same compression as the brute force method, since deflate's
1509 while(foreptr != lastptr && *backptr == *foreptr) /*maximum supported length by deflate is max length*/
1602 /*non compressed deflate block data: 1 bit BFINAL,2 bits BTYPE,(5 bits): it jumps to start of next byte,
1837 /*lenghts of code length tree is in the order as specified by deflate*/
2016 static unsigned deflate(unsigne function
[all...]

Completed in 280 milliseconds

12