Home | History | Annotate | Download | only in common

Lines Matching full:destix

1540         int32_t  destIx       = 0;
1546 while (destIx<UTF8_TEXT_CHUNK_SIZE) {
1551 buf[destIx] = (UChar)c;
1552 mapToNative[destIx] = (uint8_t)(srcIx - ix);
1553 mapToUChars[srcIx-ix] = (uint8_t)destIx;
1555 destIx++;
1560 u8b->bufNILimit = destIx;
1564 int32_t dIx = destIx;
1565 int32_t dIxSaved = destIx;
1576 U16_APPEND_UNSAFE(buf, destIx, c);
1579 } while (dIx < destIx);
1593 mapToNative[destIx] = (uint8_t)(srcIx - ix);
1594 mapToUChars[srcIx - ix] = (uint8_t)destIx;
1600 u8b->bufLimitIdx = destIx;
1602 u8b->bufNILimit = destIx;
1649 int32_t destIx = UTF8_TEXT_CHUNK_SIZE+2; // Start in the overflow region
1654 int32_t bufNILimit = destIx;
1660 mapToNative[destIx] = (uint8_t)(srcIx - toUCharsMapStart);
1661 mapToUChars[srcIx - toUCharsMapStart] = (uint8_t)destIx;
1666 while (destIx>2 && (srcIx - toUCharsMapStart > 5) && (srcIx > 0)) {
1668 destIx--;
1674 buf[destIx] = (UChar)c;
1675 mapToUChars[srcIx - toUCharsMapStart] = (uint8_t)destIx;
1676 mapToNative[destIx] = (uint8_t)(srcIx - toUCharsMapStart);
1695 buf[destIx] = (UChar)c;
1696 mapToNative[destIx] = (uint8_t)(srcIx - toUCharsMapStart);
1698 buf[destIx] = U16_TRAIL(c);
1699 mapToNative[destIx] = (uint8_t)(srcIx - toUCharsMapStart);
1700 buf[--destIx] = U16_LEAD(c);
1701 mapToNative[destIx] = (uint8_t)(srcIx - toUCharsMapStart);
1706 mapToUChars[sIx-- - toUCharsMapStart] = (uint8_t)destIx;
1713 bufNILimit = destIx;
1718 u8b->bufStartIdx = destIx;