Searched refs:TableStack (Results 1 – 1 of 1) sorted by relevance
| /libcore/ojluni/src/main/java/java/util/concurrent/ |
| D | ConcurrentHashMap.java | 3314 static final class TableStack<K,V> { class in ConcurrentHashMap 3318 TableStack<K,V> next; 3345 TableStack<K,V> stack, spare; // to save/restore on ForwardingNodes 3396 TableStack<K,V> s = spare; // reuse if possible in pushState() 3400 s = new TableStack<K,V>(); in pushState() 3414 TableStack<K,V> s; int len; in recoverState() 3420 TableStack<K,V> next = s.next; in recoverState() 4899 TableStack<K,V> stack, spare; 4954 TableStack<K,V> s = spare; in pushState() 4958 s = new TableStack<K,V>(); in pushState() [all …]
|