Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/concurrent/
DSynchronousQueue.java746 QNode hn = h.next; // Absorb cancelled first node as head in clean() local
747 if (hn != null && hn.isCancelled()) { in clean()
748 advanceHead(h, hn); in clean()
DLinkedTransferQueue.java1118 Node hn = h.next; in unsplice() local
1119 if (hn == null) in unsplice()
1121 if (hn != h && casHead(h, hn)) in unsplice()
DConcurrentHashMap.java2490 Node<K,V> ln, hn; in transfer() local
2503 hn = null; in transfer()
2506 hn = lastRun; in transfer()
2514 hn = new Node<K,V>(ph, pk, pv, hn); in transfer()
2517 setTabAt(nextTab, i + n, hn); in transfer()
2549 hn = (hc <= UNTREEIFY_THRESHOLD) ? untreeify(hi) : in transfer()
2552 setTabAt(nextTab, i + n, hn); in transfer()