Lines Matching defs:toULength

1021  * @return if(U_FAILURE) return the length (toULength, byteIndex) for the input
1834 cnv->toULength=0; /* byteIndex */
2007 cnv->toULength=_extToU(cnv, cnv->sharedData,
2208 cnv->toULength=_extToU(cnv, cnv->sharedData,
2377 byteIndex=cnv->toULength;
2719 cnv->toULength=byteIndex;
3000 cnv->toULength=(int8_t)(source-lastSource);
3017 cnv->toULength=1;
3026 cnv->toULength=i;
4870 int8_t oldToULength, toULength, toULimit;
4908 toULength=oldToULength=utf8->toULength;
4911 toULength=oldToULength=toULimit=0;
4942 utf8->toULength=0;
4947 * sequence; then recurse for the toUBytes[toULength]
5023 toULength=1;
5027 while(toULength<toULimit) {
5039 ++toULength;
5042 break; /* sequence too short, stop with toULength<toULimit */
5046 source-=(toULength-oldToULength);
5047 while(oldToULength<toULength) {
5051 utf8->toULength=toULength;
5059 if( toULength==toULimit && /* consumed all trail bytes */
5060 (toULength==3 || toULength==2) && /* BMP */
5061 (c-=utf8_offsets[toULength])>=utf8_minLegal[toULength] &&
5066 toULength==toULimit && toULength==4 &&
5078 source-=(toULength-oldToULength);
5079 while(oldToULength<toULength) {
5082 utf8->toULength=toULength;
5145 toULength=1;
5148 utf8->toUBytes[toULength++]=b=*source++;
5152 utf8->toULength=toULength;
5173 int8_t oldToULength, toULength, toULimit;
5212 toULength=oldToULength=utf8->toULength;
5215 toULength=oldToULength=toULimit=0;
5246 utf8->toULength=0;
5307 toULength=1;
5311 while(toULength<toULimit) {
5323 ++toULength;
5326 break; /* sequence too short, stop with toULength<toULimit */
5330 source-=(toULength-oldToULength);
5331 while(oldToULength<toULength) {
5335 utf8->toULength=toULength;
5343 if( toULength==toULimit && /* consumed all trail bytes */
5344 (toULength==3 || toULength==2) && /* BMP */
5345 (c-=utf8_offsets[toULength])>=utf8_minLegal[toULength] &&
5350 toULength==toULimit && toULength==4 &&
5362 source-=(toULength-oldToULength);
5363 while(oldToULength<toULength) {
5366 utf8->toULength=toULength;
5459 toULength=1;
5462 utf8->toUBytes[toULength++]=b=*source++;
5466 utf8->toULength=toULength;