Home
last modified time | relevance | path

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

/titanic_54/usr/src/boot/lib/libz/
H A Dcompress.c22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level) in compress2() argument
26 uLong sourceLen;
33 stream.avail_in = (uInt)sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
62 int ZEXPORT compress (dest, destLen, source, sourceLen) in compress() argument
66 uLong sourceLen;
68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
75 uLong ZEXPORT compressBound (sourceLen) in compressBound() argument
76 uLong sourceLen; in compressBound()
78 return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) +
[all …]
H A Duncompr.c24 int ZEXPORT uncompress (dest, destLen, source, sourceLen) in uncompress() argument
28 uLong sourceLen;
34 stream.avail_in = (uInt)sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
H A Dzlib.h699 uLong sourceLen));
1161 const Bytef *source, uLong sourceLen));
1175 const Bytef *source, uLong sourceLen,
1190 ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen));
1198 const Bytef *source, uLong sourceLen));
H A Ddeflate.c566 uLong ZEXPORT deflateBound(strm, sourceLen) in deflateBound() argument
568 uLong sourceLen;
575 complen = sourceLen +
576 ((sourceLen + 7) >> 3) + ((sourceLen + 63) >> 6) + 5;
619 return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) +
620 (sourceLen >> 25) + 13 - 6 + wraplen;
/titanic_54/usr/src/contrib/zlib/
H A Dzlib.h761 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 Ddeflate.c691 uLong ZEXPORT deflateBound(strm, sourceLen) in deflateBound() argument
693 uLong sourceLen;
699 complen = sourceLen +
700 ((sourceLen + 7) >> 3) + ((sourceLen + 63) >> 6) + 5;
746 return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) +
747 (sourceLen >> 25) + 13 - 6 + wraplen;
/titanic_54/usr/src/common/bzip2/
H A Dbzlib.h229 unsigned int sourceLen,
239 unsigned int sourceLen,
H A Dbzlib.c1417 unsigned int sourceLen, in BZ_API()
1442 strm.avail_in = sourceLen; in BZ_API()
1469 unsigned int sourceLen, in BZ_API()
1490 strm.avail_in = sourceLen; in BZ_API()