Home
last modified time | relevance | path

Searched refs:asyncImpl (Results 1 – 2 of 2) sorted by relevance

/external/llvm/include/llvm/Support/
DThreadPool.h81 return asyncImpl(std::move(Task)); in async()
85 return asyncImpl([Task](VoidTy) mutable -> VoidTy { in async()
97 return asyncImpl(std::forward<Function>(F)); in async()
99 return asyncImpl([F] (VoidTy) -> VoidTy { F(); return VoidTy(); }); in async()
110 std::shared_future<VoidTy> asyncImpl(TaskTy F);
/external/llvm/lib/Support/
DThreadPool.cpp82 std::shared_future<ThreadPool::VoidTy> ThreadPool::asyncImpl(TaskTy Task) { in asyncImpl() function in ThreadPool
136 std::shared_future<ThreadPool::VoidTy> ThreadPool::asyncImpl(TaskTy Task) { in asyncImpl() function in ThreadPool