Searched refs:TableStack (Results 1 – 1 of 1) sorted by relevance
/libcore/luni/src/main/java/java/util/concurrent/ |
D | ConcurrentHashMap.java | 3293 static final class TableStack<K,V> { class in ConcurrentHashMap 3297 TableStack<K,V> next; 3324 TableStack<K,V> stack, spare; // to save/restore on ForwardingNodes 3375 TableStack<K,V> s = spare; // reuse if possible in pushState() 3379 s = new TableStack<K,V>(); in pushState() 3393 TableStack<K,V> s; int len; in recoverState() 3399 TableStack<K,V> next = s.next; in recoverState() 4849 TableStack<K,V> stack, spare; 4904 TableStack<K,V> s = spare; in pushState() 4908 s = new TableStack<K,V>(); in pushState() [all …]
|