Home
last modified time | relevance | path

Searched refs:sourceLen (Results 1 – 11 of 11) sorted by relevance

/freebsd-12.1/sys/contrib/zlib/
H A Dcompress.c22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level) in compress2() argument
26 uLong sourceLen;
55 stream.avail_in = sourceLen > (uLong)max ? max : (uInt)sourceLen;
56 sourceLen -= stream.avail_in;
58 err = deflate(&stream, sourceLen ? Z_NO_FLUSH : Z_FINISH);
68 int ZEXPORT compress (dest, destLen, source, sourceLen) in compress() argument
72 uLong sourceLen;
81 uLong ZEXPORT compressBound (sourceLen) in compressBound() argument
82 uLong sourceLen; in compressBound()
84 return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) +
[all …]
H A Duncompr.c27 int ZEXPORT uncompress2 (dest, destLen, source, sourceLen) in uncompress2() argument
31 uLong *sourceLen;
39 len = *sourceLen;
73 *sourceLen -= len + stream.avail_in;
86 int ZEXPORT uncompress (dest, destLen, source, sourceLen) in uncompress() argument
90 uLong sourceLen;
92 return uncompress2(dest, destLen, source, &sourceLen);
H A Dzlib.h762 uLong sourceLen));
1229 const Bytef *source, uLong sourceLen));
1244 const Bytef *source, uLong sourceLen,
1259 ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen));
1267 const Bytef *source, uLong sourceLen));
1285 const Bytef *source, uLong *sourceLen));
H A Ddeflate.c652 uLong ZEXPORT deflateBound(strm, sourceLen) in deflateBound() argument
654 uLong sourceLen;
660 complen = sourceLen +
661 ((sourceLen + 7) >> 3) + ((sourceLen + 63) >> 6) + 5;
707 return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) +
708 (sourceLen >> 25) + 13 - 6 + wraplen;
/freebsd-12.1/sys/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.c401 uLong sourceLen)) in z_deflateBound() argument
404 return deflateBound(strm, sourceLen); in z_deflateBound()
406 return ZSTD_compressBound(sourceLen); in z_deflateBound()
1017 return compress(dest, destLen, source, sourceLen); in z_compress()
1021 source, sourceLen, in z_compress()
1024 (int)sourceLen, (int)dstCapacity); in z_compress()
1048 ZEXTERN uLong ZEXPORT z_compressBound OF((uLong sourceLen)) in z_compressBound() argument
1051 return compressBound(sourceLen); in z_compressBound()
1053 return ZSTD_compressBound(sourceLen); in z_compressBound()
1060 if (!ZSTD_isFrame(source, sourceLen)) in z_uncompress()
[all …]
/freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzlib.h647 uLong sourceLen));
1012 const Bytef *source, uLong sourceLen));
1027 const Bytef *source, uLong sourceLen,
1042 ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen));
1050 const Bytef *source, uLong sourceLen));
H A Ddeflate.c495 uLong ZEXPORT deflateBound(strm, sourceLen) in deflateBound() argument
497 uLong sourceLen;
503 destLen = sourceLen +
504 ((sourceLen + 7) >> 3) + ((sourceLen + 63) >> 6) + 11;
516 return compressBound(sourceLen);
/freebsd-12.1/contrib/bzip2/
H A Dbzlib.h208 unsigned int sourceLen,
218 unsigned int sourceLen,
H A Dbzlib.c1259 unsigned int sourceLen, in BZ_API()
1284 strm.avail_in = sourceLen; in BZ_API()
1311 unsigned int sourceLen, in BZ_API()
1332 strm.avail_in = sourceLen; in BZ_API()
/freebsd-12.1/sys/sys/
H A Dzlib.h840 const Bytef *source, uLong sourceLen));
855 const Bytef *source, uLong sourceLen));
/freebsd-12.1/crypto/openssl/crypto/comp/
H A Dc_zlib.c86 const Bytef *source, uLong sourceLen);