Home | History | Annotate | Download | only in common

Lines Matching defs:toULength

1024  * @return if(U_FAILURE) return the length (toULength, byteIndex) for the input
1836 cnv->toULength=0; /* byteIndex */
2009 cnv->toULength=_extToU(cnv, cnv->sharedData,
2210 cnv->toULength=_extToU(cnv, cnv->sharedData,
2379 byteIndex=cnv->toULength;
2721 cnv->toULength=byteIndex;
3002 cnv->toULength=(int8_t)(source-lastSource);
3019 cnv->toULength=1;
3028 cnv->toULength=i;
4873 int8_t oldToULength, toULength, toULimit;
4911 toULength=oldToULength=utf8->toULength;
4914 toULength=oldToULength=toULimit=0;
4945 utf8->toULength=0;
4950 * sequence; then recurse for the toUBytes[toULength]
5026 toULength=1;
5030 while(toULength<toULimit) {
5042 ++toULength;
5045 break; /* sequence too short, stop with toULength<toULimit */
5049 source-=(toULength-oldToULength);
5050 while(oldToULength<toULength) {
5054 utf8->toULength=toULength;
5062 if( toULength==toULimit && /* consumed all trail bytes */
5063 (toULength==3 || toULength==2) && /* BMP */
5064 (c-=utf8_offsets[toULength])>=utf8_minLegal[toULength] &&
5069 toULength==toULimit && toULength==4 &&
5081 source-=(toULength-oldToULength);
5082 while(oldToULength<toULength) {
5085 utf8->toULength=toULength;
5151 toULength=1;
5154 utf8->toUBytes[toULength++]=b=*source++;
5158 utf8->toULength=toULength;
5179 int8_t oldToULength, toULength, toULimit;
5211 toULength=oldToULength=utf8->toULength;
5214 toULength=oldToULength=toULimit=0;
5245 utf8->toULength=0;
5306 toULength=1;
5310 while(toULength<toULimit) {
5322 ++toULength;
5325 break; /* sequence too short, stop with toULength<toULimit */
5329 source-=(toULength-oldToULength);
5330 while(oldToULength<toULength) {
5334 utf8->toULength=toULength;
5342 if( toULength==toULimit && /* consumed all trail bytes */
5343 (toULength==3 || toULength==2) && /* BMP */
5344 (c-=utf8_offsets[toULength])>=utf8_minLegal[toULength] &&
5349 toULength==toULimit && toULength==4 &&
5361 source-=(toULength-oldToULength);
5362 while(oldToULength<toULength) {
5365 utf8->toULength=toULength;
5461 toULength=1;
5464 utf8->toUBytes[toULength++]=b=*source++;
5468 utf8->toULength=toULength;