Searched refs:destLen (Results 1 - 3 of 3) sorted by relevance

/forgerock/web-agents-v4/zlib/
H A Dcompress.c14 length of the source buffer. Upon entry, destLen is the total size of the
16 12 bytes. Upon exit, destLen is the actual size of the compressed buffer.
22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
24 uLongf *destLen;
39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
54 *destLen = stream.total_out;
62 int ZEXPORT compress (dest, destLen, source, sourceLen)
64 uLongf *destLen;
68 return compress2(dest, destLen, sourc
[all...]
H A Duncompr.c13 the byte length of the source buffer. Upon entry, destLen is the total
18 Upon exit, destLen is the actual size of the compressed buffer.
24 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
26 uLongf *destLen;
39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
55 *destLen = stream.total_out;
H A Dzlib.h1160 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1164 the byte length of the source buffer. Upon entry, destLen is the total size
1166 compressBound(sourceLen). Upon exit, destLen is the actual size of the
1174 ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
1180 length of the source buffer. Upon entry, destLen is the total size of the
1182 compressBound(sourceLen). Upon exit, destLen is the actual size of the
1197 ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
1201 the byte length of the source buffer. Upon entry, destLen is the total size
1205 mechanism outside the scope of this compression library.) Upon exit, destLen

Completed in 33 milliseconds