Searched defs:new_idx (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dnode.hpp477 void set_idx(uint new_idx) { argument
479 *(node_idx_t*)ref = new_idx;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.cpp1606 int new_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));
1613 combined_list->at_put(old_idx + new_idx, new_list->at(new_idx));
1614 new_idx++;

Completed in 271 milliseconds