Home
last modified time | relevance | path

Searched refs:op_list (Results 1 – 7 of 7) sorted by relevance

/oneTBB/include/oneapi/tbb/detail/
H A D_aggregator.h104 OperationType* op_list; in start_handle_operations() local
126 op_list = pending_operations.exchange(nullptr); in start_handle_operations()
129 handle_operations(op_list); in start_handle_operations()
165 void operator()( OperationList* op_list ) { in operator()
167 my_object->handle_operations(op_list); in operator()
H A D_flow_graph_join_impl.h240 while(op_list) {
241 current = op_list;
242 op_list = op_list->next;
408 while(op_list) {
410 op_list = op_list->next;
565 while(op_list) {
567 op_list = op_list->next;
904 while(op_list) {
906 op_list = op_list->next;
1069 while(op_list) {
[all …]
H A D_flow_graph_indexer_impl.h139 void handle_operations(indexer_node_base_operation* op_list) {
141 while(op_list) {
142 current = op_list;
143 op_list = op_list->next;
H A D_flow_graph_node_impl.h190 void handle_operations(operation_type *op_list) { in handle_operations() argument
192 while (op_list) { in handle_operations()
193 tmp = op_list; in handle_operations()
194 op_list = op_list->next; in handle_operations()
/oneTBB/include/oneapi/tbb/
H A Dconcurrent_lru_cache.h114 void handle_operations(aggregator_operation* op_list) { in handle_operations() argument
115 while (op_list) { in handle_operations()
116 op_list->cast_and_handle(*this); in handle_operations()
117 aggregator_operation* prev_op = op_list; in handle_operations()
118 op_list = op_list->next; in handle_operations()
H A Dconcurrent_priority_queue.h247 void operator()(cpq_operation* op_list) { in operator()
249 my_cpq->handle_operations(op_list); in operator()
253 void handle_operations( cpq_operation* op_list ) { in handle_operations() argument
259 while(op_list) { in handle_operations()
268 call_itt_notify(acquired, &(op_list->status)); in handle_operations()
269 __TBB_ASSERT(op_list->type != INVALID_OP, nullptr); in handle_operations()
271 tmp = op_list; in handle_operations()
272 op_list = op_list->next.load(std::memory_order_relaxed); in handle_operations()
H A Dflow_graph.h1190 virtual void handle_operations(buffer_operation *op_list) { in handle_operations() argument
1191 handle_operations_impl(op_list, this); in handle_operations()
1195 void handle_operations_impl(buffer_operation *op_list, derived_type* derived) { in handle_operations_impl() argument
1200 while (op_list) { in handle_operations_impl()
1201 tmp = op_list; in handle_operations_impl()
1202 op_list = op_list->next; in handle_operations_impl()
1708 void handle_operations(prio_operation *op_list) override { in handle_operations() argument
1709 this->handle_operations_impl(op_list, this); in handle_operations()