Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Support/
DThreadPool.h82 return asyncImpl(std::move(Task)); in async()
86 return asyncImpl([Task](VoidTy) mutable -> VoidTy { in async()
98 return asyncImpl(std::forward<Function>(F)); in async()
100 return asyncImpl([F] (VoidTy) -> VoidTy { F(); return VoidTy(); }); in async()
111 std::shared_future<VoidTy> asyncImpl(TaskTy F);
/external/llvm/lib/Support/
DThreadPool.cpp85 std::shared_future<ThreadPool::VoidTy> ThreadPool::asyncImpl(TaskTy Task) { in asyncImpl() function in ThreadPool
139 std::shared_future<ThreadPool::VoidTy> ThreadPool::asyncImpl(TaskTy Task) { in asyncImpl() function in ThreadPool