Home | History | Annotate | Download | only in common

Lines Matching refs:toULength

116         i = cnv->toULength;             /* restore # of bytes consumed */
117 cnv->toULength = 0;
158 cnv->toULength = (int8_t) i;
209 cnv->toULength = (int8_t)i;
246 i = cnv->toULength; /* restore # of bytes consumed */
247 cnv->toULength = 0;
286 cnv->toULength = (int8_t)i;
339 cnv->toULength = (int8_t)i;
641 cnv->toULength = 1;
664 cnv->toULength = i;
744 cnv->toULength = i;
770 int8_t oldToULength, toULength, toULimit;
785 toULength=oldToULength=utf8->toULength;
788 toULength=oldToULength=toULimit=0;
844 utf8->toULength=0;
898 toULength=1;
902 while(toULength<toULimit) {
907 ++toULength;
910 break; /* sequence too short, stop with toULength<toULimit */
914 source-=(toULength-oldToULength);
915 while(oldToULength<toULength) {
919 utf8->toULength=toULength;
927 if( toULength==toULimit && /* consumed all trail bytes */
928 (toULength==3 || toULength==2) && /* BMP */
929 (c-=utf8_offsets[toULength])>=utf8_minLegal[toULength] &&
934 toULength==toULimit && toULength==4 &&
940 source-=(toULength-oldToULength);
941 while(oldToULength<toULength) {
944 utf8->toULength=toULength;
958 source-=(toULength-oldToULength);
959 for(; i<toULength; ++i) {
962 count-=toULength;
975 toULength=0;
978 utf8->toUBytes[toULength++]=b;
982 utf8->toULength=toULength;
987 utf8->toULength=toULength;