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

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dcompress.c38 length of the source buffer. Upon entry, destLen is the total size of the
40 12 bytes. Upon exit, destLen is the actual size of the compressed buffer.
46 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
48 uLongf *destLen;
63 stream.avail_out = (uInt)*destLen;
64 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
78 *destLen = stream.total_out;
86 int ZEXPORT compress (dest, destLen, source, sourceLen)
88 uLongf *destLen;
92 return compress2(dest, destLen, sourc
[all...]
H A Duncompr.c37 the byte length of the source buffer. Upon entry, destLen is the total
42 Upon exit, destLen is the actual size of the compressed buffer.
50 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
52 uLongf *destLen;
65 stream.avail_out = (uInt)*destLen;
66 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
81 *destLen = (uLong)stream.total_out;
H A Dzlib.h1033 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1037 the byte length of the source buffer. Upon entry, destLen is the total
1039 by compressBound(sourceLen). Upon exit, destLen is the actual size of the
1048 ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
1054 length of the source buffer. Upon entry, destLen is the total size of the
1056 compressBound(sourceLen). Upon exit, destLen is the actual size of the
1071 ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
1075 the byte length of the source buffer. Upon entry, destLen is the total
1080 Upon exit, destLen is the actual size of the compressed buffer.
H A Ddeflate.c518 uLong destLen; local
521 destLen = sourceLen +
526 return destLen;
531 return destLen;
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DNormalizerBase.java194 int destLen = (destLimit - destStart);
195 if( srcLen > destLen ) {
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintJob.cpp1917 int destLen = WideCharToMultiByte(CP_ACP, // convert to ASCII code page local
1932 if (destLen > 0) {
1934 DASSERT(destLen < sizeof(lf.lfFaceName));
1935 lf.lfFaceName[destLen] = '\0';

Completed in 56 milliseconds