HomeSort by relevance Sort by last modified time
    Searched defs:deflate (Results 1 - 25 of 137) 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/okio/src/test/java/okio/
InflaterSourceTest.java 73 Buffer deflated = deflate(original);
95 /** Use DeflaterOutputStream to deflate source. */
96 private Buffer deflate(ByteString source) throws IOException { method in class:InflaterSourceTest
  /frameworks/native/include/gui/
IGraphicBufferProducer.h 287 inline void deflate(int64_t* outTimestamp, bool* outIsAutoTimestamp, function in struct:android::IGraphicBufferProducer::QueueBufferInput
335 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/okhttp/okio/okio/src/main/java/okio/
DeflaterSink.java 24 * A sink that uses <a href="http://tools.ietf.org/html/rfc1951">DEFLATE</a> to
67 // Deflate those bytes into sink.
68 deflate(false);
85 private void deflate(boolean syncFlush) throws IOException { method in class:DeflaterSink
90 // The 4-parameter overload of deflate() doesn't exist in the RI until
95 ? deflater.deflate(s.data, s.limit, Segment.SIZE - s.limit, Deflater.SYNC_FLUSH)
96 : deflater.deflate(s.data, s.limit, Segment.SIZE - s.limit);
114 deflate(true);
120 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/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
BinaryOutputCapsule.java 467 baos.write(deflate(ByteUtils.convertToBytes(value))); method
559 baos.write(deflate(ByteUtils.convertToBytes(value))); method
689 protected static byte[] deflate(byte[] bytes) { method in class:BinaryOutputCapsule
  /external/toybox/toys/pending/
compress.c 1 /* compress.c - deflate/inflate code for zip, gzip, zlib, and raw
5 * The inflate/deflate code lives here, so the various things that use it
11 * See RFCs 1950 (zlib), 1951 (deflate), and 1952 (gzip)
31 Compress or decompress file (or stdin) using "deflate" algorithm.
47 Compess (deflate) file(s). With no files, compress stdin to stdout.
80 Compress or decompress file (or stdin) using "deflate" algorithm.
102 Decompess (deflate) file(s). With no files, compress stdin to stdout.
415 // Deflate from TT.infd to bitbuf
416 // For deflate, TT.len = input read, TT.pos = input consumed
417 static void deflate(struct bitbuf *bb function
    [all...]
  /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);
130 byte[] compressed = deflate(new byte[] { 1, 2, 3}, null);
  /development/ndk/platforms/android-3/include/
zconf.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
HttpZipLocator.java 94 boolean deflate; field in class:HttpZipLocator.ZipEntry2
227 entry.deflate = (method == ZipEntry.DEFLATED);
324 if (entry.deflate){
  /frameworks/base/core/java/android/app/backup/
BlobBackupHelper.java 148 private byte[] deflate(byte[] data) { method in class:BlobBackupHelper
235 final byte[] payload = deflate(getBackupPayload(key));
  /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):
  /prebuilts/ndk/6/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 502 milliseconds

1 2 3 4 5 6