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

1 2 3 4 5 6 7

  /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/libs/gui/include/gui/
IGraphicBufferProducer.h 335 inline void deflate(int64_t* outTimestamp, bool* outIsAutoTimestamp, function in struct:android::IGraphicBufferProducer::QueueBufferInput
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
DeflaterOutputStreamTest.java 58 protected void deflate() throws IOException { method in class:DeflaterOutputStreamTest.MyDeflaterOutputStream
60 super.deflate();
75 Deflater deflate = new Deflater(1); local
76 deflate.setInput(byteArray);
77 while (!(deflate.needsInput())) {
78 x += deflate.deflate(outputBuf, x, outputBuf.length - x);
80 deflate.finish();
81 while (!(deflate.finished())) {
82 x = x + deflate.deflate(outputBuf, x, outputBuf.length - x)
    [all...]
InflaterTest.java 148 Deflater deflate = new Deflater(1); local
149 deflate.setInput(byteArray);
150 while (!(deflate.needsInput())) {
151 x += deflate.deflate(outPutBuf, x, outPutBuf.length - x);
153 deflate.finish();
154 while (!(deflate.finished())) {
155 x = x + deflate.deflate(outPutBuf, x, outPutBuf.length - x);
170 // System.out.print(deflate.getTotalOut() + " " + inflate.getTotalIn())
208 Deflater deflate = new Deflater(1); local
    [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/ojluni/src/main/java/java/util/zip/
DeflaterOutputStream.java 36 * the "deflate" compression format. It is also used as the basis for other
212 deflate(); method
227 deflate(); method
251 protected void deflate() throws IOException { method in class:DeflaterOutputStream
254 while ((len = def.deflate(buf, 0, buf.length)) > 0) {
277 while ((len = def.deflate(buf, 0, buf.length, Deflater.SYNC_FLUSH)) > 0)
Deflater.java 54 * int compressedDataLength = compresser.deflate(output);
99 * Compression method for the deflate algorithm (the only one currently
144 * @see Deflater#deflate(byte[], int, int, int)
153 * @see Deflater#deflate(byte[], int, int, int)
163 * @see Deflater#deflate(byte[], int, int, int)
276 * of {@code deflate} will compress the input available so far with
305 * of {@code deflate} will compress the input available so far
365 * An invocation of this method of the form {@code deflater.deflate(b, off, len)}
367 * {@code deflater.deflate(b, off, len, Deflater.NO_FLUSH)}.
375 public int deflate(byte[] b, int off, int len) method in class:Deflater
394 public int deflate(byte[] b) { method in class:Deflater
442 public int deflate(byte[] b, int off, int len, int flush) { method in class:Deflater
    [all...]
  /bootable/recovery/tests/component/
imgdiff_test.cpp 53 size_t deflate = 0; local
74 deflate++;
82 if (num_deflate != nullptr) *num_deflate = deflate;
    [all...]
  /external/freetype/src/gzip/
ftzconf.h 17 # define deflate z_deflate macro
127 /* The memory requirements for deflate are (in bytes):
  /external/syslinux/com32/lib/zlib/
zconf.in.h 16 # define deflate z_deflate macro
141 /* The memory requirements for deflate are (in bytes):
  /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)
28 Compress or decompress file (or stdin) using "deflate" algorithm.
43 Compress or decompress file (or stdin) using "deflate" algorithm.
349 // Deflate from TT.infd to bitbuf
350 // For deflate, TT.len = input read, TT.pos = input consumed
351 static void deflate(struct bitbuf *bb) function
387 // Allocate memory for deflate/inflate.
463 // 2 ID bytes (1F, 8b), gzip method byte (8=deflate), FLAG byte (none)
    [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/
DeflaterOutputStreamTest.java 110 public int deflate(byte[] buf, int offset, int byteCount) { method in class:DeflaterOutputStreamTest.FlushingDeflater
111 return super.deflate(buf, offset, byteCount, Deflater.SYNC_FLUSH);
InflaterTest.java 46 byte[] deflatedBytes = deflate(expectedBytes, dictionary);
101 byte[] emptyInput = deflate(new byte[0], null);
110 private static byte[] deflate(byte[] input, byte[] dictionary) { method in class:InflaterTest
121 int byteCount = deflater.deflate(buf);
139 byte[] compressed = deflate(new byte[] { 1, 2, 3 }, null);
  /prebuilts/go/darwin-x86/src/compress/flate/
deflate.go 26 // RFC 1951 compliant. That is, any valid DEFLATE decompressor will
112 // deflate state
384 func (d *compressor) deflate() { func
601 d.step = (*compressor).deflate
658 // necessary DEFLATE framing.
723 // http://www.bolet.org/~pornin/deflate-flush.html
  /prebuilts/go/linux-x86/src/compress/flate/
deflate.go 26 // RFC 1951 compliant. That is, any valid DEFLATE decompressor will
112 // deflate state
384 func (d *compressor) deflate() { func
601 d.step = (*compressor).deflate
658 // necessary DEFLATE framing.
723 // http://www.bolet.org/~pornin/deflate-flush.html
  /toolchain/binutils/binutils-2.27/zlib/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));
  /toolchain/binutils/binutils-2.27/zlib/contrib/pascal/
zlibpas.pas 107 function deflate(var strm: z_stream; flush: Integer): Integer; function
179 {$L deflate.obj}
195 function deflate; external; function
  /development/ndk/platforms/android-14/include/
zconf.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
zconf.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
zconf.in.h 17 # define deflate z_deflate macro
151 /* The memory requirements for deflate are (in bytes):
  /frameworks/base/core/java/android/app/backup/
BlobBackupHelper.java 160 private byte[] deflate(byte[] data) { method in class:BlobBackupHelper
250 final byte[] payload = deflate(getBackupPayload(key));
  /tools/apksig/src/main/java/com/android/apksig/internal/zip/
ZipUtils.java 286 public static DeflateResult deflate(ByteBuffer input) { method in class:ZipUtils
308 int chunkSize = deflater.deflate(buf);

Completed in 1168 milliseconds

1 2 3 4 5 6 7