Searched refs:hashValue (Results 1 - 16 of 16) sorted by relevance

/openjdk10/jdk/test/java/rmi/server/RemoteObject/notExtending/
H A DNotExtending.java45 private int hashValue; field in class:NotExtending
46 /** true if the hashValue field has been initialized */
62 hashValue = value;
73 "hashCode() invoked before hashValue initialized");
75 return hashValue;
/openjdk10/jdk/src/java.rmi/share/classes/sun/rmi/transport/
H A DWeakRef.java47 private int hashValue; field in class:WeakRef
110 hashValue = System.identityHashCode(obj);
112 hashValue = 0;
120 return hashValue;
/openjdk10/jdk/src/java.base/share/classes/sun/security/timestamp/
H A DTSRequest.java74 private byte[] hashValue; field in class:TSRequest
96 this.hashValue = messageDigest.digest(toBeTimeStamped);
100 return hashValue.clone();
160 messageImprint.putOctetString(hashValue);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/memory/
H A DSymbolTable.java101 long hashValue = hashSymbol(name);
105 Symbol s = sharedTable.probe(name, hashValue);
111 hashValue = AltHashing.murmur3_32(getSeed(), name);
114 for (HashtableEntry e = (HashtableEntry) bucket(hashToIndex(hashValue)); e != null; e = (HashtableEntry) e.next()) {
115 if (e.hash() == hashValue) {
/openjdk10/hotspot/src/share/vm/classfile/
H A DsymbolTable.cpp305 unsigned int hashValue = hash_symbol(name, len); local
306 int index = the_table()->hash_to_index(hashValue);
308 Symbol* s = the_table()->lookup(index, name, len, hashValue);
317 return the_table()->basic_add(index, (u1*)name, len, hashValue, true, THREAD);
323 unsigned int hashValue; local
330 hashValue = hash_symbol(name, len);
331 index = the_table()->hash_to_index(hashValue);
332 Symbol* s = the_table()->lookup(index, name, len, hashValue);
356 return the_table()->basic_add(index, (u1*)buffer, len, hashValue, true, THREAD);
471 unsigned int hashValue; local
521 unsigned int hashValue; local
[all...]
H A DstringTable.cpp162 unsigned int hashValue; local
165 hashValue = alt_hash_string(name, len);
166 index = hash_to_index(hashValue);
168 hashValue = hashValue_arg;
176 oop test = lookup_in_main_table(index, name, len, hashValue); // calls lookup(u1*, int)
182 HashtableEntry<oop, mtSymbol>* entry = new_entry(hashValue, string());
228 unsigned int hashValue = java_lang_String::hash_code(name, len); local
229 oop found_string = lookup_shared(name, len, hashValue);
234 hashValue = alt_hash_string(name, len);
236 int index = the_table()->hash_to_index(hashValue);
[all...]
H A DstringTable.hpp56 unsigned int hashValue, TRAPS);
58 oop lookup_in_main_table(int index, jchar* chars, int length, unsigned int hashValue);
H A DsymbolTable.hpp123 Symbol* basic_add(int index, u1* name, int len, unsigned int hashValue,
/openjdk10/hotspot/src/share/vm/utilities/
H A Dhashtable.cpp57 template <MEMFLAGS F> BasicHashtableEntry<F>* BasicHashtable<F>::new_entry(unsigned int hashValue) { argument
74 entry->set_hash(hashValue);
79 template <class T, MEMFLAGS F> HashtableEntry<T, F>* Hashtable<T, F>::new_entry(unsigned int hashValue, T obj) { argument
82 entry = (HashtableEntry<T, F>*)BasicHashtable<F>::new_entry(hashValue);
89 template <class T, MEMFLAGS F> HashtableEntry<T, F>* Hashtable<T, F>::allocate_new_entry(unsigned int hashValue, T obj) { argument
92 entry->set_hash(hashValue);
132 unsigned int hashValue = string->new_hash(seed()); local
134 int index = new_table->hash_to_index(hashValue);
135 p->set_hash(hashValue);
H A Dhashtable.hpp190 BasicHashtableEntry<F>* new_entry(unsigned int hashValue);
271 HashtableEntry<T, F>* new_entry(unsigned int hashValue, T obj);
273 HashtableEntry<T, F>* allocate_new_entry(unsigned int hashValue, T obj);
/openjdk10/jdk/src/java.base/share/classes/java/security/
H A DPKCS12Attribute.java48 private int hashValue = -1; field in class:PKCS12Attribute
213 if (hashValue == -1) {
216 return hashValue;
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/util/
H A DSharedNameTable.java100 int h = hashValue(bytes, nc, nbytes) & hashMask;
123 int h = hashValue(cs, start, len) & hashMask;
H A DUnsharedNameTable.java89 int h = hashValue(cs, start, len) & hashMask;
H A DName.java231 protected static int hashValue(byte bytes[], int offset, int length) { method in class:Name.Table
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/toolkit/dir/
H A DHierMemDirCtx.java890 private int hashValue = -1; field in class:HierarchicalName
911 if (hashValue == -1) {
921 hashValue = (hashValue * 37) + val[off++];
925 return hashValue;
/openjdk10/jdk/src/java.rmi/share/classes/sun/rmi/server/
H A DLoaderHandler.java911 private int hashValue; field in class:LoaderHandler.LoaderKey
918 hashValue = parent.hashCode();
921 hashValue ^= urls[i].hashCode();
926 return hashValue;

Completed in 101 milliseconds