Lines Matching refs:destIx

1208         int32_t  destIx       = 0;  in utf8TextAccess()  local
1214 while (destIx<UTF8_TEXT_CHUNK_SIZE) { in utf8TextAccess()
1219 buf[destIx] = (UChar)c; in utf8TextAccess()
1220 mapToNative[destIx] = (uint8_t)(srcIx - ix); in utf8TextAccess()
1221 mapToUChars[srcIx-ix] = (uint8_t)destIx; in utf8TextAccess()
1223 destIx++; in utf8TextAccess()
1228 u8b->bufNILimit = destIx; in utf8TextAccess()
1232 int32_t dIx = destIx; in utf8TextAccess()
1233 int32_t dIxSaved = destIx; in utf8TextAccess()
1240 U16_APPEND_UNSAFE(buf, destIx, c); in utf8TextAccess()
1243 } while (dIx < destIx); in utf8TextAccess()
1257 mapToNative[destIx] = (uint8_t)(srcIx - ix); in utf8TextAccess()
1258 mapToUChars[srcIx - ix] = (uint8_t)destIx; in utf8TextAccess()
1264 u8b->bufLimitIdx = destIx; in utf8TextAccess()
1266 u8b->bufNILimit = destIx; in utf8TextAccess()
1313 int32_t destIx = UTF8_TEXT_CHUNK_SIZE+2; // Start in the overflow region in utf8TextAccess() local
1318 int32_t bufNILimit = destIx; in utf8TextAccess()
1324 mapToNative[destIx] = (uint8_t)(srcIx - toUCharsMapStart); in utf8TextAccess()
1325 mapToUChars[srcIx - toUCharsMapStart] = (uint8_t)destIx; in utf8TextAccess()
1330 while (destIx>2 && (srcIx - toUCharsMapStart > 5) && (srcIx > 0)) { in utf8TextAccess()
1332 destIx--; in utf8TextAccess()
1338 buf[destIx] = (UChar)c; in utf8TextAccess()
1339 mapToUChars[srcIx - toUCharsMapStart] = (uint8_t)destIx; in utf8TextAccess()
1340 mapToNative[destIx] = (uint8_t)(srcIx - toUCharsMapStart); in utf8TextAccess()
1355 buf[destIx] = (UChar)c; in utf8TextAccess()
1356 mapToNative[destIx] = (uint8_t)(srcIx - toUCharsMapStart); in utf8TextAccess()
1358 buf[destIx] = U16_TRAIL(c); in utf8TextAccess()
1359 mapToNative[destIx] = (uint8_t)(srcIx - toUCharsMapStart); in utf8TextAccess()
1360 buf[--destIx] = U16_LEAD(c); in utf8TextAccess()
1361 mapToNative[destIx] = (uint8_t)(srcIx - toUCharsMapStart); in utf8TextAccess()
1366 mapToUChars[sIx-- - toUCharsMapStart] = (uint8_t)destIx; in utf8TextAccess()
1373 bufNILimit = destIx; in utf8TextAccess()
1378 u8b->bufStartIdx = destIx; in utf8TextAccess()