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

/openjdk7/jdk/src/share/classes/sun/security/timestamp/
H A DTSRequest.java86 private byte[] hashValue; field in class:TSRequest
99 * @param hashValue The hash value. This is the data to be timestamped.
102 public TSRequest(byte[] hashValue, String hashAlgorithm) { argument
108 assert hashValue.length == 16;
115 assert hashValue.length == 20;
119 this.hashValue = new byte[hashValue.length];
120 System.arraycopy(hashValue, 0, this.hashValue, 0, hashValue
[all...]
/openjdk7/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 */
55 hashValue = value;
67 "hashCode() invoked before hashValue initialized");
69 return hashValue;
/openjdk7/jdk/src/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;
/openjdk7/hotspot/src/share/vm/classfile/
H A DsymbolTable.cpp190 unsigned int hashValue = hash_symbol(name, len); local
191 int index = the_table()->hash_to_index(hashValue);
193 Symbol* s = the_table()->lookup(index, name, len, hashValue);
202 return the_table()->basic_add(index, (u1*)name, len, hashValue, true, CHECK_NULL);
208 unsigned int hashValue; local
215 hashValue = hash_symbol(name, len);
216 index = the_table()->hash_to_index(hashValue);
217 Symbol* s = the_table()->lookup(index, name, len, hashValue);
241 return the_table()->basic_add(index, (u1*)buffer, len, hashValue, true, CHECK_NULL);
356 unsigned int hashValue; local
406 unsigned int hashValue; local
650 unsigned int hashValue; local
679 unsigned int hashValue = hash_string(chars, length); local
687 unsigned int hashValue = hash_string(name, len); local
[all...]
H A DsymbolTable.hpp95 Symbol* basic_add(int index, u1* name, int len, unsigned int hashValue,
253 unsigned int hashValue, TRAPS);
255 oop lookup(int index, jchar* chars, int length, unsigned int hashValue);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DSymbolTable.java85 long hashValue = hashSymbol(name);
86 for (HashtableEntry e = (HashtableEntry) bucket(hashToIndex(hashValue)); e != null; e = (HashtableEntry) e.next()) {
87 if (e.hash() == hashValue) {
/openjdk7/hotspot/src/share/vm/utilities/
H A Dhashtable.cpp46 template <MEMFLAGS F> BasicHashtableEntry<F>* BasicHashtable<F>::new_entry(unsigned int hashValue) { argument
66 entry->set_hash(hashValue);
71 template <class T, MEMFLAGS F> HashtableEntry<T, F>* Hashtable<T, F>::new_entry(unsigned int hashValue, T obj) { argument
74 entry = (HashtableEntry<T, F>*)BasicHashtable<F>::new_entry(hashValue);
129 unsigned int hashValue = new_hash(string); local
131 int index = new_table->hash_to_index(hashValue);
132 p->set_hash(hashValue);
H A Dhashtable.hpp197 BasicHashtableEntry<F>* new_entry(unsigned int hashValue);
267 HashtableEntry<T, F>* new_entry(unsigned int hashValue, T obj);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DSharedNameTable.java104 int h = hashValue(bytes, nc, nbytes) & hashMask;
127 int h = hashValue(cs, start, len) & hashMask;
H A DUnsharedNameTable.java89 int h = hashValue(cs, start, len) & hashMask;
H A DName.java225 protected static int hashValue(byte bytes[], int offset, int length) { method in class:Name.Table
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DHierMemDirCtx.java871 private int hashValue = -1; field in class:HierarchicalName
892 if (hashValue == -1) {
902 hashValue = (hashValue * 37) + val[off++];
906 return hashValue;
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DLoaderHandler.java910 private int hashValue; field in class:LoaderHandler.LoaderKey
917 hashValue = parent.hashCode();
920 hashValue ^= urls[i].hashCode();
925 return hashValue;

Completed in 249 milliseconds