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

/openjdk9/hotspot/src/share/vm/gc/g1/
H A Dg1CodeRootSetTable.hpp39 unsigned int compute_hash(nmethod* nm) { function in class:G1CodeRootSetTable
H A Dg1CodeCacheRemSet.cpp44 unsigned int hash = compute_hash(nm);
95 int index = hash_to_index(compute_hash(nm));
105 int index = hash_to_index(compute_hash(nm));
/openjdk9/hotspot/src/share/vm/classfile/
H A DpackageEntry.hpp227 static unsigned int compute_hash(Symbol* name) { return (unsigned int)(name->identity_hash()); } function in class:PackageEntryTable
228 int index_for(Symbol* name) const { return hash_to_index(compute_hash(name)); }
H A DresolutionErrors.hpp67 unsigned int compute_hash(const constantPoolHandle& pool, int cp_index) { function in class:ResolutionErrorTable
H A DmoduleEntry.hpp206 static unsigned int compute_hash(Symbol* name) { return ((name == NULL) ? 0 : (unsigned int)(name->identity_hash())); } function in class:ModuleEntryTable
207 int index_for(Symbol* name) const { return hash_to_index(compute_hash(name)); }
H A Ddictionary.hpp203 static unsigned int compute_hash(oop protection_domain);
431 unsigned int compute_hash(Symbol* sym, intptr_t symbol_mode) { function in class:SymbolPropertyTable
433 return Hashtable<Symbol*, mtSymbol>::compute_hash(sym) ^ symbol_mode;
437 return hash_to_index(compute_hash(name, symbol_mode));
H A DsystemDictionary.cpp355 // compute_hash can have a safepoint
358 unsigned int d_hash = dictionary()->compute_hash(child_name, loader_data);
360 unsigned int p_hash = placeholders()->compute_hash(child_name, loader_data);
471 unsigned int d_hash = dictionary()->compute_hash(kn, loader_data);
549 unsigned int d_hash = dictionary()->compute_hash(name, loader_data);
551 unsigned int p_hash = placeholders()->compute_hash(name, loader_data);
675 unsigned int d_hash = dictionary()->compute_hash(name, loader_data);
696 unsigned int p_hash = placeholders()->compute_hash(name, loader_data);
970 unsigned int d_hash = dictionary()->compute_hash(class_name, loader_data);
1202 unsigned int d_hash = shared_dictionary()->compute_hash(class_nam
[all...]
H A DloaderConstraints.cpp80 unsigned int hash = compute_hash(name);
224 unsigned int hash = compute_hash(class_name);
454 unsigned int d_hash = dictionary->compute_hash(name, loader_data);
464 unsigned int p_hash = placeholders->compute_hash(name, loader_data);
H A DpackageEntry.cpp233 PackageEntry* entry = new_entry(compute_hash(name), name, module);
255 PackageEntry* entry = new_entry(compute_hash(name), name, module);
H A Ddictionary.cpp380 unsigned int hash = compute_hash(class_name, loader_data);
498 unsigned int hash = compute_hash(class_name, NULL);
508 unsigned int ProtectionDomainCacheTable::compute_hash(oop protection_domain) { function in class:ProtectionDomainCacheTable
513 return hash_to_index(compute_hash(protection_domain));
623 unsigned int hash = compute_hash(protection_domain);
654 unsigned int hash = compute_hash(to_delete->protection_domain());
H A DmoduleEntry.cpp348 ModuleEntry* entry = new_entry(compute_hash(module_name), module_handle, module_name,
/openjdk9/hotspot/src/share/vm/utilities/
H A Dhashtable.hpp291 unsigned int compute_hash(Symbol* name) { function in class:Hashtable
296 return this->hash_to_index(compute_hash(name));
369 unsigned int compute_hash(const Symbol* name, const ClassLoaderData* loader_data) const { function in class:TwoOopHashtable
379 return this->hash_to_index(compute_hash(name, loader_data));
/openjdk9/hotspot/src/share/vm/oops/
H A DconstantPool.hpp932 static unsigned int compute_hash(const char* str, int len) { function in class:SymbolHashMap
H A DconstantPool.cpp2081 unsigned int hash = compute_hash(str, sym->utf8_length());
2104 unsigned int hash = SymbolHashMap::compute_hash(str, len);
/openjdk9/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp2383 unsigned int compute_hash() { function in class:AdapterFingerPrint
2446 AdapterHandlerEntry* entry = (AdapterHandlerEntry*)BasicHashtable<mtCode>::new_entry(fingerprint->compute_hash());
2469 unsigned int hash = fp.compute_hash();

Completed in 207 milliseconds