HomeSort by relevance Sort by last modified time
    Searched refs:dstLen (Results 1 - 4 of 4) sorted by null

  /external/icu4c/test/perf/normperf/
normperf.h 28 typedef int32_t (*NormFn)(const UChar* src,int32_t srcLen, UChar* dest,int32_t dstLen, int32_t options, UErrorCode* status);
257 int32_t ICUNormNFD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) {
258 return unorm_normalize(src,srcLen,UNORM_NFD, options,dest,dstLen,status);
261 int32_t ICUNormNFC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) {
262 return unorm_normalize(src,srcLen,UNORM_NFC, options,dest,dstLen,status);
265 int32_t ICUNormNFKD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) {
266 return unorm_normalize(src,srcLen,UNORM_NFKD, options,dest,dstLen,status);
268 int32_t ICUNormNFKC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) {
269 return unorm_normalize(src,srcLen,UNORM_NFKC, options,dest,dstLen,status);
272 int32_t ICUNormFCD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status)
    [all...]
  /external/icu4c/test/perf/convperf/
convperf.h 155 UINT dstLen;
162 dstLen = LENGTHOF(dest);
193 int winSize =MultiByteToWideChar(uiCodePage,CONVERSION_FLAGS,src,srcLen,dest,dstLen);
207 UINT dstLen;
216 dstLen = LENGTHOF(dest);
248 int winSize = WideCharToMultiByte(uiCodePage,CONVERSION_FLAGS,src,srcLen,dest,dstLen,NULL, pUsedDefaultChar);
276 UINT dstLen;
311 dstLen = LENGTHOF(dst);
316 HRESULT err= pConvToUni->DoConversionToUnicode(src,&srcLen,dst, &dstLen);
332 UINT dstLen;
    [all...]
  /build/libs/host/
CopyFile.c 484 int srcLen, dstLen, nameLen;
498 dstLen = strlen(dst);
505 dstFile = malloc(dstLen +1 + nameLen +1);
506 memcpy(dstFile, dst, dstLen);
507 dstFile[dstLen] = FSSEP;
508 memcpy(dstFile + dstLen+1, ent->d_name, nameLen +1);
  /external/icu4c/test/cintltst/
nucnvtst.c     [all...]

Completed in 243 milliseconds