Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DThreadPool.cpp26 ThreadPool::ThreadPool(unsigned ThreadCount) in ThreadPool() argument
30 Threads.reserve(ThreadCount); in ThreadPool()
31 for (unsigned ThreadID = 0; ThreadID < ThreadCount; ++ThreadID) { in ThreadPool()
114 ThreadPool::ThreadPool(unsigned ThreadCount) in ThreadPool() argument
116 if (ThreadCount) { in ThreadPool()
117 errs() << "Warning: request a ThreadPool with " << ThreadCount in ThreadPool()
DParallel.cpp42 explicit ThreadPoolExecutor(unsigned ThreadCount = hardware_concurrency()) { in ThreadPoolExecutor() argument
45 Threads.reserve(ThreadCount); in ThreadPoolExecutor()
48 Threads[0] = std::thread([&, ThreadCount] { in ThreadPoolExecutor()
49 for (unsigned i = 1; i < ThreadCount; ++i) { in ThreadPoolExecutor()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DParallelCG.cpp55 int ThreadCount = 0; in splitCodeGen() local
71 BCOSs[ThreadCount]->write(BC.begin(), BC.size()); in splitCodeGen()
72 BCOSs[ThreadCount]->flush(); in splitCodeGen()
75 llvm::raw_pwrite_stream *ThreadOS = OSs[ThreadCount++]; in splitCodeGen()
/third_party/skia/third_party/externals/swiftshader/src/SwiftShader/
DSwiftShader.ini27 ThreadCount=0 key
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DThreadPool.h46 ThreadPool(unsigned ThreadCount);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/
DLTOBackend.cpp379 unsigned ThreadCount = 0; in splitCodeGen() local
413 std::move(BC), ThreadCount++); in splitCodeGen()
DThinLTOCodeGenerator.cpp85 ThreadCount("threads", cl::init(llvm::heavyweight_hardware_concurrency()));
1040 ThreadPool Pool(ThreadCount); in run()