Searched refs:sourceLen (Results 1 – 10 of 10) sorted by relevance
| /freebsd-11-stable/sys/contrib/zlib/ |
| HD | 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; 74 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION); 81 uLong ZEXPORT compressBound (sourceLen) in compressBound() argument 82 uLong sourceLen; in compressBound() [all …]
|
| HD | 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);
|
| HD | zlib.h | 762 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));
|
| HD | deflate.c | 689 uLong ZEXPORT deflateBound(strm, sourceLen) in deflateBound() argument 691 uLong sourceLen; 697 complen = sourceLen + 698 ((sourceLen + 7) >> 3) + ((sourceLen + 63) >> 6) + 5; 744 return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) + 745 (sourceLen >> 25) + 13 - 6 + wraplen;
|
| /freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/ |
| HD | zlib.h | 647 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));
|
| HD | deflate.c | 495 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-11-stable/contrib/bzip2/ |
| HD | bzlib.h | 208 unsigned int sourceLen, 218 unsigned int sourceLen,
|
| HD | 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-11-stable/crypto/openssl/crypto/comp/ |
| HD | c_zlib.c | 61 uLong sourceLen); 102 const Bytef *source, uLong sourceLen); 306 uLong sourceLen) 312 stream.avail_in = (uInt) sourceLen; 314 if ((uLong) stream.avail_in != sourceLen)
|
| /freebsd-11-stable/sys/sys/ |
| HD | zlib.h | 838 const Bytef *source, uLong sourceLen)); 853 const Bytef *source, uLong sourceLen));
|