Home
last modified time | relevance | path

Searched refs:batchSize (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/src/ports/
DSkTypeface_win_dw.cpp440 constexpr const int batchSize = 128; in glyph_to_unicode_map() local
441 UINT32 codepoints[batchSize]; in glyph_to_unicode_map()
442 UINT16 glyphs[batchSize]; in glyph_to_unicode_map()
443 for (UINT32 c = range.first; c <= range.last && *remainingGlyphCount != 0; c += batchSize) { in glyph_to_unicode_map()
444 UINT32 numBatchedCodePoints = std::min<UINT32>(range.last - c + 1, batchSize); in glyph_to_unicode_map()
/third_party/typescript/src/testRunner/parallel/
Dhost.ts231 …const batchSize = (totalCost / workerCount) * packfraction; // Keep spare tests for unittest threa… constant
362 if (totalFiles > 1000 && batchSize > 0) {
380 if (total >= batchSize) {
400 …al ${perfData ? "time" : "file sizes"} of ${perfData ? ms(batchSize) : `${Math.floor(batchSize)} b…
/third_party/skia/infra/bots/task_drivers/fm_driver/
Dfm_driver.go348 batchSize := (len(sources) + approxNumBatches - 1) / approxNumBatches
350 util.ChunkIter(len(sources), batchSize, func(start, end int) error {
/third_party/vk-gl-cts/scripts/android/
Dbuild_apk.py667 batchSize = min(len(workQueue), maxBatchSize)
668 items = workQueue[0:batchSize]
676 del workQueue[0:batchSize]
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
DRenderer.cpp64 static const int batchSize = 128; variable
289 int batch = batchSize / ms; in draw()
361 draw->batchSize = batch; in draw()
839 int batch = draw->batchSize; in findAvailableTasks()
2139 triangleBatch[i] = (Triangle*)allocate(batchSize * sizeof(Triangle)); in initializeThreads()
2140 primitiveBatch[i] = (Primitive*)allocate(batchSize * sizeof(Primitive)); in initializeThreads()
DRenderer.hpp473 AtomicInt batchSize; member
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/runner/
DTestSuite.cpp887 TestQueue BatchTests(const std::vector<TestIdentifier> &tests, int batchSize) in BatchTests() argument
904 int batchesForConfig = static_cast<int>(configTests.size() + batchSize - 1) / batchSize; in BatchTests()