HomeSort by relevance Sort by last modified time
    Searched full:destlen (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /external/qemu/distrib/zlib-1.2.3/
uncompr.c 13 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.
26 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
28 uLongf *destLen;
41 stream.avail_out = (uInt)*destLen;
42 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
57 *destLen = stream.total_out;
compress.c 14 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, source, sourceLen, Z_DEFAULT_COMPRESSION)
    [all...]
  /external/zlib/
uncompr.c 13 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;
compress.c 14 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, source, sourceLen, Z_DEFAULT_COMPRESSION)
    [all...]
  /frameworks/base/media/libdrm/mobile1/include/objmng/
drm_decoder.h 40 * \param destLen dest buffer length
45 * if input dest buffer is NULL or destLen is 0,
49 int32_t drm_decodeBase64(uint8_t * dest, int32_t destLen, uint8_t * src, int32_t * srcLen);
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_decoder.c 40 int32_t drm_decodeBase64(uint8_t * dest, int32_t destLen, uint8_t * src, int32_t * srcLen)
46 if (NULL == src || NULL == srcLen || *srcLen <= 0 || destLen < 0)
50 if (NULL == dest || 0 == destLen)
53 if (destLen < maxDestSize)
54 maxDestSize = destLen;
  /external/zlib/contrib/puff/
README 33 unsigned long *destlen, /* amount of output space */
44 If destlen is not enough space for the uncompressed data, then inflate will
45 return an error without writing more than destlen bytes. Note that this means
51 the initial value of *destlen is ignored and *destlen is set to the length of
62 *destlen is updated to the size of the uncompressed data. See the comments
pufftest.c 95 unsigned long sourcelen, destlen; local
137 ret = puff(NIL, &destlen, source + skip, &sourcelen);
141 fprintf(stderr, "puff() succeeded uncompressing %lu bytes\n", destlen);
149 destlen >>= 1;
150 dest = malloc(destlen);
156 puff(dest, &destlen, source + skip, &sourcelen);
158 fwrite(dest, 1, destlen, stdout);
puff.h 33 unsigned long *destlen, /* amount of output space */
  /external/icu4c/test/cintltst/
idnatest.c 79 int32_t destLen = 0;
95 destLen = func(src,-1,NULL,0,options, &parseError , &status);
98 if(destLen+1 < MAX_DEST_SIZE){
100 destLen = func(src,-1,dest,destLen+1,options, &parseError, &status);
102 if(U_SUCCESS(status) && expectedStatus != U_IDNA_STD3_ASCII_RULES_ERROR&& (doCompare==TRUE) && u_strCaseCompare(dest,destLen, expected,expectedLen,0,&status)!=0){
117 destLen = func(src,-1,NULL,0,options | UIDNA_ALLOW_UNASSIGNED, &parseError, &status);
120 if(destLen+1 < MAX_DEST_SIZE){
122 destLen = func(src,-1,dest,destLen+1,options | UIDNA_ALLOW_UNASSIGNED, &parseError, &status)
    [all...]
spreptst.c 302 destLen = 0;
308 u_strToUTF8(dest, destCapacity, &destLen, b1, b1Len, status);
310 return destLen;
330 int32_t destLen = 0;
332 destLen = nfs4_cis_prepare(src , (int32_t)strlen(src), dest, destLen, &parseError, &status);
335 dest = (char*) malloc(++destLen);
336 destLen = nfs4_cis_prepare( src , (int32_t)strlen(src), dest, destLen, &parseError, &status);
448 int32_t destLen=0
    [all...]
cbiditst.c 90 const UChar *dest, int32_t destLen, int mode,
94 int32_t destLen, const char *mode,
    [all...]
  /external/icu4c/tools/genrb/
prscmnts.cpp 129 int32_t destLen = stringArray[0].extract(*dest, destCapacity, *status);
130 return trim(*dest, destLen, status);
218 int32_t destLen = getText(source, srcLen, dest, destCapacity, notePatternString, status);
219 return trim(*dest, destLen, status);
228 int32_t destLen = getText(source, srcLen, dest, destCapacity, notePatternString, status);
229 return trim(*dest, destLen, status);
wrtxml.cpp 226 int32_t destLen=0;
254 if((destLen+UTF8_CHAR_LENGTH(c)) < destCap){
260 uprv_strcpy(dest+( destLen),"\x26\x61\x6d\x70\x3b"); /* &amp;*/
261 destLen+=(int32_t)uprv_strlen("\x26\x61\x6d\x70\x3b");
264 uprv_strcpy(dest+(destLen),"\x26\x6c\x74\x3b"); /* &lt;*/
265 destLen+=(int32_t)uprv_strlen("\x26\x6c\x74\x3b");
268 uprv_strcpy(dest+(destLen),"\x26\x67\x74\x3b"); /* &gt;*/
269 destLen+=(int32_t)uprv_strlen("\x26\x67\x74\x3b");
272 uprv_strcpy(dest+(destLen),"\x26\x71\x75\x6f\x74\x3b"); /* &quot;*/
273 destLen+=(int32_t)uprv_strlen("\x26\x71\x75\x6f\x74\x3b")
    [all...]
  /external/icu4c/test/perf/normperf/
normperf.h 106 int32_t destLen;
120 retVal = (*fn)(lines[i].name,lines[i].len,pDest,destLen, options, status);
124 retVal = (*fn)(lines[i].name,-1,pDest,destLen, options, status);
129 retVal = (*fn)(src,srcLen,pDest,destLen, options, status);
131 retVal = (*fn)(src,-1,pDest,destLen, options, status);
151 destLen = DEST_BUFFER_CAPACITY;
162 destLen = sourceLen*3;
163 pDest = (UChar*) malloc(destLen * U_SIZEOF_UCHAR);
  /external/icu4c/test/intltest/
testidna.cpp 456 int32_t destLen = 0;
471 destLen = func(src,-1,NULL,0,options, &parseError , &status);
474 if(destLen+1 < MAX_DEST_SIZE){
476 destLen = func(src,-1,dest,destLen+1,options, &parseError, &status);
478 if(U_SUCCESS(status) && expectedStatus != U_IDNA_STD3_ASCII_RULES_ERROR&& (doCompare==TRUE) && u_strCaseCompare(dest,destLen, expected,expectedLen,0,&status)!=0){
481 + " Got: " + prettify(UnicodeString(dest,destLen))
501 destLen = func(src,-1,NULL,0,options | UIDNA_ALLOW_UNASSIGNED, &parseError, &status);
504 if(destLen+1 < MAX_DEST_SIZE){
506 destLen = func(src,-1,dest,destLen+1,options | UIDNA_ALLOW_UNASSIGNED, &parseError, &status)
    [all...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
Utf8ByteLengthFilter.java 55 int destLen = dest.length();
58 for (int i = 0; i < destLen; i++) {
  /external/webkit/Source/WebCore/platform/graphics/
WOFFFileFormat.cpp 233 uLongf destLen = tableOrigLength;
238 if (uncompress(dest, &destLen, reinterpret_cast<const Bytef*>(woff->data() + tableOffset), tableCompLength) != Z_OK)
240 if (destLen != tableOrigLength)
  /external/bzip2/
bzlib.h 206 unsigned int* destLen,
216 unsigned int* destLen,
  /external/zlib/old/
visual-basic.txt 87 dest As Any, ByRef destLen As Any, ByRef src As Any, ByVal srcLen As Long,
90 dest As Any, ByRef destLen As Any, ByRef src As Any, ByVal srcLen As Long)
  /external/zlib/contrib/pascal/
zlibpas.pas 144 function compress(dest: PChar; var destLen: LongInt;
146 function compress2(dest: PChar; var destLen: LongInt;
150 function uncompress(dest: PChar; var destLen: LongInt;
  /external/zlib/old/as400/
zlib.inc 105 D destLen 10U 0 Destination length
111 D destLen 10U 0 Destination length
121 D destLen 10U 0 Destination length
  /external/openssl/crypto/comp/
c_zlib.c 58 static int zz_uncompress(Bytef *dest, uLongf *destLen, const Bytef *source,
98 typedef int (*compress_ft)(Bytef *dest,uLongf *destLen,
305 static int zz_uncompress (Bytef *dest, uLongf *destLen, const Bytef *source,
317 stream.avail_out = (uInt)*destLen;
318 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
332 *destLen = stream.total_out;
  /external/zlib/as400/
zlib.inc 115 D destLen 10U 0 Destination length
121 D destLen 10U 0 Destination length
131 D destLen 10U 0 Destination length
  /external/zlib/contrib/ada/
zlib-thin.ads 162 destLen : ULong_Access;
169 destLen : ULong_Access;
177 destLen : ULong_Access;

Completed in 499 milliseconds

1 2 3 4