Searched refs:cells (Results 1 - 5 of 5) 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...]
H A DLongAdder.java87 if ((as = cells) != null || !casBase(b = base, b + x)) {
120 Cell[] as = cells;
138 Cell[] as = cells;
158 Cell[] as = cells;
H A DDoubleAccumulator.java104 if ((as = cells) != null ||
130 Cell[] as = cells;
150 Cell[] as = cells;
170 Cell[] as = cells;
H A DDoubleAdder.java91 if ((as = cells) != null ||
118 Cell[] as = cells;
136 Cell[] as = cells;
156 Cell[] as = cells;
H A DLongAccumulator.java106 if ((as = cells) != null ||
128 Cell[] as = cells;
147 Cell[] as = cells;
167 Cell[] as = cells;

Completed in 48 milliseconds