Home | History | Annotate | Download | only in concurrent

Lines Matching refs:nextTab

2366         Node<K,V>[] nextTab; int sc;
2368 (nextTab = ((ForwardingNode<K,V>)f).nextTable) != null) {
2370 while (nextTab == nextTable && table == tab &&
2376 transfer(tab, nextTab);
2380 return nextTab;
2426 private final void transfer(Node<K,V>[] tab, Node<K,V>[] nextTab) {
2430 if (nextTab == null) { // initiating
2434 nextTab = nt;
2439 nextTable = nextTab;
2442 int nextn = nextTab.length;
2443 ForwardingNode<K,V> fwd = new ForwardingNode<K,V>(nextTab);
2445 boolean finishing = false; // to ensure sweep before committing nextTab
2469 table = nextTab;
2513 setTabAt(nextTab, i, ln);
2514 setTabAt(nextTab, i + n, hn);
2548 setTabAt(nextTab, i, ln);
2549 setTabAt(nextTab, i + n, hn);