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

/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentHashMap.java454 HashEntry<K,V> first = entryForHash(this, hash);
476 (f = entryForHash(this, hash)) != first) {
493 HashEntry<K,V> first = entryForHash(this, hash);
509 (f = entryForHash(this, hash)) != first) {
560 for (e = entryForHash(this, hash); e != null; e = e.next) {
584 for (e = entryForHash(this, hash); e != null; e = e.next) {
677 static final <K,V> HashEntry<K,V> entryForHash(Segment<K,V> seg, int h) { method in class:ConcurrentHashMap

Completed in 5 milliseconds