Home
last modified time | relevance | path

Searched refs:TCallable (Results 1 – 25 of 36) sorted by relevance

12

/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/client/dump/
H A Dthread.h37 template <typename TCallable>
38 thread(TCallable start) { in thread()
39 context<TCallable> *new_context = new context<TCallable>(start); in thread()
41 if (my_thread_create(&m_thread, nullptr, context<TCallable>::entry_point, in thread()
52 template <typename TCallable>
55 context(TCallable callable) : m_callable(callable) {} in context()
65 TCallable m_callable;
H A Dthread_group.h36 template <typename TCallable>
37 void create_thread(TCallable entry_point) { in create_thread()
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/client/dump/
H A Dthread.h36 template <typename TCallable> thread(TCallable start) in thread()
38 context<TCallable>* new_context= new context<TCallable>(start); in thread()
41 &m_thread, NULL, context<TCallable>::entry_point, new_context)) in thread()
52 template <typename TCallable> class context
55 context(TCallable callable) in context()
68 TCallable m_callable;
H A Dthread_group.h36 template <typename TCallable> void create_thread(TCallable entry_point) in create_thread()
/dports/databases/mysqlwsrep57-server/mysql-wsrep-wsrep_5.7.35-25.27/client/dump/
H A Dthread.h36 template <typename TCallable> thread(TCallable start) in thread()
38 context<TCallable>* new_context= new context<TCallable>(start); in thread()
41 &m_thread, NULL, context<TCallable>::entry_point, new_context)) in thread()
52 template <typename TCallable> class context
55 context(TCallable callable) in context()
68 TCallable m_callable;
H A Dthread_group.h36 template <typename TCallable> void create_thread(TCallable entry_point) in create_thread()
/dports/databases/percona57-server/percona-server-5.7.36-39/client/dump/
H A Dthread.h36 template <typename TCallable> thread(TCallable start) in thread()
38 context<TCallable>* new_context= new context<TCallable>(start); in thread()
41 &m_thread, NULL, context<TCallable>::entry_point, new_context)) in thread()
52 template <typename TCallable> class context
55 context(TCallable callable) in context()
68 TCallable m_callable;
H A Dthread_group.h36 template <typename TCallable> void create_thread(TCallable entry_point) in create_thread()
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/client/dump/
H A Dthread.h36 template <typename TCallable> thread(TCallable start) in thread()
38 context<TCallable>* new_context= new context<TCallable>(start); in thread()
41 &m_thread, NULL, context<TCallable>::entry_point, new_context)) in thread()
52 template <typename TCallable> class context
55 context(TCallable callable) in context()
68 TCallable m_callable;
H A Dthread_group.h36 template <typename TCallable> void create_thread(TCallable entry_point) in create_thread()
/dports/databases/percona57-client/percona-server-5.7.36-39/client/dump/
H A Dthread.h36 template <typename TCallable> thread(TCallable start) in thread()
38 context<TCallable>* new_context= new context<TCallable>(start); in thread()
41 &m_thread, NULL, context<TCallable>::entry_point, new_context)) in thread()
52 template <typename TCallable> class context
55 context(TCallable callable) in context()
68 TCallable m_callable;
H A Dthread_group.h36 template <typename TCallable> void create_thread(TCallable entry_point) in create_thread()
/dports/databases/mysql57-client/mysql-5.7.36/client/dump/
H A Dthread.h36 template <typename TCallable> thread(TCallable start) in thread()
38 context<TCallable>* new_context= new context<TCallable>(start); in thread()
41 &m_thread, NULL, context<TCallable>::entry_point, new_context)) in thread()
52 template <typename TCallable> class context
55 context(TCallable callable) in context()
68 TCallable m_callable;
H A Dthread_group.h36 template <typename TCallable> void create_thread(TCallable entry_point) in create_thread()
/dports/biology/seqan/seqan-library-2.4.0/include/seqan/align_parallel/
H A Dasync_wave_execution_interface.h98 typename TCallable>
103 TCallable && callback) in submit()
110 func(id, me._executor, std::forward<TCallable>(callback)); in submit()
184 typename TCallable>
189 TCallable && callback) in submit()
197 func(id, me._executor, me._simdTaskQueue, std::forward<TCallable>(callback)); in submit()
223 typename TCallable>
229 TCallable && callback) in alignExecBatch()
245 submit(executor, setH[i], setV[i], std::forward<TCallable>(callback)); in alignExecBatch()
H A Dwavefront_alignment_scheduler.h70 using TCallable = std::function<void(uint16_t)>;
71 using TAlignmentQueue = ConcurrentQueue<TCallable, Suspendable<Limit>>;
95 TCallable callable;
226 using TTask = typename WavefrontAlignmentScheduler::TCallable;
/dports/biology/seqan-apps/seqan-seqan-v2.4.0/include/seqan/align_parallel/
H A Dasync_wave_execution_interface.h98 typename TCallable>
103 TCallable && callback) in submit()
110 func(id, me._executor, std::forward<TCallable>(callback)); in submit()
184 typename TCallable>
189 TCallable && callback) in submit()
197 func(id, me._executor, me._simdTaskQueue, std::forward<TCallable>(callback)); in submit()
223 typename TCallable>
229 TCallable && callback) in alignExecBatch()
245 submit(executor, setH[i], setV[i], std::forward<TCallable>(callback)); in alignExecBatch()
H A Dwavefront_alignment_scheduler.h70 using TCallable = std::function<void(uint16_t)>;
71 using TAlignmentQueue = ConcurrentQueue<TCallable, Suspendable<Limit>>;
95 TCallable callable;
226 using TTask = typename WavefrontAlignmentScheduler::TCallable;
/dports/devel/py-jedi/jedi-0.18.0/test/completion/
H A Dpep0484_generic_passthroughs.py19 TCallable = TypeVar('TCallable', bound=Callable[..., Any]) variable
214 def decorator(fn: TCallable) -> TCallable: argument
275 def __call__(self, func: TCallable) -> TCallable: argument
294 def decorator_factory_bound_callable() -> Callable[[TCallable], TCallable]:
/dports/math/gap/gap-4.11.0/pkg/semigroups-3.2.3/libsemigroups/include/
H A Drace.hpp132 template <typename TCallable>
133 void run_until(TCallable const& func, in run_until()
136 static_assert(detail::IsCallable<TCallable>::value, in run_until()
138 static_assert(std::is_same<typename std::result_of<TCallable()>::type, in run_until()
175 template <typename TCallable>
176 void run_func(TCallable const& func) { in run_func()
177 static_assert(std::is_same<typename std::result_of<TCallable( in run_func()
/dports/math/libsemigroups/libsemigroups-1.3.7/include/libsemigroups/
H A Drace.hpp132 template <typename TCallable>
133 void run_until(TCallable const& func, in run_until()
136 static_assert(detail::IsCallable<TCallable>::value, in run_until()
138 static_assert(std::is_same<typename std::result_of<TCallable()>::type, in run_until()
172 template <typename TCallable>
173 void run_func(TCallable const& func) { in run_func()
174 static_assert(std::is_same<typename std::result_of<TCallable( in run_func()
/dports/devel/py-pyface/pyface-7.2.0/pyface/data_view/
H A Di_data_wrapper.py13 from typing import Any as TAny, Callable as TCallable, NamedTuple unknown
30 serialize: TCallable[[TAny], bytes]
34 deserialize: TCallable[[bytes], TAny]
/dports/science/opensph/sph-7de6c044339f649e3d19e61f735a6a24572b792a/core/common/
H A DTraits.h84 template <typename TCallable, typename TEnabler, typename... TArgs>
89 template <typename TCallable, typename... TArgs>
90 struct IsCallableImpl<TCallable,
91 VoidType<decltype(std::declval<TCallable>()(std::declval<TArgs>()...))>,
95 template <typename TCallable, typename... TArgs>
97 static constexpr bool value = IsCallableImpl<TCallable, void, TArgs...>::value;
/dports/biology/seqan-apps/seqan-seqan-v2.4.0/include/seqan/parallel/
H A Dparallel_thread_pool.h134 template <typename TCallable, typename ...TArgs>
137 TCallable callable, TArgs && ...args) in spawn()
/dports/biology/seqan/seqan-library-2.4.0/include/seqan/parallel/
H A Dparallel_thread_pool.h134 template <typename TCallable, typename ...TArgs>
137 TCallable callable, TArgs && ...args) in spawn()

12