Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/
DHashMap.java722 Node<K,V> hiHead = null, hiTail = null; in resize() local
734 if (hiTail == null) in resize()
737 hiTail.next = e; in resize()
738 hiTail = e; in resize()
745 if (hiTail != null) { in resize()
746 hiTail.next = null; in resize()
2299 TreeNode<K,V> hiHead = null, hiTail = null; in split() local
2313 if ((e.prev = hiTail) == null) in split()
2316 hiTail.next = e; in split()
2317 hiTail = e; in split()
/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentHashMap.java2524 TreeNode<K,V> hi = null, hiTail = null; in transfer() local
2539 if ((p.prev = hiTail) == null) in transfer()
2542 hiTail.next = p; in transfer()
2543 hiTail = p; in transfer()