Home
last modified time | relevance | path

Searched refs:untreeify (Results 1 – 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
DConcurrentHashMap.java1138 setTabAt(tab, i, untreeify(t.first)); in replaceNode()
1829 setTabAt(tab, i, untreeify(t.first)); in computeIfPresent()
1957 setTabAt(tab, i, untreeify(t.first)); in compute()
2068 setTabAt(tab, i, untreeify(t.first)); in merge()
2515 ln = (lc <= UNTREEIFY_THRESHOLD) ? untreeify(lo) : in transfer()
2517 hn = (hc <= UNTREEIFY_THRESHOLD) ? untreeify(hi) : in transfer()
2671 static <K,V> Node<K,V> untreeify(Node<K,V> b) { in untreeify() method in ConcurrentHashMap