Searched refs:hash (Results 201 - 225 of 399) sorted by relevance

1234567891011>>

/openjdk10/hotspot/src/share/vm/services/
H A DmallocSiteTable.cpp70 * To avoid above problem, we pre-initialize a hash entry for
98 // Instantiate hash entry for hashtable entry allocation callsite
103 int index = hash_to_index(stack->hash());
132 * 1. Out of memory, it cannot allocate new hash entry.
133 * 2. Overflow hash bucket.
139 unsigned int index = hash_to_index(key.hash());
143 // First entry for this hash bucket
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/internal/rcache/
H A DAuthTime.java120 String hash = st.nextToken();
126 client, server, ctime, cusec, hashAlg, hash);
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/
H A DSymbol.java141 int result = Objects.hash(name, binding, kind, section);
/openjdk10/hotspot/src/share/vm/libadt/
H A Dset.hpp203 // hash the same. Same set type, same elements WILL hash the same.
204 virtual int hash() const = 0;
/openjdk10/hotspot/src/share/vm/opto/
H A Dconnode.hpp44 virtual uint hash() const;
H A Dtype.hpp71 // Types are hash-cons'd into a private class dictionary, so only one of each
151 // Top-level hash-table of types
207 // Create a new hash-consd type
347 // Return a hash for this type. The hash function is public so ConNode
348 // (constants) can hash on their constant, which is represented by a Type.
349 virtual int hash() const;
470 virtual int hash() const; // Type specific hashing
497 virtual int hash() const; // Type specific hashing
529 virtual int hash() cons
[all...]
H A DphaseX.cpp94 // Find in hash table
96 // ((Node*)n)->set_hash( n->hash() );
97 uint hash = n->hash(); local
98 if (hash == Node::NO_HASH) {
102 uint key = hash & (_max-1);
113 while( 1 ) { // While probing hash table
138 // Find in hash table, insert if not already present
139 // Used to preserve unique entries in hash table
142 uint hash local
203 uint hash = n->hash(); local
228 uint hash = n->hash(); local
[all...]
H A Dmachnode.cpp87 //------------------------------hash-------------------------------------------
89 uint MachOper::hash() const { function in class:MachOper
101 //------------------------------hash-------------------------------------------
103 uint labelOper::hash() const { function in class:labelOper
113 //------------------------------hash-------------------------------------------
115 uint methodOper::hash() const { function in class:methodOper
160 //------------------------------hash-------------------------------------------
161 uint MachNode::hash() const { function in class:MachNode
165 sum += _opnds[i]->hash();
166 return sum+Node::hash();
[all...]
/openjdk10/hotspot/src/share/vm/utilities/
H A DnativeCallStack.cpp82 unsigned int NativeCallStack::hash() const { function in class:NativeCallStack
H A Dhashtable.hpp37 // It is implemented as an open hash table with a fixed number of buckets.
47 unsigned int _hash; // 32-bit hash for item
69 unsigned int hash() const { return _hash; } function in class:BasicHashtableEntry
70 void set_hash(unsigned int hash) { _hash = hash; } argument
159 assert(h >= 0 && h < _table_size, "Illegal hash value");
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/fastinfoset/tools/
H A DSAXEventSerializer.java417 int hash = 7;
418 hash = 97 * hash + (this.qName != null ? this.qName.hashCode() : 0);
419 return hash;
/openjdk10/jdk/src/java.base/share/classes/java/security/
H A DProtectionDomain.java625 * Saved value of the referent's identity hash code, to maintain
626 * a consistent hash code after the referent has been cleared
628 private final int hash; field in class:ProtectionDomain.WeakProtectionDomainKey
649 hash = key.hashCode();
654 hash = key.hashCode();
658 * Returns the identity hash code of the original referent.
662 return hash;
H A DUnresolvedPermission.java397 * Returns the hash code value for this object.
399 * @return a hash code value for this object.
403 int hash = type.hashCode();
405 hash ^= name.hashCode();
407 hash ^= actions.hashCode();
408 return hash;
/openjdk10/jdk/make/src/classes/build/tools/hasher/
H A DHasher.java34 * standard input, attempts to construct a hash map that fits within the given
137 int hash(String w) { method in class:Hasher
141 // Build a hash table of size 2^nb, shifting the hash code by s bits
155 int h = hash(w);
199 // Look for the given key in the hash table
202 int h = hash(k);
222 err.println(hash(w) + "\t" + w);
249 // Generate a PreHashedMap subclass from the computed hash table
/openjdk10/jdk/src/java.rmi/share/classes/sun/rmi/server/
H A DUtil.java351 * Compute the "method hash" of a remote method. The method hash
356 long hash = 0;
366 "string used for method hash: \"" + s + "\"");
370 // use only the first 64 bits of the digest for the hash
374 hash += ((long) (hasharray[i] & 0xFF)) << (i * 8);
378 hash = -1;
382 return hash;
388 * of the "method hash".
/openjdk10/jdk/test/java/rmi/server/RemoteObject/unrecognizedRefType/
H A DUnrecognizedRefType.java108 long hash)
105 newCall(RemoteObject obj, Operation[] op, int opnum, long hash) argument
/openjdk10/jdk/src/java.management/share/classes/javax/management/
H A DMBeanConstructorInfo.java207 return Objects.hash(getName()) ^ Arrays.hashCode(fastGetSignature());
/openjdk10/hotspot/src/share/vm/classfile/
H A DjavaClasses.inline.hpp45 void java_lang_String::set_hash(oop string, unsigned int hash) { argument
47 string->int_field_put(hash_offset, hash);
56 unsigned int java_lang_String::hash(oop java_string) { function in class:java_lang_String
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DMark.java233 // markOop copy_set_hash(intptr_t hash) const {
235 // tmp |= ((hash & hash_mask) << hash_shift);
266 // hash operations
267 public long hash() { method in class:Mark
272 return hash() == noHash;
292 tty.print("hash " + Long.toHexString(hash()) + ",");
/openjdk10/jdk/src/java.base/share/classes/java/lang/
H A DWeakPairMap.java256 // saved hash so it can be retrieved after the reference is cleared
257 private final int hash; field in class:WeakPairMap.Pair.Weak
263 hash = Pair.hashCode(k1, k2);
288 return hash;
/openjdk10/langtools/test/tools/javac/diags/
H A DCheckExamples.java185 int hash = line.indexOf("#");
186 if (hash != -1)
187 line = line.substring(0, hash).trim();
/openjdk10/jdk/src/java.base/share/classes/java/util/
H A DIdentityHashMap.java34 * This class implements the {@code Map} interface with a hash table, using
65 * identity hash function ({@link System#identityHashCode(Object)})
72 * comprising the hash table. The precise relationship between the expected
78 * it pays to create identity hash maps with a sufficiently large expected
80 * time proportional to the number of buckets in the hash table, so it
85 * If multiple threads access an identity hash map concurrently, and at
117 * <p>Implementation note: This is a simple <i>linear-probe</i> hash table,
175 * The number of key-value mappings contained in this identity hash map.
206 * Constructs a new, empty identity hash map with a default expected
258 * Constructs a new identity hash ma
293 private static int hash(Object x, int length) { method in class:IdentityHashMap
[all...]
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/module/
H A DClassFileAttributes.java629 * u1 hash[hash_length];
667 byte[] hash = new byte[hash_length];
669 hash[j] = (byte) (0xff & cr.readByte(off+j));
673 map.put(mn, hash);
697 byte[] hash = hashes.hashFor(mn);
698 assert hash != null;
701 attr.putShort(hash.length);
702 for (byte b: hash) {
/openjdk10/jdk/src/java.base/share/classes/java/net/
H A DURI.java508 private transient int hash; // Zero ==> undefined field in class:URI
651 * <li><p> Finally, if a fragment is given then a hash character
726 * <li><p> Finally, if a fragment is given then a hash character
808 * <li><p> Finally, if a fragment is given then a hash character
1439 // -- Equality, comparison, hash code, toString, and serialization --
1514 * Returns a hash-code value for this URI. The hash code is based upon all
1518 * @return A hash-code value for this URI
1521 int h = hash;
1524 h = hash(
1863 hash(int hash, String s) argument
1870 normalizedHash(int hash, String s) argument
1888 hashIgnoringCase(int hash, String s) argument
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/util/
H A DRepositoryId.java365 // we have a declared hash also
616 String hash = null;
618 hash = kInterfaceOnlyHashStr;
620 hash = kExternalizableHashStr;
622 hash = Long.toHexString(actualLong).toUpperCase();
623 while(hash.length() < 16){
624 hash = "0" + hash;
638 hash = hash
[all...]

Completed in 179 milliseconds

1234567891011>>