Lines Matching refs:ed
139 void destruct_and_deallocate(const execution_data& ed);
142 void finalize(const execution_data& ed);
164 task* execute(execution_data& ed) override { in execute() argument
167 task* t_next = my_task->execute(ed); in execute()
168 my_allocator.delete_object(this, ed); in execute()
171 task* cancel(execution_data& ed) override { in cancel() argument
176 task* t_next = my_task->cancel(ed); in cancel()
177 my_allocator.delete_object(this, ed); in cancel()
364 inline void graph_task::destruct_and_deallocate(const execution_data& ed) { in destruct_and_deallocate() argument
368 allocator.deallocate(static_cast<DerivedType*>(this), ed); in destruct_and_deallocate()
372 inline void graph_task::finalize(const execution_data& ed) { in finalize() argument
374 destruct_and_deallocate<DerivedType>(ed); in finalize()