Home
last modified time | relevance | path

Searched defs:hash (Results 1 – 25 of 38) sorted by relevance

12

/libcore/ojluni/src/main/java/java/util/
DHashtable.java337 int hash = key.hashCode(); in containsKey() local
365 int hash = key.hashCode(); in get() local
421 private void addEntry(int hash, K key, V value, int index) { in addEntry()
466 int hash = key.hashCode(); in put() local
493 int hash = key.hashCode(); in remove() local
702 int hash = key.hashCode(); in contains() local
717 int hash = key.hashCode(); in remove() local
917 int hash = key.hashCode(); in putIfAbsent() local
940 int hash = key.hashCode(); in remove() local
965 int hash = key.hashCode(); in replace() local
[all …]
DHashMap.java279 final int hash; field in HashMap.Node
284 Node(int hash, K key, V value, Node<K,V> next) { in Node()
336 static final int hash(Object key) { in hash() method in HashMap
566 final Node<K,V> getNode(int hash, Object key) { in getNode()
624 final V putVal(int hash, K key, V value, boolean onlyIfAbsent, in putVal()
754 final void treeifyBin(Node<K,V>[] tab, int hash) { in treeifyBin()
812 final Node<K,V> removeNode(int hash, Object key, Object value, in removeNode()
1101 int hash = hash(key); in computeIfAbsent() local
1155 int hash = hash(key); in computeIfPresent() local
1175 int hash = hash(key); in compute() local
[all …]
DObjects.java127 public static int hash(Object... values) { in hash() method in Objects
DLinkedHashMap.java218 LinkedHashMapEntry(int hash, K key, V value, Node<K,V> next) { in LinkedHashMapEntry()
279 Node<K,V> newNode(int hash, K key, V value, Node<K,V> e) { in newNode()
294 TreeNode<K,V> newTreeNode(int hash, K key, V value, Node<K,V> next) { in newTreeNode()
DWeakHashMap.java297 final int hash(Object k) { in hash() method in WeakHashMap
704 final int hash; field in WeakHashMap.Entry
712 int hash, Entry<K,V> next) { in Entry()
/libcore/ojluni/src/main/java/java/nio/file/attribute/
DAclEntry.java72 private volatile int hash; field in AclEntry
359 private static int hash(int h, Object o) { in hash() method in AclEntry
/libcore/ojluni/src/main/java/sun/security/x509/
DDistributionPointName.java214 int hash = hashCode; in hashCode() local
DDistributionPoint.java344 int hash = hashCode; in hashCode() local
/libcore/ojluni/src/main/java/java/lang/reflect/
DProxy.java436 private final int hash; field in Proxy.Key1
463 private final int hash; field in Proxy.Key2
495 private final int hash; field in Proxy.KeyX
DWeakCache.java299 private final int hash; field in WeakCache.CacheValue
341 private final int hash; field in WeakCache.CacheKey
/libcore/ojluni/src/main/java/sun/util/calendar/
DEra.java135 private int hash = 0; field in Era
DCalendarDate.java414 long hash = ((((((long)year - 1970) * 12) + (month - 1)) * 30) + dayOfMonth) * 24; in hashCode() local
/libcore/ojluni/src/main/java/java/security/cert/
DCertificate.java70 private int hash = -1; // Default to -1 field in Certificate
/libcore/ojluni/src/main/java/sun/util/locale/
DBaseLocale.java47 private volatile int hash = 0; field in BaseLocale
172 private final int hash; field in BaseLocale.Key
/libcore/luni/src/main/java/libcore/reflect/
DAnnotationFactory.java241 int hash = 0; in hashCode() local
DAnnotationMember.java260 int hash = name.hashCode() * 127; in hashCode() local
/libcore/ojluni/src/main/java/java/time/temporal/
DValueRange.java401 long hash = minSmallest + minLargest << 16 + minLargest >> 48 + maxSmallest << 32 + in hashCode() local
/libcore/ojluni/src/main/java/java/util/concurrent/
DExchanger.java314 int hash; // Pseudo-random for spins field in Exchanger.Node
/libcore/luni/src/main/native/
Dorg_apache_harmony_xml_ExpatParser.cpp58 int hash; member
241 int hash = 0; in hashString() local
258 static InternedString* newInternedString(JNIEnv* env, const char* bytes, int hash) { in newInternedString()
352 static jstring findInternedString(InternedString** bucket, const char* s, int hash) { in findInternedString()
370 int hash = hashString(s); in internString() local
/libcore/ojluni/src/main/java/java/net/
DURI.java491 private volatile transient int hash; // Zero ==> undefined field in URI
1740 private static int hash(int hash, String s) { in hash()
1747 private static int normalizedHash(int hash, String s) { in normalizedHash()
1765 private static int hashIgnoringCase(int hash, String s) { in hashIgnoringCase()
DInet6Address.java288 int hash = 0; in hashCode() local
/libcore/ojluni/src/main/java/java/time/zone/
DZoneOffsetTransitionRule.java537 int hash = ((time.toSecondOfDay() + (timeEndOfDay ? 1 : 0)) << 15) + in hashCode() local
/libcore/luni/src/test/java/com/android/org/bouncycastle/jce/provider/
DCertBlacklistTest.java261 String hash = getHash(pk); in testPubkeyIsBlacklisted() local
/libcore/ojluni/src/main/java/java/io/
DObjectStreamClass.java1797 long hash = 0; in computeDefaultSUID() local
2176 private final int hash; field in ObjectStreamClass.FieldReflectorKey
2332 private final int hash; field in ObjectStreamClass.WeakClassKey
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
DBigDecimalTest.java355 BigDecimal hash = new BigDecimal("1.00"); in test_hashCode() local

12