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

/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1CodeRootSetTable.hpp60 void copy_to(G1CodeRootSetTable* new_table);
H A Dg1CodeCacheRemSet.cpp116 void G1CodeRootSetTable::copy_to(G1CodeRootSetTable* new_table) { argument
119 new_table->add(e->literal());
122 new_table->copy_freelist(this);
/openjdk10/hotspot/src/share/vm/utilities/
H A Dhashtable.cpp118 template <class T, MEMFLAGS F> void RehashableHashtable<T, F>::move_to(RehashableHashtable<T, F>* new_table) { argument
127 for (int i = 0; i < new_table->table_size(); ++i) {
134 int index = new_table->hash_to_index(hashValue);
142 new_table->add_entry(index, p);
150 new_table->copy_freelist(this);
151 assert(new_table->number_of_entries() == saved_entry_count, "lost entry on dictionary copy?");
H A Dhashtable.hpp309 void move_to(RehashableHashtable<T, F>* new_table);
/openjdk10/jdk/src/java.desktop/unix/classes/sun/awt/X11/
H A DMotifDnDConstants.java487 long[][] new_table = new long[table.length + 1][];
491 new_table[i] = table[i];
495 new_table[new_table.length - 1] = formats;
497 putTargetListTable(motifWindow, new_table);
499 return new_table.length - 1;
/openjdk10/hotspot/src/share/vm/classfile/
H A DstringTable.cpp643 StringTable* new_table = new StringTable();
646 the_table()->move_to(new_table);
653 _the_table = new_table;
H A DsymbolTable.cpp194 SymbolTable* new_table = new SymbolTable();
196 the_table()->move_to(new_table);
203 _the_table = new_table;
/openjdk10/hotspot/src/share/vm/prims/
H A DjvmtiTagMap.cpp194 JvmtiTagHashmapEntry** new_table = (JvmtiTagHashmapEntry**)os::malloc(s, mtInternal); local
195 if (new_table == NULL) {
204 new_table[i] = NULL;
215 JvmtiTagHashmapEntry* anchor = new_table[h];
217 new_table[h] = entry;
221 new_table[h] = entry;
229 _table = new_table;

Completed in 190 milliseconds