Searched refs:batchSize (Results 1 – 7 of 7) sorted by relevance
440 constexpr const int batchSize = 128; in glyph_to_unicode_map() local441 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()
231 …const batchSize = (totalCost / workerCount) * packfraction; // Keep spare tests for unittest threa… constant362 if (totalFiles > 1000 && batchSize > 0) {380 if (total >= batchSize) {400 …al ${perfData ? "time" : "file sizes"} of ${perfData ? ms(batchSize) : `${Math.floor(batchSize)} b…
348 batchSize := (len(sources) + approxNumBatches - 1) / approxNumBatches350 util.ChunkIter(len(sources), batchSize, func(start, end int) error {
667 batchSize = min(len(workQueue), maxBatchSize)668 items = workQueue[0:batchSize]676 del workQueue[0:batchSize]
64 static const int batchSize = 128; variable289 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()
473 AtomicInt batchSize; member
887 TestQueue BatchTests(const std::vector<TestIdentifier> &tests, int batchSize) in BatchTests() argument904 int batchesForConfig = static_cast<int>(configTests.size() + batchSize - 1) / batchSize; in BatchTests()