Searched refs:deflateInit (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/third_party/zlib/
H A Dcompress.c13 parameter has the same meaning as in deflateInit. sourceLen is the byte
46 err = deflateInit(&stream, level);
72 If the default memLevel or windowBits for deflateInit() is changed, then
H A Dzlib.h225 is automatically made by deflateInit and inflateInit.
229 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
233 zalloc and zfree are set to Z_NULL, deflateInit updates them to use default
242 deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough
246 if there is no error message. deflateInit does not perform any compression:
333 Z_FINISH can be used immediately after deflateInit if all the compression
530 This is another version of deflateInit with more compression options. The
541 deflateInit is used instead.
589 immediately after deflateInit, deflateInit2 or deflateReset, before any call
601 deflateInit o
1551 #define deflateInit macro
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_compress.c13 parameter has the same meaning as in deflateInit. sourceLen is the byte
46 err = deflateInit(&stream, level);
72 If the default memLevel or windowBits for deflateInit() is changed, then
H A Dzlib.h284 is automatically made by deflateInit and inflateInit.
288 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
292 zalloc and zfree are set to Z_NULL, deflateInit updates them to use default
301 deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough
305 if there is no error message. deflateInit does not perform any compression:
392 Z_FINISH can be used immediately after deflateInit if all the compression
598 This is another version of deflateInit with more compression options. The
609 deflateInit is used instead.
657 function must be called immediately after deflateInit, deflateInit2 or
674 deflateInit o
1711 #define deflateInit macro
[all...]
/external/qemu/distrib/zlib-1.2.8/
H A Dcompress.c13 parameter has the same meaning as in deflateInit. sourceLen is the byte
46 err = deflateInit(&stream, level);
72 If the default memLevel or windowBits for deflateInit() is changed, then
H A Dzlib.h220 is automatically made by deflateInit and inflateInit.
224 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
228 zalloc and zfree are set to Z_NULL, deflateInit updates them to use default
237 deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough
241 if there is no error message. deflateInit does not perform any compression:
328 Z_FINISH can be used immediately after deflateInit if all the compression
534 This is another version of deflateInit with more compression options. The
545 deflateInit is used instead.
593 function must be called immediately after deflateInit, deflateInit2 or
610 deflateInit o
1647 #define deflateInit macro
[all...]
/external/zlib/src/
H A Dcompress.c13 parameter has the same meaning as in deflateInit. sourceLen is the byte
46 err = deflateInit(&stream, level);
72 If the default memLevel or windowBits for deflateInit() is changed, then
H A Dzlib.h220 is automatically made by deflateInit and inflateInit.
224 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
228 zalloc and zfree are set to Z_NULL, deflateInit updates them to use default
237 deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough
241 if there is no error message. deflateInit does not perform any compression:
328 Z_FINISH can be used immediately after deflateInit if all the compression
534 This is another version of deflateInit with more compression options. The
545 deflateInit is used instead.
593 function must be called immediately after deflateInit, deflateInit2 or
610 deflateInit o
1647 #define deflateInit macro
[all...]
/external/freetype/src/gzip/
H A Dzlib.h172 This check is automatically made by deflateInit and inflateInit.
176 ZEXTERN(int) deflateInit OF((z_streamp strm, int level));
180 If zalloc and zfree are set to Z_NULL, deflateInit updates them to
189 deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not
193 msg is set to null if there is no error message. deflateInit does not
253 Z_FINISH can be used immediately after deflateInit if all the compression
403 This is another version of deflateInit with more compression options. The
414 deflateInit is used instead.
442 immediately after deflateInit, deflateInit2 or deflateReset, before any
454 deflateInit o
815 #define deflateInit macro
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkFlate.cpp50 rc = deflateInit(&flateData, Z_DEFAULT_COMPRESSION);
/external/skia/src/core/
H A DSkFlate.cpp50 rc = deflateInit(&flateData, Z_DEFAULT_COMPRESSION);
/external/zlib/src/contrib/pascal/
H A Dexample.pas195 err := deflateInit(c_stream, Z_DEFAULT_COMPRESSION);
196 CHECK_ERR(err, 'deflateInit');
281 err := deflateInit(c_stream, Z_BEST_SPEED);
282 CHECK_ERR(err, 'deflateInit');
379 err := deflateInit(c_stream, Z_DEFAULT_COMPRESSION);
380 CHECK_ERR(err, 'deflateInit');
458 err := deflateInit(c_stream, Z_BEST_COMPRESSION);
459 CHECK_ERR(err, 'deflateInit');
H A Dzlibpas.pas106 function deflateInit(var strm: z_stream; level: Integer): Integer; function
227 function deflateInit(var strm: z_stream; level: Integer): Integer; function
/external/zlib/src/examples/
H A Dfitblk.c7 1.1 25 Nov 2004 Change deflateInit2() to deflateInit()
151 ret = deflateInit(&def, Z_DEFAULT_COMPRESSION);
H A Dzpipe.c48 ret = deflateInit(&strm, level);
/external/zlib/src/test/
H A Dexample.c212 err = deflateInit(&c_stream, Z_DEFAULT_COMPRESSION);
213 CHECK_ERR(err, "deflateInit");
290 err = deflateInit(&c_stream, Z_BEST_SPEED);
291 CHECK_ERR(err, "deflateInit");
387 err = deflateInit(&c_stream, Z_DEFAULT_COMPRESSION);
388 CHECK_ERR(err, "deflateInit");
468 err = deflateInit(&c_stream, Z_BEST_COMPRESSION);
469 CHECK_ERR(err, "deflateInit");
/external/zlib/src/contrib/testzlib/
H A Dtestzlib.c198 deflateInit(&zcpr,cprLevel);
/external/chromium_org/net/filter/
H A Dgzip_filter_unittest.cc120 code = deflateInit(&zlib_stream, Z_DEFAULT_COMPRESSION);
/external/chromium_org/sdch/open-vcdiff/src/zlib/
H A Dzlib.h216 This check is automatically made by deflateInit and inflateInit.
220 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
224 If zalloc and zfree are set to Z_NULL, deflateInit updates them to
233 deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not
237 msg is set to null if there is no error message. deflateInit does not
304 Z_FINISH can be used immediately after deflateInit if all the compression
487 This is another version of deflateInit with more compression options. The
498 deflateInit is used instead.
544 immediately after deflateInit, deflateInit2 or deflateReset, before any
556 deflateInit o
1347 #define deflateInit macro
[all...]
/external/zlib/src/as400/
H A Dzlib.inc8 * Procedures inflateInit(), inflateInit2(), deflateInit(),
279 D deflateInit PR 10I 0 extproc('deflateInit_') Init. compression
/external/zlib/
H A Dzlib.h220 is automatically made by deflateInit and inflateInit.
224 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
228 zalloc and zfree are set to Z_NULL, deflateInit updates them to use default
237 deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough
241 if there is no error message. deflateInit does not perform any compression:
328 Z_FINISH can be used immediately after deflateInit if all the compression
534 This is another version of deflateInit with more compression options. The
545 deflateInit is used instead.
593 function must be called immediately after deflateInit, deflateInit2 or
610 deflateInit o
1647 #define deflateInit macro
[all...]
/external/openssl/crypto/comp/
H A Dc_zlib.c618 deflateInit(zout, ctx->comp_level);
/external/pdfium/core/include/thirdparties/zlib/
H A Dzlib.h280 is automatically made by deflateInit and inflateInit.
284 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
288 zalloc and zfree are set to Z_NULL, deflateInit updates them to use default
297 deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough
301 if there is no error message. deflateInit does not perform any compression:
388 Z_FINISH can be used immediately after deflateInit if all the compression
594 This is another version of deflateInit with more compression options. The
605 deflateInit is used instead.
653 function must be called immediately after deflateInit, deflateInit2 or
670 deflateInit o
1707 #define deflateInit macro
[all...]
/external/chromium_org/net/quic/crypto/
H A Dcert_compressor.cc479 int rv = deflateInit(&z, Z_DEFAULT_COMPRESSION);
/external/fio/
H A Dserver.c1181 if (deflateInit(&stream, Z_DEFAULT_COMPRESSION) != Z_OK) {

Completed in 306 milliseconds

12