| /freebsd-13.1/sys/contrib/zlib/ |
| H A D | compress.c | 22 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 D | uncompr.c | 27 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 D | zlib.h | 761 uLong sourceLen)); 1230 const Bytef *source, uLong sourceLen)); 1245 const Bytef *source, uLong sourceLen, 1260 ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen)); 1268 const Bytef *source, uLong sourceLen)); 1286 const Bytef *source, uLong *sourceLen));
|
| H A D | deflate.c | 693 uLong ZEXPORT deflateBound(strm, sourceLen) in deflateBound() argument 695 uLong sourceLen; 701 complen = sourceLen + 702 ((sourceLen + 7) >> 3) + ((sourceLen + 63) >> 6) + 5; 748 return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) + 749 (sourceLen >> 25) + 13 - 6 + wraplen;
|
| /freebsd-13.1/sys/contrib/openzfs/module/os/linux/spl/ |
| H A D | spl-zlib.c | 97 size_t sourceLen, int level) in z_compress_level() argument 103 stream.avail_in = (uInt)sourceLen; in z_compress_level() 151 z_uncompress(void *dest, size_t *destLen, const void *source, size_t sourceLen) in z_uncompress() argument 157 stream.avail_in = (uInt)sourceLen; in z_uncompress()
|
| /freebsd-13.1/sys/contrib/openzfs/module/os/freebsd/spl/ |
| H A D | spl_zlib.c | 144 size_t sourceLen, int level) in z_compress_level() argument 151 stream.avail_in = (uInt)sourceLen; in z_compress_level() 199 z_uncompress(void *dest, size_t *destLen, const void *source, size_t sourceLen) in z_uncompress() argument 207 stream.avail_in = (uInt)sourceLen; in z_uncompress()
|
| /freebsd-13.1/sys/contrib/openzfs/include/os/linux/spl/sys/ |
| H A D | zmod.h | 62 size_t sourceLen, int level); 64 size_t sourceLen);
|
| /freebsd-13.1/sys/contrib/zstd/zlibWrapper/ |
| H A D | zstd_zlibwrapper.c | 472 uLong sourceLen)) in z_deflateBound() argument 475 return deflateBound(strm, sourceLen); in z_deflateBound() 477 return ZSTD_compressBound(sourceLen); in z_deflateBound() 1088 return compress(dest, destLen, source, sourceLen); in z_compress() 1092 source, sourceLen, in z_compress() 1095 (int)sourceLen, (int)dstCapacity); in z_compress() 1119 ZEXTERN uLong ZEXPORT z_compressBound OF((uLong sourceLen)) in z_compressBound() argument 1122 return compressBound(sourceLen); in z_compressBound() 1124 return ZSTD_compressBound(sourceLen); in z_compressBound() 1131 if (!ZSTD_isFrame(source, sourceLen)) in z_uncompress() [all …]
|
| /freebsd-13.1/contrib/bzip2/ |
| H A D | bzlib.h | 208 unsigned int sourceLen, 218 unsigned int sourceLen,
|
| H A D | bzlib.c | 1259 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-13.1/crypto/openssl/crypto/comp/ |
| H A D | c_zlib.c | 86 const Bytef *source, uLong sourceLen);
|