Lines Matching refs:right_index
470 size_t right_index = suff_index + back_by - 1;
471 size_t left_index = right_index - num_pref_cards + 1;
472 if (right_index >= end_index - 1) { // last iteration
473 right_index = end_index - 1;
479 if (left_index <= right_index) {
480 _array->set_offset_array(left_index, right_index,
492 size_t right_index = suff_index + back_by - 1;
493 size_t left_index = right_index - num_pref_cards + 1;
494 if (right_index >= end_index - 1) { // last iteration
495 right_index = end_index - 1;
496 if (left_index > right_index) {
501 assert(left_index <= right_index, "Error");
502 _array->set_offset_array(left_index, right_index, N_words + i - 1, true /* reducing */);