Home
last modified time | relevance | path

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

/external/icu4c/common/
Ducnv_ext.c321 cnv->preToULength=(int8_t)match; in ucnv_extInitialMatchToU()
374 cnv->preToU, cnv->preToULength, in ucnv_extContinueMatchToU()
379 if(match>=cnv->preToULength) { in ucnv_extContinueMatchToU()
381 pArgs->source+=match-cnv->preToULength; in ucnv_extContinueMatchToU()
382 cnv->preToULength=0; in ucnv_extContinueMatchToU()
385 length=cnv->preToULength-match; in ucnv_extContinueMatchToU()
387 cnv->preToULength=(int8_t)-length; in ucnv_extContinueMatchToU()
404 for(j=cnv->preToULength; j<match; ++j) { in ucnv_extContinueMatchToU()
408 cnv->preToULength=(int8_t)match; in ucnv_extContinueMatchToU()
433 length=cnv->preToULength-cnv->preToUFirstLength; in ucnv_extContinueMatchToU()
[all …]
Ducnv.c606 converter->preToULength = 0; in _reset()
1301 if(cnv->preToULength>=0) { in _toUnicodeWithCallback()
1320 uprv_memcpy(replay, cnv->preToU, -cnv->preToULength); in _toUnicodeWithCallback()
1322 pArgs->sourceLimit=replay-cnv->preToULength; in _toUnicodeWithCallback()
1326 cnv->preToULength=0; in _toUnicodeWithCallback()
1398 if(cnv->preToULength<0) { in _toUnicodeWithCallback()
1409 uprv_memcpy(replay, cnv->preToU, -cnv->preToULength); in _toUnicodeWithCallback()
1411 pArgs->sourceLimit=replay-cnv->preToULength; in _toUnicodeWithCallback()
1413 if((sourceIndex+=cnv->preToULength)<0) { in _toUnicodeWithCallback()
1417 cnv->preToULength=0; in _toUnicodeWithCallback()
[all …]
Ducnv_bld.h227 int8_t preFromULength, preToULength; /* negative: replay */ member
Ducnvmbcs.c2180 if(cnv->preToULength>0) { in ucnv_MBCSToUnicodeWithOffsets()
2187 if(U_FAILURE(*pErrorCode) || cnv->preToULength<0) { in ucnv_MBCSToUnicodeWithOffsets()
2647 if(cnv->preToULength>0) { in ucnv_MBCSGetNextUChar()