HomeSort by relevance Sort by last modified time
    Searched refs:destLen (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/qemu/distrib/zlib-1.2.3/
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...]
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;
zlib.h     [all...]
  /external/zlib/
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...]
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;
  /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/icu4c/test/cintltst/
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...]
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...]
cbiditst.c 90 const UChar *dest, int32_t destLen, int mode,
94 int32_t destLen, const char *mode,
    [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/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/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...]
  /external/bzip2/
bzlib.h 206 unsigned int* destLen,
216 unsigned int* destLen,
  /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/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/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;
  /development/ndk/platforms/android-3/include/
zlib.h     [all...]
  /external/chromium/sdch/open-vcdiff/src/
zlib.h     [all...]
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/
zlib.h     [all...]
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/
zlib.h     [all...]
  /prebuilts/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
zlib.h     [all...]
  /prebuilts/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
zlib.h     [all...]
  /prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
zlib.h     [all...]

Completed in 418 milliseconds

1 2 3