Home | History | Annotate | Download | only in common

Lines Matching defs:toULength

107         i = cnv->toULength;             /* restore # of bytes consumed */
108 cnv->toULength = 0;
149 cnv->toULength = (int8_t) i;
200 cnv->toULength = (int8_t)i;
237 i = cnv->toULength; /* restore # of bytes consumed */
238 cnv->toULength = 0;
277 cnv->toULength = (int8_t)i;
330 cnv->toULength = (int8_t)i;
632 cnv->toULength = 1;
655 cnv->toULength = i;
735 cnv->toULength = i;
761 int8_t oldToULength, toULength, toULimit;
776 toULength=oldToULength=utf8->toULength;
779 toULength=oldToULength=toULimit=0;
835 utf8->toULength=0;
889 toULength=1;
893 while(toULength<toULimit) {
898 ++toULength;
901 break; /* sequence too short, stop with toULength<toULimit */
905 source-=(toULength-oldToULength);
906 while(oldToULength<toULength) {
910 utf8->toULength=toULength;
918 if( toULength==toULimit && /* consumed all trail bytes */
919 (toULength==3 || toULength==2) && /* BMP */
920 (c-=utf8_offsets[toULength])>=utf8_minLegal[toULength] &&
925 toULength==toULimit && toULength==4 &&
931 source-=(toULength-oldToULength);
932 while(oldToULength<toULength) {
935 utf8->toULength=toULength;
949 source-=(toULength-oldToULength);
950 for(; i<toULength; ++i) {
953 count-=toULength;
966 toULength=0;
969 utf8->toUBytes[toULength++]=b;
973 utf8->toULength=toULength;
978 utf8->toULength=toULength;