Lines Matching defs:hash
318 abstract E newEntry(K key, int hash, E next); in newEntry()
636 int hash(Object key) { in hash() method in CustomConcurrentHashMap.Impl
649 int hash = hash(key); in getEntry() local
657 int hash = strategy.getHash(entry); in removeEntry() local
665 int hash = strategy.getHash(entry); in removeEntry() local
688 Segment segmentFor(int hash) { in segmentFor()
784 E getFirst(int hash) { in getFirst()
791 public E getEntry(Object key, int hash) { in getEntry()
813 V get(Object key, int hash) { in get()
822 boolean containsKey(Object key, int hash) { in containsKey()
870 boolean replace(K key, int hash, V oldValue, V newValue) { in replace()
898 V replace(K key, int hash, V newValue) { in replace()
924 V put(K key, int hash, V value, boolean onlyIfAbsent) { in put()
1042 V remove(Object key, int hash) { in remove()
1081 boolean remove(Object key, int hash, Object value) { in remove()
1125 public boolean removeEntry(E entry, int hash, V value) { in removeEntry()
1167 public boolean removeEntry(E entry, int hash) { in removeEntry()
1330 int hash = hash(key); in get() local
1347 int hash = hash(key); in containsKey() local
1437 int hash = hash(key); in put() local
1455 int hash = hash(key); in putIfAbsent() local
1485 int hash = hash(key); in remove() local
1498 int hash = hash(key); in remove() local
1517 int hash = hash(key); in replace() local
1535 int hash = hash(key); in replace() local
2012 int hash = hash(key); in get() local
2107 K key, int hash, SimpleInternalEntry<K, V> next) { in newEntry()
2150 final int hash; field in CustomConcurrentHashMap.SimpleInternalEntry
2154 K key, int hash, @Nullable V value, SimpleInternalEntry<K, V> next) { in SimpleInternalEntry()