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

1 2 3 4 5 6 7 8 9

  /external/lzma/CPP/Common/
UTFConvert.cpp 10 static Bool Utf8_To_Utf16(wchar_t *dest, size_t *destLen, const char *src, size_t srcLen)
19 *destLen = destPos;
70 *destLen = destPos;
74 static Bool Utf16_To_Utf8(char *dest, size_t *destLen, const wchar_t *src, size_t srcLen)
83 *destLen = destPos;
119 *destLen = destPos;
126 size_t destLen = 0;
127 Utf8_To_Utf16(NULL, &destLen, src, src.Length());
128 wchar_t *p = dest.GetBuffer((int)destLen);
129 Bool res = Utf8_To_Utf16(p, &destLen, src, src.Length());
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
LzmaLib.c 15 MY_STDAPI LzmaCompress(unsigned char *dest, size_t *destLen, const unsigned char *src, size_t srcLen,
36 return LzmaEncode(dest, destLen, src, srcLen, &props, outProps, outPropsSize, 0,
41 MY_STDAPI LzmaUncompress(unsigned char *dest, size_t *destLen, const unsigned char *src, size_t *srcLen,
45 return LzmaDecode(dest, destLen, src, srcLen, props, (unsigned)propsSize, LZMA_FINISH_ANY, &status, &g_Alloc);
Lzma2Dec.h 38 It has meaning only if the decoding reaches output limit (*destLen or dicLimit).
54 SRes Lzma2Dec_DecodeToBuf(CLzma2Dec *p, Byte *dest, SizeT *destLen,
62 It has meaning only if the decoding reaches output limit (*destLen).
77 SRes Lzma2Decode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
LzmaDec.h 91 and output value of destLen will be less than output buffer size limit.
96 2) Check that output(destLen) = uncompressedSize, if you know real uncompressedSize.
193 It has meaning only if the decoding reaches output limit (*destLen).
194 LZMA_FINISH_ANY - Decode just destLen bytes.
195 LZMA_FINISH_END - Stream must be finished after (*destLen).
198 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen,
207 It has meaning only if the decoding reaches output limit (*destLen).
208 LZMA_FINISH_ANY - Decode just destLen bytes.
209 LZMA_FINISH_END - Stream must be finished after (*destLen).
223 SRes LzmaDecode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaLib.c 16 MY_STDAPI LzmaCompress(unsigned char *dest, size_t *destLen, const unsigned char *src, size_t srcLen,
37 return LzmaEncode(dest, destLen, src, srcLen, &props, outProps, outPropsSize, 0,
42 MY_STDAPI LzmaUncompress(unsigned char *dest, size_t *destLen, const unsigned char *src, size_t *srcLen,
46 return LzmaDecode(dest, destLen, src, srcLen, props, (unsigned)propsSize, LZMA_FINISH_ANY, &status, &g_Alloc);
LzmaDec.h 92 and output value of destLen will be less than output buffer size limit.
97 2) Check that output(destLen) = uncompressedSize, if you know real uncompressedSize.
194 It has meaning only if the decoding reaches output limit (*destLen).
195 LZMA_FINISH_ANY - Decode just destLen bytes.
196 LZMA_FINISH_END - Stream must be finished after (*destLen).
199 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen,
208 It has meaning only if the decoding reaches output limit (*destLen).
209 LZMA_FINISH_ANY - Decode just destLen bytes.
210 LZMA_FINISH_END - Stream must be finished after (*destLen).
224 SRes LzmaDecode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen
    [all...]
  /external/lzma/C/
Lzma86Dec.c 24 SRes Lzma86_Decode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen)
39 *destLen = 0;
44 res = LzmaDecode(dest, destLen, src + LZMA86_HEADER_SIZE, &inSizePure,
53 x86_Convert(dest, *destLen, 0, &x86State, 0);
LzmaLib.c 15 MY_STDAPI LzmaCompress(unsigned char *dest, size_t *destLen, const unsigned char *src, size_t srcLen,
36 return LzmaEncode(dest, destLen, src, srcLen, &props, outProps, outPropsSize, 0,
41 MY_STDAPI LzmaUncompress(unsigned char *dest, size_t *destLen, const unsigned char *src, size_t *srcLen,
45 return LzmaDecode(dest, destLen, src, srcLen, props, (unsigned)propsSize, LZMA_FINISH_ANY, &status, &g_Alloc);
Lzma2Dec.h 38 It has meaning only if the decoding reaches output limit (*destLen or dicLimit).
54 SRes Lzma2Dec_DecodeToBuf(CLzma2Dec *p, Byte *dest, SizeT *destLen,
62 It has meaning only if the decoding reaches output limit (*destLen).
77 SRes Lzma2Decode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
LzmaDec.h 91 and output value of destLen will be less than output buffer size limit.
96 2) Check that output(destLen) = uncompressedSize, if you know real uncompressedSize.
193 It has meaning only if the decoding reaches output limit (*destLen).
194 LZMA_FINISH_ANY - Decode just destLen bytes.
195 LZMA_FINISH_END - Stream must be finished after (*destLen).
198 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen,
207 It has meaning only if the decoding reaches output limit (*destLen).
208 LZMA_FINISH_ANY - Decode just destLen bytes.
209 LZMA_FINISH_END - Stream must be finished after (*destLen).
223 SRes LzmaDecode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
    [all...]
Lzma86Enc.c 17 int Lzma86_Encode(Byte *dest, size_t *destLen, const Byte *src, size_t srcLen,
21 size_t outSize2 = *destLen;
30 *destLen = 0;
103 *destLen = LZMA86_HEADER_SIZE + minSize;
  /external/chromium_org/third_party/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...]
  /external/qemu/distrib/zlib-1.2.8/
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...]
  /external/zlib/src/
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...]
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_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.
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;
fx_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.
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);
  /external/zlib/src/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);
  /external/chromium_org/third_party/icu/source/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...]
  /external/icu/icu4c/source/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...]

Completed in 9578 milliseconds

1 2 3 4 5 6 7 8 9