Home
last modified time | relevance | path

Searched refs:ThreadPoolExecutor (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DParallel.cpp49 class ThreadPoolExecutor : public Executor { class
51 explicit ThreadPoolExecutor(ThreadPoolStrategy S = hardware_concurrency()) { in ThreadPoolExecutor() function in llvm::parallel::detail::__anon2cb6b1800111::ThreadPoolExecutor
80 ~ThreadPoolExecutor() override { in ~ThreadPoolExecutor()
91 static void *call() { return new ThreadPoolExecutor(strategy); } in call()
94 static void call(void *Ptr) { ((ThreadPoolExecutor *)Ptr)->stop(); } in call()
148 static ManagedStatic<ThreadPoolExecutor, ThreadPoolExecutor::Creator, in getDefaultExecutor()
149 ThreadPoolExecutor::Deleter> in getDefaultExecutor()
151 static std::unique_ptr<ThreadPoolExecutor> Exec(&(*ManagedExec)); in getDefaultExecutor()
/openbsd-src/gnu/llvm/llvm/utils/
H A Dupdate_test_prefix.py6 from concurrent.futures import ThreadPoolExecutor, as_completed
42 with ThreadPoolExecutor(max_workers=32) as e:
H A Dupdate_any_test_checks.py17 from concurrent.futures import ThreadPoolExecutor
63 with ThreadPoolExecutor(max_workers=config.jobs) as executor:
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dcrashlog.py1046 with concurrent.futures.ThreadPoolExecutor() as executor: