Lines Matching defs:destLen
13 the byte length of the source buffer. Upon entry, *destLen is the total size
18 *destLen is the size of the decompressed data and *sourceLen is the number
27 int ZEXPORT uncompress2(Bytef *dest, uLongf *destLen, const Bytef *source,
33 Byte buf[1]; /* for detection of incomplete stream when *destLen == 0 */
36 if (*destLen) {
37 left = *destLen;
38 *destLen = 0;
71 *destLen = stream.total_out;
82 int ZEXPORT uncompress(Bytef *dest, uLongf *destLen, const Bytef *source,
84 return uncompress2(dest, destLen, source, &sourceLen);