Home
last modified time | relevance | path

Searched refs:preToUFirstLength (Results 1 – 4 of 4) sorted by relevance

/external/icu/icu4c/source/common/
Ducnv_ext.cpp313 cnv->preToUFirstLength=(int8_t)firstLength; in ucnv_extInitialMatchToU()
433 uprv_memcpy(cnv->toUBytes, cnv->preToU, cnv->preToUFirstLength); in ucnv_extContinueMatchToU()
434 cnv->toULength=cnv->preToUFirstLength; in ucnv_extContinueMatchToU()
437 length=cnv->preToULength-cnv->preToUFirstLength; in ucnv_extContinueMatchToU()
439 uprv_memmove(cnv->preToU, cnv->preToU+cnv->preToUFirstLength, length); in ucnv_extContinueMatchToU()
Ducnv_bld.h237 int8_t preToUFirstLength; /* length of first character */ member
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetDecoderICU.java53 int preToUFirstLength; /* length of first character */ field in CharsetDecoderICU
219 preToUFirstLength = 0; in implReset()
DCharsetMBCS.java1691 … System.arraycopy(preToUArray, preToUBegin, toUBytesArray, toUBytesBegin, preToUFirstLength); in continueMatchToU()
1692 toULength = preToUFirstLength; in continueMatchToU()
1695 length = preToULength - preToUFirstLength; in continueMatchToU()
1697 … System.arraycopy(preToUArray, preToUBegin + preToUFirstLength, preToUArray, preToUBegin, length); in continueMatchToU()
1704 cr = CoderResult.unmappableForLength(preToUFirstLength); in continueMatchToU()
1942 preToUFirstLength = (byte) firstLength; in initialMatchToU()