Searched defs:new_table (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A Dhashtable.cpp115 template <class T, MEMFLAGS F> void Hashtable<T, F>::move_to(Hashtable<T, F>* new_table) { argument
124 for (int i = 0; i < new_table->table_size(); ++i) {
131 int index = new_table->hash_to_index(hashValue);
139 new_table->add_entry(index, p);
147 new_table->copy_freelist(this);
148 assert(new_table->number_of_entries() == saved_entry_count, "lost entry on dictionary copy?");
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_table.c462 void *new_table; local
484 new_table = HPROF_MALLOC(nbytes);
485 (void)memcpy(new_table, old_table, obytes);
486 (void)memset(((char*)new_table)+obytes, 0, nbytes-obytes);
487 ltable->table = new_table;
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiTagMap.cpp191 JvmtiTagHashmapEntry** new_table = (JvmtiTagHashmapEntry**)os::malloc(s, mtInternal); local
192 if (new_table == NULL) {
201 new_table[i] = NULL;
212 JvmtiTagHashmapEntry* anchor = new_table[h];
214 new_table[h] = entry;
218 new_table[h] = entry;
226 _table = new_table;

Completed in 56 milliseconds