Home
last modified time | relevance | path

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

/mirbsd/src/kern/z/
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 …]
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;
Ddeflate.c568 uLong ZEXPORT deflateBound(strm, sourceLen) in deflateBound() argument
570 uLong sourceLen;
577 complen = sourceLen +
578 ((sourceLen + 7) >> 3) + ((sourceLen + 63) >> 6) + 5;
621 return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) +
622 (sourceLen >> 25) + 13 - 6 + wraplen;
/mirbsd/src/lib/libssl/src/crypto/comp/
Dc_zlib.c33 uLong sourceLen);
61 const Bytef *source, uLong sourceLen);
139 uLong sourceLen) in zz_uncompress() argument
145 stream.avail_in = (uInt)sourceLen; in zz_uncompress()
147 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR; in zz_uncompress()
/mirbsd/src/kern/include/
Dzlib.h702 uLong sourceLen));
1164 const Bytef *source, uLong sourceLen));
1178 const Bytef *source, uLong sourceLen,
1193 ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen));
1201 const Bytef *source, uLong sourceLen));