Searched refs:deflateInit (Results 1 - 9 of 9) sorted by relevance
/illumos-gate/usr/src/uts/common/zmod/ |
H A D | zmod.c | 82 if ((err = deflateInit(&zs, level)) != Z_OK)
|
H A D | zlib.h | 218 This check is automatically made by deflateInit and inflateInit. 222 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level)); 226 If zalloc and zfree are set to Z_NULL, deflateInit updates them to 235 deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not 239 msg is set to null if there is no error message. deflateInit does not 306 Z_FINISH can be used immediately after deflateInit if all the compression 489 This is another version of deflateInit with more compression options. The 500 deflateInit is used instead. 546 immediately after deflateInit, deflateInit2 or deflateReset, before any 558 deflateInit o 1333 #define deflateInit macro [all...] |
/illumos-gate/usr/src/boot/lib/libz/ |
H A D | compress.c | 13 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 D | zlib.h | 220 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...] |
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
H A D | zlib.h | 251 extern int deflateInit OF((z_stream *strm, int level)); 255 If zalloc and zfree are set to Z_NULL, deflateInit updates them to 263 deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not 265 msg is set to null if there is no error message. deflateInit does not 318 `MinCompression' is a parameter to deflateInit2, or 0 if deflateInit 329 Z_FINISH can be used immediately after deflateInit if all the compression 449 This is another version of deflateInit with more compression options. The 460 memory usage. The default value is 15 if deflateInit is used instead. 526 This function is equivalent to deflateEnd followed by deflateInit,
|
H A D | zlib.c | 579 int deflateInit (strm, level) function
|
/illumos-gate/usr/src/boot/lib/libz/test/ |
H A D | example.c | 212 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");
|
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/ |
H A D | zlib.h | 516 * the application. This check is automatically made by deflateInit 521 * ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level)); 525 * the caller. If zalloc and zfree are set to Z_NULL, deflateInit 535 * deflateInit returns Z_OK if success, Z_MEM_ERROR if there was 540 * message. deflateInit does not perform any compression: this 609 * Z_FINISH can be used immediately after deflateInit if all the 745 * This is another version of deflateInit with more compression 758 * if deflateInit is used instead. 807 * function must be called immediately after deflateInit or 860 * This function is equivalent to deflateEnd followed by deflateInit, 1182 #define deflateInit macro [all...] |
/illumos-gate/usr/src/tools/ctf/cvt/ |
H A D | ctf.c | 475 if ((rc = deflateInit(&rb->rb_zstr, Z_BEST_COMPRESSION)) != Z_OK)
|
Completed in 97 milliseconds