Searched refs:deflate (Results 1 - 25 of 122) sorted by relevance

12345

/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? */
H A Dccp.c51 * buffer overruns and kernel crashes in the deflate module.
88 { "deflate", o_special, (void *)setdeflate,
91 { "nodeflate", o_bool, &ccp_wantoptions[0].deflate,
93 &ccp_allowoptions[0].deflate },
94 { "-deflate", o_bool, &ccp_wantoptions[0].deflate,
96 &ccp_allowoptions[0].deflate },
99 "don't use draft deflate #", OPT_A2COPY,
242 #define ANY_COMPRESS(opt) ((opt).deflate || (opt).bsd_compress \
313 option_error("invalid parameter '%s' for deflate optio
[all...]
/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/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWebSocketPerMessageDeflate.h59 bool deflate(WebSocketFrame&);
61 // Reset the internal buffer used by deflate.
62 // You must call this method between consecutive calls of the deflate method.
77 // Return the reason of the last failure in inflate or deflate.
H A DWebSocketPerMessageDeflateTest.cpp51 ASSERT_TRUE(c.deflate(f1));
58 ASSERT_TRUE(c.deflate(f2));
73 ASSERT_TRUE(c.deflate(f1));
80 ASSERT_TRUE(c.deflate(f2));
105 ASSERT_TRUE(c.deflate(frame));
115 ASSERT_TRUE(c.deflate(frame));
144 ASSERT_TRUE(c.deflate(f1));
159 ASSERT_TRUE(c.deflate(f1));
165 ASSERT_TRUE(c.deflate(f2));
182 ASSERT_TRUE(c.deflate(f
[all...]
H A DWebSocketDeflateFramer.h98 PassOwnPtr<DeflateResultHolder> deflate(WebSocketFrame&);
/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/zlib/src/watcom/
H A Dwatcom_l.mak7 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
H A Dwatcom_f.mak7 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/
H A Dzlibd32.mak21 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/
H A Dzlibd32.mak21 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
H A Dexample.pas181 * 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_strea
[all...]
/external/ipsec-tools/src/racoon/samples/roadwarrior/client/
H A Dracoon.conf32 compression_algorithm deflate ;
/external/ipsec-tools/src/racoon/samples/roadwarrior/server/
H A Dracoon.conf40 compression_algorithm deflate;
/external/zopfli/
H A DAndroid.mk6 src/zopfli/deflate.c src/zopfli/gzip_container.c\
/external/libpng/contrib/pngminim/encoder/
H A Dmakefile31 ZSRCS = adler32$(C) compress$(C) crc32$(C) deflate$(C) \
35 #ZH = zlib.h crc32.h deflate.h trees.h zutil.h
36 ZH = zlib.h crc32.h deflate.h trees.h zutil.h
48 # code because deflate defines an unused API function deflateBound
50 ZOBJS = adler32$(O) compress$(O) crc32$(O) deflate$(O) \
/external/chromium_org/third_party/skia/src/core/
H A DSkFlate.cpp89 rc = deflate(&flateData, Z_NO_FLUSH);
95 rc = deflate(&flateData, Z_FINISH);
/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/skia/src/core/
H A DSkFlate.cpp89 rc = deflate(&flateData, Z_NO_FLUSH);
95 rc = deflate(&flateData, Z_FINISH);
/external/chromium_org/third_party/zlib/
H A Dcompress.c49 err = deflate(&stream, Z_FINISH);
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_compress.c49 err = deflate(&stream, Z_FINISH);
/external/qemu/distrib/zlib-1.2.8/
H A Dcompress.c49 err = deflate(&stream, Z_FINISH);
/external/zlib/src/
H A Dcompress.c49 err = deflate(&stream, Z_FINISH);
/external/zlib/src/test/
H A Dexample.c198 * 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(
[all...]
/external/zlib/src/examples/
H A Dfitblk.c19 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(de
[all...]

Completed in 617 milliseconds

12345