Lines Matching refs:idx
506 int32_t i, idx, logLimit, visLimit;
528 idx = ubidi_getVisualIndex(bidi, i, &errorCode);
529 if (idx != logMap[i]) {
532 if (idx == UBIDI_MAP_NOWHERE) {
535 if (idx >= visLimit) {
538 accumDst[idx] = srcChars[i];
539 if (!matchingPair(bidi, i, srcChars[i], dstChars[idx])) {
576 idx = ubidi_getLogicalIndex(bidi, i, &errorCode);
577 if (idx != visMap[i]) {
580 if (idx == UBIDI_MAP_NOWHERE) {
583 if (idx >= logLimit) {
586 accumSrc[idx] = dstChars[i];
587 if (!matchingPair(bidi, idx, srcChars[idx], dstChars[i])) {