Searched refs:normalizedLen (Results 1 - 1 of 1) sorted by relevance

/external/icu4c/i18n/
H A Duspoof.cpp638 int32_t normalizedLen = unorm_normalize( local
641 nfkdInput = (UChar *)uprv_malloc((normalizedLen+1)*sizeof(UChar));
647 normalizedLen = unorm_normalize(s, length, UNORM_NFKD, 0,
648 nfkdInput, normalizedLen+1, status);
664 while (inputIndex < normalizedLen) {
666 U16_NEXT(nfkdInput, inputIndex, normalizedLen, c);
682 normalizedLen = unorm_normalize(result, resultLen, UNORM_NFKD, 0, NULL, 0, status);
683 normedResult = static_cast<UChar *>(uprv_malloc((normalizedLen+1)*sizeof(UChar)));
689 unorm_normalize(result, resultLen, UNORM_NFKD, 0, normedResult, normalizedLen+1, status);
691 resultLen = normalizedLen;
[all...]

Completed in 82 milliseconds