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

/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Drematch.cpp330 int32_t len16; local
332 len16 = (int32_t)(fMatchStart-fAppendPosition);
335 len16 = utext_extract(fInputText, fAppendPosition, fMatchStart, NULL, 0, &lengthStatus);
337 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1));
342 utext_extract(fInputText, fAppendPosition, fMatchStart, inputChars, len16+1, &status);
343 destLen += utext_replace(dest, destLen, destLen, inputChars, len16, &status);
512 int32_t len16; local
514 len16 = (int32_t)(fInputLength-fAppendPosition);
516 len16 = utext_extract(fInputText, fAppendPosition, fInputLength, NULL, 0, &status);
520 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16));
1228 int32_t len16; local
1305 int32_t len16; local
1377 int32_t len16; local
[all...]
H A Drepattrn.cpp539 int32_t len16 = utext_extract(fPattern, 0, nativeLen, NULL, 0, &status); // buffer overflow error local
543 UChar *resultChars = result.getBuffer(len16);
544 utext_extract(fPattern, 0, nativeLen, resultChars, len16, &status); // unterminated warning
545 result.releaseBuffer(len16);
/macosx-10.10/ICU-531.30/icuSources/test/cintltst/
H A Dcustrtrn.c213 int32_t len16, u32DestLen; local
221 len16 = LENGTHOF(surr16);
224 u_strToUTF32(u32Target, 0, &u32DestLen, surr16+i, len16-i, &err);
232 u_strToUTF32(u32Target, LENGTHOF(u32Target), &u32DestLen, surr16+i, len16-i, &err);
257 u_strToUTF32(u32Target, 0, &u32DestLen, surr16+4, len16-4-1, &err);
265 u_strToUTF32(u32Target, LENGTHOF(u32Target), &u32DestLen, surr16+4, len16-4-1, &err);
291 u_strToUTF32WithSub(u32Target, 0, &u32DestLen, surr16, len16-1, 0xfffd, &numSubstitutions, &err);
299 u_strToUTF32WithSub(u32Target, LENGTHOF(u32Target), &u32DestLen, surr16, len16-1, 0xfffd, &numSubstitutions, &err);
H A Dreapits.c1786 int32_t len16; local
1797 /* len16 = utext_extract(actual, nativeIndex, nativeIndex + group_len, NULL, 0, &shallowStatus); */
1798 len16 = (int32_t)group_len;
1800 groupChars = (UChar *)malloc(sizeof(UChar)*(len16+1));
1801 utext_extract(actual, nativeIndex, nativeIndex + group_len, groupChars, len16+1, &shallowStatus);
1803 utext_openUChars(&groupText, groupChars, len16, &shallowStatus);

Completed in 138 milliseconds