Searched refs:threadCount (Results 1 – 6 of 6) sorted by relevance
| /arkcompiler/ets_frontend/es2panda/compiler/core/ |
| D | compileQueue.h | 96 explicit CompileFuncQueue(size_t threadCount, CompilerContext *context) in CompileFuncQueue() argument 97 : util::WorkerQueue(threadCount), context_(context) {} in CompileFuncQueue() 111 explicit CompileFileQueue(size_t threadCount, es2panda::CompilerOptions *options, in CompileFileQueue() argument 114 : util::WorkerQueue(threadCount), options_(options), progsInfo_(progsInfo), in CompileFileQueue()
|
| D | compilerImpl.h | 41 explicit CompilerImpl(size_t threadCount): threadCount_(threadCount) {} in CompilerImpl() argument
|
| /arkcompiler/ets_frontend/es2panda/util/ |
| D | workerQueue.cpp | 36 WorkerQueue::WorkerQueue(size_t threadCount) in WorkerQueue() argument 38 threads_.reserve(threadCount); in WorkerQueue() 40 for (size_t i = 0; i < threadCount; i++) { in WorkerQueue()
|
| D | workerQueue.h | 48 explicit WorkerQueue(size_t threadCount);
|
| /arkcompiler/ets_frontend/es2panda/ |
| D | es2panda.cpp | 37 Compiler::Compiler(ScriptExtension ext, size_t threadCount) in Compiler() argument 38 : parser_(new parser::ParserImpl(ext)), compiler_(new compiler::CompilerImpl(threadCount)) in Compiler()
|
| D | es2panda.h | 172 explicit Compiler(ScriptExtension ext, size_t threadCount);
|