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

/libcore/ojluni/src/main/java/java/util/concurrent/atomic/
H A DStriped64.java110 * expanded mask. We do not try to detect or remove such cells,
112 * contention levels will recur, so the cells will eventually be
153 * Table of cells. When non-null, size is a power of 2.
155 transient volatile Cell[] cells; field in class:Striped64
232 if ((as = cells) != null && (n = as.length) > 0) {
239 if ((rs = cells) != null &&
258 else if (n >= NCPU || cells != as)
264 if (cells == as) // Expand table unless stale
265 cells = Arrays.copyOf(as, n << 1);
274 else if (cellsBusy == 0 && cells
[all...]

Completed in 37 milliseconds