Searched refs:sourceLen (Results 1 – 4 of 4) sorted by relevance
| /xnu-8020.101.4/libkern/zlib/ |
| H A D | compress.c | 54 compress2(Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen, in compress2() argument 61 stream.avail_in = (uInt)sourceLen; in compress2() 64 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR; in compress2() 91 compress(Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen) in compress() argument 93 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION); in compress() 101 compressBound(uLong sourceLen) in compressBound() argument 103 return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) + 11; in compressBound()
|
| H A D | uncompr.c | 58 uncompress(Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen) in uncompress() argument 64 stream.avail_in = (uInt)sourceLen; in uncompress() 66 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR; in uncompress()
|
| H A D | deflate.c | 517 deflateBound(z_streamp strm, uLong sourceLen) in deflateBound() argument 523 destLen = sourceLen + in deflateBound() 524 ((sourceLen + 7) >> 3) + ((sourceLen + 63) >> 6) + 11; in deflateBound() 536 return compressBound(sourceLen); in deflateBound()
|
| /xnu-8020.101.4/libkern/libkern/ |
| H A D | zlib.h | 683 uLong sourceLen)); 1048 const Bytef *source, uLong sourceLen)); 1063 const Bytef *source, uLong sourceLen, 1078 ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen)); 1086 const Bytef *source, uLong sourceLen));
|