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

1 2 3 4 5 6 7 8

  /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 */
ccp.c 50 * size of 8 (window size = 256) for Deflate compression will cause
51 * buffer overruns and kernel crashes in the deflate module.
88 { "deflate", o_special, (void *)setdeflate,
89 "request Deflate compression",
91 { "nodeflate", o_bool, &ccp_wantoptions[0].deflate,
92 "don't allow Deflate compression", OPT_PRIOSUB | OPT_A2CLR,
93 &ccp_allowoptions[0].deflate },
94 { "-deflate", o_bool, &ccp_wantoptions[0].deflate,
95 "don't allow Deflate compression", OPT_ALIAS | OPT_PRIOSUB | OPT_A2CLR
    [all...]
  /external/libpng/contrib/pngminim/decoder/
gather.sh 9 rm minigzip.c example.c compress.c deflate.c gz*
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
DeflaterTest.java 67 * @tests java.util.zip.Deflater#deflate(byte[])
79 x += defl.deflate(outPutBuf);
82 .deflate(outPutBuf));
109 * @tests java.util.zip.Deflater#deflate(byte[], int, int)
123 x += defl.deflate(outPutBuf, offSet, length);
125 assertEquals("Deflater at end of stream, should return 0", 0, defl.deflate(
164 defl.deflate(outPutBuf, offSet, length);
184 defl.deflate(outPutBuf);
220 x += defl.deflate(outPutBuf);
256 defl.deflate(outPutBuf)
    [all...]
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...]
InflaterTest.java 139 Deflater deflate = new Deflater(1); local
140 deflate.setInput(byteArray);
141 while (!(deflate.needsInput())) {
142 x += deflate.deflate(outPutBuf, x, outPutBuf.length - x);
144 deflate.finish();
145 while (!(deflate.finished())) {
146 x = x + deflate.deflate(outPutBuf, x, outPutBuf.length - x);
161 // System.out.print(deflate.getTotalOut() + " " + inflate.getTotalIn())
196 Deflater deflate = new Deflater(1); local
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
DeflaterOutputStream.java 28 * compresses data using the <i>DEFLATE</i> algorithm. Basically it wraps the
138 protected void deflate() throws IOException { method in class:DeflaterOutputStream
140 while ((byteCount = def.deflate(buf)) != 0) {
177 int byteCount = def.deflate(buf);
202 deflate(); method
217 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/zlib/src/watcom/
watcom_l.mak 7 C_SOURCE = adler32.c compress.c crc32.c deflate.c &
12 OBJS = adler32.obj compress.obj crc32.obj deflate.obj &
30 wlib -b -c $(ZLIB_LIB) -+deflate.obj -+infback.obj
watcom_f.mak 7 C_SOURCE = adler32.c compress.c crc32.c deflate.c &
12 OBJS = adler32.obj compress.obj crc32.obj deflate.obj &
30 wlib -b -c $(ZLIB_LIB) -+deflate.obj -+infback.obj
  /external/zlib/src/contrib/delphi/
zlibd32.mak 21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj
23 OBJP1 = +adler32.obj+compress.obj+crc32.obj+deflate.obj+gzclose.obj+gzlib.obj+gzread.obj
39 deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h
60 trees.obj: trees.c zutil.h zlib.h zconf.h deflate.h trees.h
  /external/zlib/src/contrib/pascal/
zlibd32.mak 21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj
23 OBJP1 = +adler32.obj+compress.obj+crc32.obj+deflate.obj+gzclose.obj+gzlib.obj+gzread.obj
39 deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h
60 trees.obj: trees.c zutil.h zlib.h zconf.h deflate.h trees.h
example.pas 181 * Test deflate with small buffers
206 err := deflate(c_stream, Z_NO_FLUSH);
207 CHECK_ERR(err, 'deflate');
214 err := deflate(c_stream, Z_FINISH);
217 CHECK_ERR(err, 'deflate');
269 * Test deflate with large buffers and dynamic change of compression level
292 err := deflate(c_stream, Z_NO_FLUSH);
293 CHECK_ERR(err, 'deflate');
295 EXIT_ERR('deflate not greedy');
301 err := deflate(c_stream, Z_NO_FLUSH)
    [all...]
  /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);
OldAndroidDeflateTest.java 37 * Simple inflate/deflate test, taken from the reference docs for the
51 int compressedDataLength = compresser.deflate(output);
151 // deflate to current position in output buffer
154 compCount = deflater.deflate(outBuf, outPosn, LOCAL_BUF_SIZE);
  /external/ipsec-tools/src/racoon/samples/roadwarrior/client/
racoon.conf 32 compression_algorithm deflate ;
  /external/ipsec-tools/src/racoon/samples/roadwarrior/server/
racoon.conf 40 compression_algorithm deflate;
  /external/libpng/contrib/pngminim/preader/
gather.sh 10 rm minigzip.c example.c compress.c deflate.c gz*
  /external/skia/src/core/
SkFlate.cpp 16 bool SkFlate::Deflate(SkStream*, SkWStream*) { return false; }
17 bool SkFlate::Deflate(const void*, size_t, SkWStream*) { return false; }
18 bool SkFlate::Deflate(const SkData*, SkWStream*) { return false; }
85 rc = deflate(&flateData, Z_NO_FLUSH);
91 rc = deflate(&flateData, Z_FINISH);
114 bool SkFlate::Deflate(SkStream* src, SkWStream* dst) {
118 bool SkFlate::Deflate(const void* ptr, size_t len, SkWStream* dst) {
123 bool SkFlate::Deflate(const SkData* data, SkWStream* dst) {
  /frameworks/native/include/gui/
ISurfaceTexture.h 96 inline void deflate(int64_t* outTimestamp, Rect* outCrop, function in struct:android::ISurfaceTexture::QueueBufferInput
125 inline void deflate(uint32_t* outWidth, function in struct:android::ISurfaceTexture::QueueBufferOutput
  /external/libpng/contrib/pngminim/encoder/
makefile 17 ZOBJS = adler32$(O) compress$(O) crc32$(O) deflate$(O) \
  /external/qemu/distrib/zlib-1.2.3/
compress.c 49 err = deflate(&stream, Z_FINISH);
  /external/zlib/src/
compress.c 49 err = deflate(&stream, Z_FINISH);
  /external/zlib/src/test/
example.c 198 * Test deflate() with small buffers
220 err = deflate(&c_stream, Z_NO_FLUSH);
221 CHECK_ERR(err, "deflate");
226 err = deflate(&c_stream, Z_FINISH);
228 CHECK_ERR(err, "deflate");
277 * Test deflate() with large buffers and dynamic change of compression level
301 err = deflate(&c_stream, Z_NO_FLUSH);
302 CHECK_ERR(err, "deflate");
304 fprintf(stderr, "deflate not greedy\n");
312 err = deflate(&c_stream, Z_NO_FLUSH)
    [all...]
  /external/zlib/src/examples/
fitblk.c 19 enough deflate blocks to produce output to fill the requested
21 below). The last deflate block may go quite a bit past that, but
24 buffer. The deflate process is terminated after that amount of
26 The last deflate block of the result will be of a comparable size
27 to the final product, so that the header for that deflate block and
44 the last deflate block compressing more efficiently with a smaller
47 out the requested size, and small enough so that the final deflate
48 block of the second pass will be close in size to the final deflate
71 input reached; return last deflate() return value, or Z_ERRNO if
86 ret = deflate(def, flush)
    [all...]

Completed in 774 milliseconds

1 2 3 4 5 6 7 8