Home
last modified time | relevance | path

Searched refs:thisBatch (Results 1 – 11 of 11) sorted by relevance

/dports/devel/spark/spark-2.1.1/core/src/main/scala/org/apache/spark/util/io/
H A DChunkedByteBufferOutputStream.scala76 val thisBatch = math.min(chunkSize - position, len - written) constant
77 chunks(lastChunkIndex).put(bytes, written + off, thisBatch)
78 written += thisBatch
79 position += thisBatch
/dports/emulators/mgba/mgba-0.9.2/src/platform/3ds/
H A Dctr-gpu.c116 int thisBatch = ctrNumVerts - ctrVertStart; in ctrFlushBatch() local
117 if (!thisBatch) { in ctrFlushBatch()
120 if (thisBatch < 0) { in ctrFlushBatch()
123 C3D_DrawArrays(GPU_GEOMETRY_PRIM, ctrVertStart, thisBatch); in ctrFlushBatch()
/dports/databases/timescaledb-backup/timescaledb-backup-0.1.1/vendor/github.com/Microsoft/hcsshim/vendor/github.com/linuxkit/virtsock/pkg/hvsock/
H A Dhvsock_linux.go216 thisBatch := min(toWrite, maxMsgSize)
217 n, err := v.hvsock.Write(buf[written : written+thisBatch])
221 if n != thisBatch {
222 return written, fmt.Errorf("short write %d != %d", n, thisBatch)
H A Dhvsock_windows.go228 thisBatch := min(toWrite, maxMsgSize)
229 n, err := v.write(buf[written : written+thisBatch])
233 if n != thisBatch {
234 return written, fmt.Errorf("short write %d != %d", n, thisBatch)
/dports/games/libretro-mgba/mgba-6186d45/src/platform/3ds/
H A Dctr-gpu.c112 int thisBatch = ctrNumVerts - ctrVertStart; in ctrFlushBatch() local
113 if (!thisBatch) { in ctrFlushBatch()
116 if (thisBatch < 0) { in ctrFlushBatch()
119 C3D_DrawArrays(GPU_GEOMETRY_PRIM, ctrVertStart, thisBatch); in ctrFlushBatch()
/dports/misc/py-mxnet/incubator-mxnet-1.9.0/tests/cpp/include/
H A Dtest_util.h399 for (size_t thisBatch = 0; thisBatch < batchSize; ++thisBatch) { variable
402 if (doBatches && !thisBatch) {
405 ss << "N" << thisBatch << "| ";
423 val = data_at<DType>(&blob, {thisBatch, thisChannel, c});
426 val = data_at<DType>(&blob, {thisBatch, thisChannel, r, c});
429 val = data_at<DType>(&blob, {thisBatch, thisChannel, dd, r, c});
/dports/misc/mxnet/incubator-mxnet-1.9.0/tests/cpp/include/
H A Dtest_util.h399 for (size_t thisBatch = 0; thisBatch < batchSize; ++thisBatch) { variable
402 if (doBatches && !thisBatch) {
405 ss << "N" << thisBatch << "| ";
423 val = data_at<DType>(&blob, {thisBatch, thisChannel, c});
426 val = data_at<DType>(&blob, {thisBatch, thisChannel, r, c});
429 val = data_at<DType>(&blob, {thisBatch, thisChannel, dd, r, c});
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/tests/background/junit4/src/org/mozilla/android/sync/test/
H A DSynchronizerHelpers.java127 final ArrayList<Record> thisBatch = new ArrayList<Record>(batch); in flush() local
135 for (Record batchRecord : thisBatch) { in flush()
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/services/src/test/java/org/mozilla/android/sync/test/
H A DSynchronizerHelpers.java164 final ArrayList<Record> thisBatch = new ArrayList<Record>(batch);
172 for (Record batchRecord : thisBatch) {
/dports/devel/stack/stack-2.7.3/_cabal_deps/casa-client-0.0.1/src/Casa/
H A DClient.hs193 thisBatch))
195 (thisBatch, remaining) =
/dports/net-mgmt/bosun/bosun-0.9.0-preview/cmd/bosun/database/
H A Dstate_data.go163 thisBatch := incidentIds[:size]
166 for _, id := range thisBatch {