Lines Matching refs:destIndex
515 int32_t destIndex=0; in usprep_map() local
566 if(destIndex < destCapacity ){ in usprep_map()
567 dest[destIndex] = profile->mappingData[index+i]; in usprep_map()
569 destIndex++; /* for pre-flighting */ in usprep_map()
583 if(destIndex < destCapacity ){ in usprep_map()
584 dest[destIndex] = (UChar)ch; in usprep_map()
586 destIndex++; in usprep_map()
588 if(destIndex+1 < destCapacity ){ in usprep_map()
589 dest[destIndex] = U16_LEAD(ch); in usprep_map()
590 dest[destIndex+1] = U16_TRAIL(ch); in usprep_map()
592 destIndex +=2; in usprep_map()
597 return u_terminateUChars(dest, destCapacity, destIndex, status); in usprep_map()