Lines Matching refs:t
50 TBB_EXPORT void __TBB_EXPORTED_FUNC spawn(d1::task& t, d1::task_group_context& ctx);
51 TBB_EXPORT void __TBB_EXPORTED_FUNC spawn(d1::task& t, d1::task_group_context& ctx, d1::slot_id id);
52 TBB_EXPORT void __TBB_EXPORTED_FUNC execute_and_wait(d1::task& t, d1::task_group_context& t_ctx, d1…
180 inline void spawn(task& t, task_group_context& ctx) { in spawn() argument
181 call_itt_task_notify(releasing, &t); in spawn()
182 r1::spawn(t, ctx); in spawn()
185 inline void spawn(task& t, task_group_context& ctx, slot_id id) { in spawn() argument
186 call_itt_task_notify(releasing, &t); in spawn()
187 r1::spawn(t, ctx, id); in spawn()
190 inline void execute_and_wait(task& t, task_group_context& t_ctx, wait_context& wait_ctx, task_group… in execute_and_wait() argument
191 r1::execute_and_wait(t, t_ctx, wait_ctx, w_ctx); in execute_and_wait()