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

/openjdk9/hotspot/src/share/vm/classfile/
H A DdefaultMethods.cpp1030 int new_idx = 0; local
1038 if (new_idx < new_methods->length()) {
1039 new_method = new_methods->at(new_idx);
1057 ++new_idx;
/openjdk9/hotspot/src/share/vm/opto/
H A Dnode.hpp536 void set_idx(uint new_idx) { argument
538 *(node_idx_t*)ref = new_idx;
H A Dlibrary_call.cpp281 uint new_idx);
4893 int saved_reexecute_sp, uint new_idx) {
4902 map()->replaced_nodes().apply(saved_jvms->map(), new_idx);
4960 uint new_idx = C->unique(); local
5180 arraycopy_move_allocation_here(alloc, dest, saved_jvms, saved_reexecute_sp, new_idx);
4892 arraycopy_move_allocation_here(AllocateArrayNode* alloc, Node* dest, JVMState* saved_jvms, int saved_reexecute_sp, uint new_idx) argument
/openjdk9/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.cpp1626 int new_idx = 0; local
1628 while (old_idx + new_idx < old_len + new_len) {
1629 if (new_idx >= new_len || (old_idx < old_len && old_list->at(old_idx)->from() <= new_list->at(new_idx)->from())) {
1630 combined_list->at_put(old_idx + new_idx, old_list->at(old_idx));
1633 combined_list->at_put(old_idx + new_idx, new_list->at(new_idx));
1634 new_idx++;

Completed in 180 milliseconds