Searched refs:Z_STREAM_END (Results 1 - 25 of 52) sorted by relevance

123

/freebsd-11.0-release/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dzmod.h45 #define Z_STREAM_END 1 macro
/freebsd-11.0-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzmod.c59 if ((err = inflate(&zs, Z_FINISH)) != Z_STREAM_END) {
85 if ((err = deflate(&zs, Z_FINISH)) != Z_STREAM_END) {
H A Dzlib.h173 #define Z_STREAM_END 1 macro
299 pending output is flushed and deflate returns with Z_STREAM_END if there
302 more input data, until it returns with Z_STREAM_END or an error. After
303 deflate has returned Z_STREAM_END, the only possible operations on the
309 Z_STREAM_END, then it must be called again as described above.
320 processed or more output produced), Z_STREAM_END if all input has been
415 inflate() should normally be called until it returns Z_STREAM_END or an
436 total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described
438 checksum is equal to that saved by the compressor and returns Z_STREAM_END
449 or more output produced), Z_STREAM_END i
[all...]
/freebsd-11.0-release/lib/libz/
H A Duncompr.c49 if (err != Z_STREAM_END) {
H A Dcompress.c50 if (err != Z_STREAM_END) {
H A Dgzread.c209 } while (strm->avail_out && ret != Z_STREAM_END);
216 if (ret == Z_STREAM_END)
/freebsd-11.0-release/sys/kern/
H A Dkern_gzio.c175 if (zerror != Z_OK && zerror != Z_STREAM_END) {
180 if (s->gz_stream.avail_out == 0 || zerror == Z_STREAM_END) {
186 if (zerror == Z_STREAM_END) {
213 if (zerror == Z_STREAM_END && room < KERN_GZ_TRAILERLEN)
218 } while (zerror != Z_STREAM_END &&
H A Dkern_ctf.c280 if (ret != Z_STREAM_END) {
/freebsd-11.0-release/contrib/netbsd-tests/crypto/opencrypto/
H A Dh_comp_zlib.c85 if (res != Z_STREAM_END)
H A Dh_comp_zlib_rnd.c89 if (res != Z_STREAM_END)
/freebsd-11.0-release/sys/opencrypto/
H A Dcryptodeflate.c136 if (error != Z_OK && error != Z_STREAM_END) {
155 if (decomp && zbuf.avail_in == 0 && error == Z_STREAM_END) {
158 } else if (!decomp && error == Z_STREAM_END) {
/freebsd-11.0-release/lib/libz/test/
H A Dexample.c227 if (err == Z_STREAM_END) break;
261 if (err == Z_STREAM_END) break;
323 if (err != Z_STREAM_END) {
324 fprintf(stderr, "deflate should report Z_STREAM_END\n");
357 if (err == Z_STREAM_END) break;
401 if (err != Z_STREAM_END) {
483 if (err != Z_STREAM_END) {
484 fprintf(stderr, "deflate should report Z_STREAM_END\n");
518 if (err == Z_STREAM_END) break;
H A Dinfcover.c280 inflate() call is expected to return Z_STREAM_END). If win is 47, then
370 inf("3 0", "use fixed blocks", 0, -15, 1, Z_STREAM_END);
404 inf("78 9c 63 0 0 0 1 0 1", "check adler32", 0, 15, 1, Z_STREAM_END);
408 0, 47, 0, Z_STREAM_END);
489 assert(ret == Z_STREAM_END);
612 Z_STREAM_END);
658 Z_STREAM_END);
/freebsd-11.0-release/sys/geom/uzip/
H A Dg_uzip_zlib.c77 err = (inflate(&zp->zs, Z_FINISH) != Z_STREAM_END) ? 1 : 0;
/freebsd-11.0-release/contrib/serf/buckets/
H A Ddeflate_buckets.c298 if (zRC == Z_STREAM_END) {
359 if (zRC != Z_STREAM_END)
/freebsd-11.0-release/contrib/ntp/sntp/libevent/test/
H A Dregress_zlib.c174 assert(res == Z_OK || res == Z_STREAM_END);
228 assert(res == Z_OK || res == Z_STREAM_END);
/freebsd-11.0-release/sys/dev/random/
H A Dunit_test.c120 if (err == Z_STREAM_END) break;
121 check_err(err, "deflate(..., Z_STREAM_END)");
/freebsd-11.0-release/crypto/openssl/crypto/comp/
H A Dc_zlib.c330 if (err != Z_STREAM_END) {
547 if ((ret != Z_OK) && (ret != Z_STREAM_END)) {
553 if ((ret == Z_STREAM_END) || !zin->avail_out)
676 if (ret == Z_STREAM_END)
/freebsd-11.0-release/usr.sbin/ppp/
H A Ddeflate.c113 if (res == Z_STREAM_END)
258 if (res == Z_STREAM_END)
381 if (res == Z_STREAM_END)
411 * output it's going to, it *doesn't* return Z_STREAM_END !
/freebsd-11.0-release/lib/libstand/
H A Dgzipfs.c260 if (error == Z_STREAM_END) { /* EOF, all done */
/freebsd-11.0-release/sys/sys/
H A Dzlib.h341 #define Z_STREAM_END 1 macro
459 pending output is flushed and deflate returns with Z_STREAM_END if there
462 more input data, until it returns with Z_STREAM_END or an error. After
463 deflate has returned Z_STREAM_END, the only possible operations on the
469 Z_STREAM_END, then it must be called again as described above.
477 processed or more output produced), Z_STREAM_END if all input has been
549 inflate() should normally be called until it returns Z_STREAM_END or an
561 processed or more output produced), Z_STREAM_END if the end of the
/freebsd-11.0-release/usr.bin/gzip/
H A Dgzip.c648 if (error != Z_OK && error != Z_STREAM_END) {
661 if (error != Z_OK && error != Z_STREAM_END) {
679 if (error == Z_STREAM_END)
935 case Z_STREAM_END:
974 if (error == Z_STREAM_END) {
/freebsd-11.0-release/contrib/libarchive/libarchive/
H A Darchive_read_support_filter_gzip.c420 case Z_STREAM_END: /* Found end of stream. */
H A Darchive_write_add_filter_gzip.c381 case Z_STREAM_END:
/freebsd-11.0-release/usr.sbin/fifolog/lib/
H A Dfifolog_reader.c304 if (i == Z_STREAM_END) {

Completed in 283 milliseconds

123