Lines Matching refs:destIndex
516 int32_t destIndex=0; in usprep_map() local
567 if(destIndex < destCapacity ){ in usprep_map()
568 dest[destIndex] = profile->mappingData[index+i]; in usprep_map()
570 destIndex++; /* for pre-flighting */ in usprep_map()
584 if(destIndex < destCapacity ){ in usprep_map()
585 dest[destIndex] = (UChar)ch; in usprep_map()
587 destIndex++; in usprep_map()
589 if(destIndex+1 < destCapacity ){ in usprep_map()
590 dest[destIndex] = U16_LEAD(ch); in usprep_map()
591 dest[destIndex+1] = U16_TRAIL(ch); in usprep_map()
593 destIndex +=2; in usprep_map()
598 return u_terminateUChars(dest, destCapacity, destIndex, status); in usprep_map()