Home
last modified time | relevance | path

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

/external/icu/icu4c/source/common/
Ducnv_ext.cpp310 cnv->preToUFirstLength=(int8_t)firstLength; in ucnv_extInitialMatchToU()
430 uprv_memcpy(cnv->toUBytes, cnv->preToU, cnv->preToUFirstLength); in ucnv_extContinueMatchToU()
431 cnv->toULength=cnv->preToUFirstLength; in ucnv_extContinueMatchToU()
434 length=cnv->preToULength-cnv->preToUFirstLength; in ucnv_extContinueMatchToU()
436 uprv_memmove(cnv->preToU, cnv->preToU+cnv->preToUFirstLength, length); in ucnv_extContinueMatchToU()
Ducnv_bld.h235 int8_t preToUFirstLength; /* length of first character */ member
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetDecoderICU.java51 int preToUFirstLength; /* length of first character */ field in CharsetDecoderICU
212 preToUFirstLength = 0; in implReset()
DCharsetMBCS.java1696 … System.arraycopy(preToUArray, preToUBegin, toUBytesArray, toUBytesBegin, preToUFirstLength); in continueMatchToU()
1697 toULength = preToUFirstLength; in continueMatchToU()
1700 length = preToULength - preToUFirstLength; in continueMatchToU()
1702 … System.arraycopy(preToUArray, preToUBegin + preToUFirstLength, preToUArray, preToUBegin, length); in continueMatchToU()
1709 cr = CoderResult.unmappableForLength(preToUFirstLength); in continueMatchToU()
1947 preToUFirstLength = (byte) firstLength; in initialMatchToU()