Searched refs:old_idx (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.cpp1605 int old_idx = 0; local
1608 while (old_idx + new_idx < old_len + new_len) {
1609 if (new_idx >= new_len || (old_idx < old_len && old_list->at(old_idx)->from() <= new_list->at(new_idx)->from())) {
1610 combined_list->at_put(old_idx + new_idx, old_list->at(old_idx));
1611 old_idx++;
1613 combined_list->at_put(old_idx + new_idx, new_list->at(new_idx));

Completed in 47 milliseconds