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

/libcore/ojluni/src/main/java/java/util/
H A DSpliterators.java1257 static final int BATCH_UNIT = 1 << 10; // batch array size increment
1258 static final int MAX_BATCH = 1 << 25; // max batch array size;
1261 private int batch; // batch size for splits field in class:Spliterators.AbstractSpliterator
1297 * Split into arrays of arithmetically increasing batch
1312 int n = batch + BATCH_UNIT;
1320 batch = j;
1384 private int batch; // batch size for splits field in class:Spliterators.AbstractIntSpliterator
1422 int n = batch
1494 private int batch; // batch size for splits field in class:Spliterators.AbstractLongSpliterator
1604 private int batch; // batch size for splits field in class:Spliterators.AbstractDoubleSpliterator
1698 private int batch; // batch size for splits field in class:Spliterators.IteratorSpliterator
1849 private int batch; // batch size for splits field in class:Spliterators.IntIteratorSpliterator
1943 private int batch; // batch size for splits field in class:Spliterators.LongIteratorSpliterator
2037 private int batch; // batch size for splits field in class:Spliterators.DoubleIteratorSpliterator
[all...]
H A DLinkedList.java1175 static final int BATCH_UNIT = 1 << 10; // batch array size increment
1176 static final int MAX_BATCH = 1 << 25; // max batch array size;
1181 int batch; // batch size for splits field in class:LinkedList.LLSpliterator
1210 int n = batch + BATCH_UNIT;
1219 batch = j;
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentLinkedQueue.java816 static final int MAX_BATCH = 1 << 25; // max batch array size;
819 int batch; // batch size for splits field in class:ConcurrentLinkedQueue.CLQSpliterator
828 int b = batch;
844 batch = i;
H A DLinkedBlockingQueue.java830 static final int MAX_BATCH = 1 << 25; // max batch array size;
833 int batch; // batch size for splits field in class:LinkedBlockingQueue.LBQSpliterator
846 int b = batch;
872 batch = i;
H A DConcurrentLinkedDeque.java1441 static final int MAX_BATCH = 1 << 25; // max batch array size;
1444 int batch; // batch size for splits field in class:ConcurrentLinkedDeque.CLDSpliterator
1453 int b = batch;
1471 batch = i;
H A DLinkedBlockingDeque.java1131 static final int MAX_BATCH = 1 << 25; // max batch array size;
1134 int batch; // batch size for splits field in class:LinkedBlockingDeque.LBDSpliterator
1147 int b = batch;
1174 batch = i;
H A DLinkedTransferQueue.java1022 static final int MAX_BATCH = 1 << 25; // max batch array size;
1024 int batch; // batch size for splits field in class:LinkedTransferQueue.LTQSpliterator
1030 int b = batch;
1047 batch = i;
H A DConcurrentHashMap.java3689 * Computes initial batch value for bulk tasks. The returned value
4883 int batch; // split control field in class:ConcurrentHashMap.BulkTask
4887 this.batch = b;
4982 for (int i = baseIndex, f, h; batch > 0 &&
4986 (this, batch >>>= 1, baseLimit = h, f, tab,
5009 for (int i = baseIndex, f, h; batch > 0 &&
5013 (this, batch >>>= 1, baseLimit = h, f, tab,
5036 for (int i = baseIndex, f, h; batch > 0 &&
5040 (this, batch >>>= 1, baseLimit = h, f, tab,
5063 for (int i = baseIndex, f, h; batch >
[all...]

Completed in 117 milliseconds