Home
last modified time | relevance | path

Searched refs:threadCount (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_frontend/es2panda/compiler/core/
DcompileQueue.h96 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()
DcompilerImpl.h41 explicit CompilerImpl(size_t threadCount): threadCount_(threadCount) {} in CompilerImpl() argument
/arkcompiler/ets_frontend/es2panda/util/
DworkerQueue.cpp36 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()
DworkerQueue.h48 explicit WorkerQueue(size_t threadCount);
/arkcompiler/ets_frontend/es2panda/
Des2panda.cpp37 Compiler::Compiler(ScriptExtension ext, size_t threadCount) in Compiler() argument
38 : parser_(new parser::ParserImpl(ext)), compiler_(new compiler::CompilerImpl(threadCount)) in Compiler()
Des2panda.h172 explicit Compiler(ScriptExtension ext, size_t threadCount);