Lines Matching refs:toULength
82 i = cnv->toULength; /* restore # of bytes consumed */ in ucnv_toUnicode_UTF8()
83 cnv->toULength = 0; in ucnv_toUnicode_UTF8()
125 cnv->toULength = (int8_t) i; in ucnv_toUnicode_UTF8()
163 cnv->toULength = (int8_t)i; in ucnv_toUnicode_UTF8()
200 i = cnv->toULength; /* restore # of bytes consumed */ in ucnv_toUnicode_UTF8_OFFSETS_LOGIC()
201 cnv->toULength = 0; in ucnv_toUnicode_UTF8_OFFSETS_LOGIC()
241 cnv->toULength = (int8_t)i; in ucnv_toUnicode_UTF8_OFFSETS_LOGIC()
281 cnv->toULength = (int8_t)i; in ucnv_toUnicode_UTF8_OFFSETS_LOGIC()
584 cnv->toULength = 1; in ucnv_getNextUChar_UTF8()
609 cnv->toULength = i; in ucnv_getNextUChar_UTF8()
640 cnv->toULength = i; in ucnv_getNextUChar_UTF8()
660 int8_t oldToULength, toULength, toULimit; in ucnv_UTF8FromUTF8() local
675 toULength=oldToULength=utf8->toULength; in ucnv_UTF8FromUTF8()
678 toULength=oldToULength=toULimit=0; in ucnv_UTF8FromUTF8()
732 utf8->toULength=0; in ucnv_UTF8FromUTF8()
774 toULength=1; in ucnv_UTF8FromUTF8()
778 while(toULength<toULimit) { in ucnv_UTF8FromUTF8()
781 if(icu::UTF8::isValidTrail(c, b, toULength, toULimit)) { in ucnv_UTF8FromUTF8()
783 ++toULength; in ucnv_UTF8FromUTF8()
790 source-=(toULength-oldToULength); in ucnv_UTF8FromUTF8()
791 while(oldToULength<toULength) { in ucnv_UTF8FromUTF8()
795 utf8->toULength=toULength; in ucnv_UTF8FromUTF8()
803 if(toULength!=toULimit) { in ucnv_UTF8FromUTF8()
805 source-=(toULength-oldToULength); in ucnv_UTF8FromUTF8()
806 while(oldToULength<toULength) { in ucnv_UTF8FromUTF8()
809 utf8->toULength=toULength; in ucnv_UTF8FromUTF8()
817 if(count>=toULength) { in ucnv_UTF8FromUTF8()
823 source-=(toULength-oldToULength); in ucnv_UTF8FromUTF8()
824 for(; i<toULength; ++i) { in ucnv_UTF8FromUTF8()
827 count-=toULength; in ucnv_UTF8FromUTF8()
831 source-=(toULength-oldToULength); in ucnv_UTF8FromUTF8()
849 toULength=0; in ucnv_UTF8FromUTF8()
852 utf8->toUBytes[toULength++]=b; in ucnv_UTF8FromUTF8()
856 utf8->toULength=toULength; in ucnv_UTF8FromUTF8()
861 utf8->toULength=toULength; in ucnv_UTF8FromUTF8()