Searched defs:srcLen (Results 1 - 25 of 61) sorted by relevance

123

/external/lzma/C/
H A DLzma86Dec.c13 SRes Lzma86_GetUnpackSize(const Byte *src, SizeT srcLen, UInt64 *unpackSize) argument
16 if (srcLen < LZMA86_HEADER_SIZE)
24 SRes Lzma86_Decode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen) argument
32 if (*srcLen < LZMA86_HEADER_SIZE)
43 inSizePure = *srcLen - LZMA86_HEADER_SIZE;
46 *srcLen = inSizePure + LZMA86_HEADER_SIZE;
H A DLzmaLib.c15 MY_STDAPI LzmaCompress(unsigned char *dest, size_t *destLen, const unsigned char *src, size_t srcLen, argument
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, argument
45 return LzmaDecode(dest, destLen, src, srcLen, props, (unsigned)propsSize, LZMA_FINISH_ANY, &status, &g_Alloc);
H A DLzma86Enc.c17 int Lzma86_Encode(Byte *dest, size_t *destLen, const Byte *src, size_t srcLen, argument
36 UInt64 t = srcLen;
45 if (srcLen != 0)
47 filteredStream = (Byte *)MyAlloc(srcLen);
50 memcpy(filteredStream, src, srcLen);
55 x86_Convert(filteredStream, srcLen, 0, &x86State, 1);
83 curModeIsFiltered ? filteredStream : src, srcLen,
H A DLzma2Dec.c171 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status)
173 SizeT inSize = *srcLen;
174 *srcLen = 0;
189 if (*srcLen == inSize)
194 (*srcLen)++;
200 SizeT srcSizeCur = inSize - *srcLen;
211 if (*srcLen == inSize)
237 *srcLen += srcSizeCur;
265 *srcLen += srcSizeCur;
291 SRes Lzma2Dec_DecodeToBuf(CLzma2Dec *p, Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, ELzmaFinishMod argument
170 Lzma2Dec_DecodeToDic(CLzma2Dec *p, SizeT dicLimit, const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status) argument
330 Lzma2Decode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, Byte prop, ELzmaFinishMode finishMode, ELzmaStatus *status, ISzAlloc *alloc) argument
[all...]
/external/lzma/CPP/Common/
H A DUTFConvert.cpp10 static Bool Utf8_To_Utf16(wchar_t *dest, size_t *destLen, const char *src, size_t srcLen) argument
17 if (srcPos == srcLen)
41 if (srcPos == srcLen)
74 static Bool Utf16_To_Utf8(char *dest, size_t *destLen, const wchar_t *src, size_t srcLen) argument
81 if (srcPos == srcLen)
97 if (value >= 0xDC00 || srcPos == srcLen)
/external/chromium_org/third_party/icu/source/test/perf/strsrchperf/
H A Dstrsrchperf.h14 typedef void (*StrSrchFn)(UStringSearch* srch, const UChar* src,int32_t srcLen, const UChar* pttrn, int32_t pttrnLen, UErrorCode* status);
20 int32_t srcLen; member in class:StringSearchPerfFunction
27 (*fn)(srch, src, srcLen, pttrn, pttrnLen, status);
31 return (long) srcLen;
37 srcLen = sourceLen;
47 int32_t srcLen; member in class:StringSearchPerformanceTest
/external/chromium_org/third_party/lzma_sdk/
H A DLzmaLib.c15 MY_STDAPI LzmaCompress(unsigned char *dest, size_t *destLen, const unsigned char *src, size_t srcLen, argument
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, argument
45 return LzmaDecode(dest, destLen, src, srcLen, props, (unsigned)propsSize, LZMA_FINISH_ANY, &status, &g_Alloc);
H A DLzma2Dec.c171 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status)
173 SizeT inSize = *srcLen;
174 *srcLen = 0;
189 if (*srcLen == inSize)
194 (*srcLen)++;
200 SizeT srcSizeCur = inSize - *srcLen;
211 if (*srcLen == inSize)
237 *srcLen += srcSizeCur;
265 *srcLen += srcSizeCur;
291 SRes Lzma2Dec_DecodeToBuf(CLzma2Dec *p, Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, ELzmaFinishMod argument
170 Lzma2Dec_DecodeToDic(CLzma2Dec *p, SizeT dicLimit, const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status) argument
330 Lzma2Decode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, Byte prop, ELzmaFinishMode finishMode, ELzmaStatus *status, ISzAlloc *alloc) argument
[all...]
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DLzmaLib.c16 MY_STDAPI LzmaCompress(unsigned char *dest, size_t *destLen, const unsigned char *src, size_t srcLen, argument
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, argument
46 return LzmaDecode(dest, destLen, src, srcLen, props, (unsigned)propsSize, LZMA_FINISH_ANY, &status, &g_Alloc);
/external/icu/icu4c/source/test/perf/strsrchperf/
H A Dstrsrchperf.h14 typedef void (*StrSrchFn)(UStringSearch* srch, const UChar* src,int32_t srcLen, const UChar* pttrn, int32_t pttrnLen, UErrorCode* status);
20 int32_t srcLen; member in class:StringSearchPerfFunction
27 (*fn)(srch, src, srcLen, pttrn, pttrnLen, status);
31 return (long) srcLen;
37 srcLen = sourceLen;
47 int32_t srcLen; member in class:StringSearchPerformanceTest
/external/chromium_org/third_party/icu/source/tools/genrb/
H A Dprscmnts.cpp35 removeText(UChar *source, int32_t srcLen, argument
43 UnicodeString src(source, srcLen);
55 return dest.extract(source, srcLen, *status);
59 trim(UChar *src, int32_t srcLen, UErrorCode *status){ argument
60 srcLen = removeText(src, srcLen, "^[ \\r\\n]+ ", 0, "", status); // remove leading new lines
61 srcLen = removeText(src, srcLen, "^\\s+", 0, "", status); // remove leading spaces
62 srcLen = removeText(src, srcLen, "\\
67 removeCmtText(UChar* source, int32_t srcLen, UErrorCode* status) argument
75 getText(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UnicodeString patternString, UErrorCode* status) argument
112 getDescription( const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
136 getCount(const UChar* source, int32_t srcLen, UParseCommentsOption option, UErrorCode *status) argument
172 getAt(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, int32_t index, UParseCommentsOption option, UErrorCode* status) argument
213 getTranslate( const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
223 getNote(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
[all...]
H A Drle.c148 usArrayToRLEString(const uint16_t* src,int32_t srcLen,uint16_t* buffer, int32_t bufLen,UErrorCode* status) { argument
152 *buffer++ = (uint16_t)(srcLen>>16);
157 *buffer++ = (uint16_t) srcLen;
159 for (; i<srcLen; ++i) {
194 byteArrayToRLEString(const uint8_t* src,int32_t srcLen, uint16_t* buffer,int32_t bufLen, UErrorCode* status) { argument
198 *buffer++ = ((uint16_t) (srcLen >> 16));
205 *buffer++=((uint16_t) srcLen);
206 for (; i<srcLen; ++i) {
239 rleStringToUCharArray(uint16_t* src, int32_t srcLen, uint16_t* target, int32_t tgtLen, UErrorCode* status) { argument
248 if(srcLen
295 rleStringToByteArray(uint16_t* src, int32_t srcLen, uint8_t* target, int32_t tgtLen, UErrorCode* status) argument
[all...]
H A Dwrtjava.c228 str_write_java( uint16_t* src, int32_t srcLen, UBool printEndLine, UErrorCode *status){ argument
230 uint32_t length = srcLen*8;
240 columnCount = getColumnCount(srcLen);
243 bufLen = uCharsToChars(buf,length,src,srcLen,status);
448 int32_t srcLen=res->u.fBinaryValue.fLength; local
450 if(srcLen>0 )
459 for (;byteIterator<srcLen;byteIterator++)
/external/icu/icu4c/source/tools/genrb/
H A Dprscmnts.cpp45 removeText(UChar *source, int32_t srcLen, argument
53 UnicodeString src(source, srcLen);
65 return dest.extract(source, srcLen, *status);
69 trim(UChar *src, int32_t srcLen, UErrorCode *status){ argument
70 srcLen = removeText(src, srcLen, UnicodeString("^[ \\r\\n]+ "), 0, UnicodeString(), status); // remove leading new lines
71 srcLen = removeText(src, srcLen, UnicodeString("^\\s+"), 0, UnicodeString(), status); // remove leading spaces
72 srcLen = removeText(src, srcLen, UnicodeStrin
77 removeCmtText(UChar* source, int32_t srcLen, UErrorCode* status) argument
85 getText(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UnicodeString patternString, UErrorCode* status) argument
122 getDescription( const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
146 getCount(const UChar* source, int32_t srcLen, UParseCommentsOption option, UErrorCode *status) argument
183 getAt(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, int32_t index, UParseCommentsOption option, UErrorCode* status) argument
225 getTranslate( const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
235 getNote(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
[all...]
H A Drle.c148 usArrayToRLEString(const uint16_t* src,int32_t srcLen,uint16_t* buffer, int32_t bufLen,UErrorCode* status) { argument
152 *buffer++ = (uint16_t)(srcLen>>16);
157 *buffer++ = (uint16_t) srcLen;
159 for (; i<srcLen; ++i) {
194 byteArrayToRLEString(const uint8_t* src,int32_t srcLen, uint16_t* buffer,int32_t bufLen, UErrorCode* status) { argument
198 *buffer++ = ((uint16_t) (srcLen >> 16));
205 *buffer++=((uint16_t) srcLen);
206 for (; i<srcLen; ++i) {
239 rleStringToUCharArray(uint16_t* src, int32_t srcLen, uint16_t* target, int32_t tgtLen, UErrorCode* status) { argument
248 if(srcLen
295 rleStringToByteArray(uint16_t* src, int32_t srcLen, uint8_t* target, int32_t tgtLen, UErrorCode* status) argument
[all...]
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dspreptst.c295 unescapeData(const char* src, int32_t srcLen, argument
445 int32_t srcLen; local
452 srcLen = unescapeData(mixed_prep_data[i], (int32_t)strlen(mixed_prep_data[i]), src, MAX_BUFFER_SIZE, &status);
457 destLen = nfs4_mixed_prepare(src, srcLen, NULL, 0, &parseError, &status);
461 destLen = nfs4_mixed_prepare(src, srcLen, dest, destLen, &parseError, &status);
478 int32_t srcLen = unescapeData(source, (int32_t)strlen(source), src, MAX_BUFFER_SIZE, &status); local
480 nfs4_mixed_prepare(src, srcLen, dest, MAX_BUFFER_SIZE, &parseError, &status);
505 int32_t srcLen = unescapeData(source, (int32_t)strlen(source), src, MAX_BUFFER_SIZE, &status); local
508 int32_t destLen = nfs4_cs_prepare(src, srcLen, dest, MAX_BUFFER_SIZE, FALSE, &parseError, &status);
515 if(destLen != srcLen){
528 int32_t srcLen = unescapeData(source, (int32_t)strlen(source), src, MAX_BUFFER_SIZE, &status); local
551 int32_t srcLen = unescapeData(source, (int32_t)strlen(source), src, MAX_BUFFER_SIZE, &status); local
576 int32_t srcLen = unescapeData(source, (int32_t)strlen(source), src, MAX_BUFFER_SIZE, &status); local
[all...]
/external/chromium_org/third_party/icu/source/test/perf/convperf/
H A Dconvperf.h28 int32_t srcLen; member in class:ICUToUnicodePerfFunction
36 srcLen = sourceLen;
44 source, srcLen, &status);
57 const char* sourceLimit = src + srcLen;
62 return srcLen;
73 int32_t srcLen; member in class:ICUFromUnicodePerfFunction
82 srcLen = sourceLen;
90 source, srcLen, &status);
103 const UChar* sourceLimit = src + srcLen;
108 return srcLen;
153 UINT srcLen; member in class:WinANSIToUnicodePerfFunction
205 UINT srcLen; member in class:WinANSIFromUnicodePerfFunction
274 UINT srcLen; member in class:WinIMultiLanguageToUnicodePerfFunction
330 UINT srcLen; member in class:WinIMultiLanguageFromUnicodePerfFunction
386 UINT srcLen; member in class:WinIMultiLanguage2ToUnicodePerfFunction
439 UINT srcLen; member in class:WinIMultiLanguage2FromUnicodePerfFunction
[all...]
/external/chromium_org/third_party/icu/source/test/perf/normperf/
H A Dnormperf.cpp74 void NormalizerPerformanceTest::normalizeInput(ULine* dest,const UChar* src ,int32_t srcLen,UNormalizationMode mode, int32_t options){ argument
79 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status);
83 reqLen= unorm_normalize(src,srcLen,mode, options,dest->name,reqLen+1,&status);
91 UChar* NormalizerPerformanceTest::normalizeInput(int32_t& len, const UChar* src ,int32_t srcLen,UNormalizationMode mode, int32_t options){ argument
97 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status);
101 reqLen= unorm_normalize(src,srcLen,mode, options,dest,reqLen+1,&status);
155 int32_t srcLen = 0; local
156 const UChar* src = getBuffer(srcLen,status);
165 NFDBuffer = normalizeInput(NFDBufferLen,src,srcLen,UNORM_NFD, options);
166 NFCBuffer = normalizeInput(NFCBufferLen,src,srcLen,UNORM_NF
[all...]
H A Dnormperf.h28 typedef int32_t (*NormFn)(const UChar* src,int32_t srcLen, UChar* dest,int32_t dstLen, int32_t options, UErrorCode* status);
29 typedef int32_t (*QuickCheckFn)(const UChar* src,int32_t srcLen, UNormalizationMode mode, int32_t options, UErrorCode* status);
40 int32_t srcLen; member in class:QuickCheckPerfFunction
59 retVal = (*fn)(src,srcLen,mode, options, status);
74 return srcLen;
84 srcLen = 0;
94 srcLen = sourceLen;
111 int32_t srcLen; member in class:NormPerfFunction
129 retVal = (*fn)(src,srcLen,pDest,destLen, options, status);
143 return srcLen;
257 ICUNormNFD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
261 ICUNormNFC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
265 ICUNormNFKD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
268 ICUNormNFKC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
272 ICUNormFCD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
276 ICUQuickCheck(const UChar* src,int32_t srcLen, UNormalizationMode mode, int32_t options, UErrorCode* status) argument
283 ICUIsNormalized(const UChar* src,int32_t srcLen, UNormalizationMode mode, int32_t options, UErrorCode* status) argument
290 ICUNormNFD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
294 ICUNormNFC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
298 ICUNormNFKD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
301 ICUNormNFKC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
305 ICUNormFCD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
309 ICUQuickCheck(const UChar* src,int32_t srcLen, UNormalizationMode mode, int32_t options, UErrorCode* status) argument
313 ICUIsNormalized(const UChar* src,int32_t srcLen, UNormalizationMode mode, int32_t options, UErrorCode* status) argument
320 WinNormNFD(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
324 WinNormNFC(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
328 WinNormNFKD(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
331 WinNormNFKC(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
335 WinNormNFD(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
339 WinNormNFC(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
343 WinNormNFKD(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
346 WinNormNFKC(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
[all...]
/external/chromium_org/third_party/icu/source/test/perf/ustrperf/
H A Dstringperf.cpp100 int32_t srcLen = 0; local
101 const UChar* src = getBuffer(srcLen,status);
107 StrBuffer = new UChar[srcLen];
108 StrBufferLen = srcLen;
109 memcpy(StrBuffer, src, srcLen * U_SIZEOF_UCHAR);
/external/icu/icu4c/source/test/cintltst/
H A Dspreptst.c295 unescapeData(const char* src, int32_t srcLen, argument
445 int32_t srcLen; local
452 srcLen = unescapeData(mixed_prep_data[i], (int32_t)strlen(mixed_prep_data[i]), src, MAX_BUFFER_SIZE, &status);
457 destLen = nfs4_mixed_prepare(src, srcLen, NULL, 0, &parseError, &status);
461 destLen = nfs4_mixed_prepare(src, srcLen, dest, destLen, &parseError, &status);
478 int32_t srcLen = unescapeData(source, (int32_t)strlen(source), src, MAX_BUFFER_SIZE, &status); local
480 nfs4_mixed_prepare(src, srcLen, dest, MAX_BUFFER_SIZE, &parseError, &status);
505 int32_t srcLen = unescapeData(source, (int32_t)strlen(source), src, MAX_BUFFER_SIZE, &status); local
508 int32_t destLen = nfs4_cs_prepare(src, srcLen, dest, MAX_BUFFER_SIZE, FALSE, &parseError, &status);
515 if(destLen != srcLen){
528 int32_t srcLen = unescapeData(source, (int32_t)strlen(source), src, MAX_BUFFER_SIZE, &status); local
551 int32_t srcLen = unescapeData(source, (int32_t)strlen(source), src, MAX_BUFFER_SIZE, &status); local
576 int32_t srcLen = unescapeData(source, (int32_t)strlen(source), src, MAX_BUFFER_SIZE, &status); local
[all...]
/external/icu/icu4c/source/test/perf/convperf/
H A Dconvperf.h28 int32_t srcLen; member in class:ICUToUnicodePerfFunction
36 srcLen = sourceLen;
44 source, srcLen, &status);
57 const char* sourceLimit = src + srcLen;
62 return srcLen;
73 int32_t srcLen; member in class:ICUFromUnicodePerfFunction
82 srcLen = sourceLen;
90 source, srcLen, &status);
103 const UChar* sourceLimit = src + srcLen;
108 return srcLen;
153 UINT srcLen; member in class:WinANSIToUnicodePerfFunction
205 UINT srcLen; member in class:WinANSIFromUnicodePerfFunction
274 UINT srcLen; member in class:WinIMultiLanguageToUnicodePerfFunction
330 UINT srcLen; member in class:WinIMultiLanguageFromUnicodePerfFunction
386 UINT srcLen; member in class:WinIMultiLanguage2ToUnicodePerfFunction
439 UINT srcLen; member in class:WinIMultiLanguage2FromUnicodePerfFunction
[all...]
/external/icu/icu4c/source/test/perf/normperf/
H A Dnormperf.cpp74 void NormalizerPerformanceTest::normalizeInput(ULine* dest,const UChar* src ,int32_t srcLen,UNormalizationMode mode, int32_t options){ argument
79 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status);
83 reqLen= unorm_normalize(src,srcLen,mode, options,dest->name,reqLen+1,&status);
91 UChar* NormalizerPerformanceTest::normalizeInput(int32_t& len, const UChar* src ,int32_t srcLen,UNormalizationMode mode, int32_t options){ argument
97 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status);
101 reqLen= unorm_normalize(src,srcLen,mode, options,dest,reqLen+1,&status);
155 int32_t srcLen = 0; local
156 const UChar* src = getBuffer(srcLen,status);
165 NFDBuffer = normalizeInput(NFDBufferLen,src,srcLen,UNORM_NFD, options);
166 NFCBuffer = normalizeInput(NFCBufferLen,src,srcLen,UNORM_NF
[all...]
H A Dnormperf.h28 typedef int32_t (*NormFn)(const UChar* src,int32_t srcLen, UChar* dest,int32_t dstLen, int32_t options, UErrorCode* status);
29 typedef int32_t (*QuickCheckFn)(const UChar* src,int32_t srcLen, UNormalizationMode mode, int32_t options, UErrorCode* status);
40 int32_t srcLen; member in class:QuickCheckPerfFunction
59 retVal = (*fn)(src,srcLen,mode, options, status);
74 return srcLen;
84 srcLen = 0;
94 srcLen = sourceLen;
111 int32_t srcLen; member in class:NormPerfFunction
129 retVal = (*fn)(src,srcLen,pDest,destLen, options, status);
143 return srcLen;
257 ICUNormNFD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
261 ICUNormNFC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
265 ICUNormNFKD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
268 ICUNormNFKC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
272 ICUNormFCD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
276 ICUQuickCheck(const UChar* src,int32_t srcLen, UNormalizationMode mode, int32_t options, UErrorCode* status) argument
283 ICUIsNormalized(const UChar* src,int32_t srcLen, UNormalizationMode mode, int32_t options, UErrorCode* status) argument
290 ICUNormNFD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
294 ICUNormNFC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
298 ICUNormNFKD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
301 ICUNormNFKC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
305 ICUNormFCD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
309 ICUQuickCheck(const UChar* src,int32_t srcLen, UNormalizationMode mode, int32_t options, UErrorCode* status) argument
313 ICUIsNormalized(const UChar* src,int32_t srcLen, UNormalizationMode mode, int32_t options, UErrorCode* status) argument
320 WinNormNFD(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
324 WinNormNFC(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
328 WinNormNFKD(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
331 WinNormNFKC(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
335 WinNormNFD(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
339 WinNormNFC(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
343 WinNormNFKD(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
346 WinNormNFKC(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
[all...]
/external/icu/icu4c/source/test/perf/ustrperf/
H A Dstringperf.cpp100 int32_t srcLen = 0; local
101 const UChar* src = getBuffer(srcLen,status);
107 StrBuffer = new UChar[srcLen];
108 StrBufferLen = srcLen;
109 memcpy(StrBuffer, src, srcLen * U_SIZEOF_UCHAR);

Completed in 452 milliseconds

123