Searched defs:nextTab (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentHashMap.java2366 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) { argument
2430 if (nextTab == null) { // initiating
2434 nextTab = nt;
2439 nextTable = nextTab;
2442 int nextn = nextTab
[all...]

Completed in 48 milliseconds