Home
last modified time | relevance | path

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

/external/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()
118 ThreadPool::ThreadPool(unsigned ThreadCount) in ThreadPool() argument
120 if (ThreadCount) { in ThreadPool()
121 errs() << "Warning: request a ThreadPool with " << ThreadCount in ThreadPool()
/external/llvm/lib/CodeGen/
DParallelCG.cpp56 int ThreadCount = 0; in splitCodeGen() local
72 BCOSs[ThreadCount]->write(BC.begin(), BC.size()); in splitCodeGen()
73 BCOSs[ThreadCount]->flush(); in splitCodeGen()
76 llvm::raw_pwrite_stream *ThreadOS = OSs[ThreadCount++]; in splitCodeGen()
/external/swiftshader/src/SwiftShader/
DSwiftShader.ini27 ThreadCount=0 key
/external/llvm/include/llvm/Support/
DThreadPool.h70 ThreadPool(unsigned ThreadCount);
/external/llvm/tools/llvm-cov/
DCodeCoverage.cpp549 unsigned ThreadCount = 1; in show() local
551 ThreadCount = std::thread::hardware_concurrency(); in show()
552 ThreadPool Pool(ThreadCount); in show()
/external/llvm/lib/LTO/
DThinLTOCodeGenerator.cpp66 static cl::opt<int> ThreadCount("threads",
774 ThreadPool Pool(ThreadCount); in run()
/external/compiler-rt/lib/tsan/rtl/
Dtsan_rtl_thread.cc215 int ThreadCount(ThreadState *thr) { in ThreadCount() function
Dtsan_rtl.h716 int ThreadCount(ThreadState *thr);
Dtsan_rtl.cc390 if (flags()->atexit_sleep_ms > 0 && ThreadCount(thr) > 1) in Finalize()