Home | History | Annotate | Download | only in common

Lines Matching full:destindex

522     int32_t destIndex=0;
573 if(destIndex < destCapacity ){
574 dest[destIndex] = profile->mappingData[index+i];
576 destIndex++; /* for pre-flighting */
590 if(destIndex < destCapacity ){
591 dest[destIndex] = (UChar)ch;
593 destIndex++;
595 if(destIndex+1 < destCapacity ){
596 dest[destIndex] = U16_LEAD(ch);
597 dest[destIndex+1] = U16_TRAIL(ch);
599 destIndex +=2;
604 return u_terminateUChars(dest, destCapacity, destIndex, status);