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

/haiku-fatelf/src/libs/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.h1102 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1106 the byte length of the source buffer. Upon entry, destLen is the total size
1108 compressBound(sourceLen). Upon exit, destLen is the actual size of the
1116 ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
1122 length of the source buffer. Upon entry, destLen is the total size of the
1124 compressBound(sourceLen). Upon exit, destLen is the actual size of the
1139 ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
1143 the byte length of the source buffer. Upon entry, destLen is the total size
1147 mechanism outside the scope of this compression library.) Upon exit, destLen
/haiku-fatelf/src/libs/pdflib/libs/flate/
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.
28 uLongf *destLen,
41 stream.avail_out = (uInt)*destLen;
42 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
55 *destLen = stream.total_out;
26 uncompress( Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen) argument
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.
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;
64 uLongf *destLen,
68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
22 compress2( Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen, int level) argument
62 compress( Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen) argument
H A Dzlib.h611 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
615 the byte length of the source buffer. Upon entry, destLen is the total
617 sourceLen plus 12 bytes. Upon exit, destLen is the actual size of the
626 ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
632 length of the source buffer. Upon entry, destLen is the total size of the
634 12 bytes. Upon exit, destLen is the actual size of the compressed buffer.
641 ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
645 the byte length of the source buffer. Upon entry, destLen is the total
650 Upon exit, destLen is the actual size of the compressed buffer.
/haiku-fatelf/src/add-ons/print/drivers/pdf/source/
H A DPDFText.cpp272 int32 srcLen = len, destLen = 255; local
278 convert_to_utf8(encoding, &string[srcStart], &srcLen, buffer, &destLen,
284 utf8.Append(buffer, destLen);
285 destLen = 255;
294 int32 srcLen = len, destLen = 255; local
305 buffer, &destLen, &state);
310 char *b = unicode.LockBuffer(i + destLen);
311 memcpy(&b[i], buffer, destLen);
312 unicode.UnlockBuffer(i + destLen);
313 i += destLen;
358 int32 destLen = 1; local
[all...]
/haiku-fatelf/src/add-ons/media/plugins/ffmpeg/libbz2/
H A Dbzlib.h206 unsigned int* destLen,
216 unsigned int* destLen,
H A Dbzlib.c1249 unsigned int* destLen,
1259 if (dest == NULL || destLen == NULL ||
1277 strm.avail_out = *destLen;
1284 *destLen -= strm.avail_out;
1301 unsigned int* destLen,
1310 if (dest == NULL || destLen == NULL ||
1325 strm.avail_out = *destLen;
1332 *destLen -= strm.avail_out;
1247 BZ2_bzBuffToBuffCompress( char* dest, unsigned int* destLen, char* source, unsigned int sourceLen, int blockSize100k, int verbosity, int workFactor ) argument
1299 BZ2_bzBuffToBuffDecompress( char* dest, unsigned int* destLen, char* source, unsigned int sourceLen, int small, int verbosity ) argument
/haiku-fatelf/headers/libs/zlib/
H A Dzlib.h1102 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1106 the byte length of the source buffer. Upon entry, destLen is the total size
1108 compressBound(sourceLen). Upon exit, destLen is the actual size of the
1116 ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
1122 length of the source buffer. Upon entry, destLen is the total size of the
1124 compressBound(sourceLen). Upon exit, destLen is the actual size of the
1139 ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
1143 the byte length of the source buffer. Upon entry, destLen is the total size
1147 mechanism outside the scope of this compression library.) Upon exit, destLen
/haiku-fatelf/src/apps/terminal/
H A DTermView.cpp1565 int32 destLen = sizeof(destBuffer); local
1568 &destLen, &state, '?');
1570 fShell->Write(destBuffer, destLen);

Completed in 127 milliseconds