Lines Matching refs:idx
496 int32_t i, idx, logLimit, visLimit;
518 idx = ubidi_getVisualIndex(bidi, i, &errorCode);
519 if (idx != logMap[i]) {
522 if (idx == UBIDI_MAP_NOWHERE) {
525 if (idx >= visLimit) {
528 accumDst[idx] = srcChars[i];
529 if (!matchingPair(bidi, i, srcChars[i], dstChars[idx])) {
566 idx = ubidi_getLogicalIndex(bidi, i, &errorCode);
567 if (idx != visMap[i]) {
570 if (idx == UBIDI_MAP_NOWHERE) {
573 if (idx >= logLimit) {
576 accumSrc[idx] = dstChars[i];
577 if (!matchingPair(bidi, idx, srcChars[idx], dstChars[i])) {