Home
last modified time | relevance | path

Searched refs:reset (Results 1 – 25 of 63) sorted by relevance

123

/oneTBB/test/common/
H A Dtest_comparisons.h86 reset(); in TwoWayComparable()
90 reset(); in TwoWayComparable()
93 static void reset() { in reset() function
167 TwoWayComparable::reset();
177 TwoWayComparable::reset();
183 ThreeWayComparable() : TwoWayComparable() { reset(); }
185 ThreeWayComparable( std::size_t num ) : TwoWayComparable(num) { reset(); }
187 static void reset() {
188 TwoWayComparable::reset();
212 ThreeWayComparable::reset();
H A Dstate_trackable.h70 static void reset() { in reset() function
79 reset(); in initialize()
/oneTBB/test/tbb/
H A Dtest_flow_graph_whitebox.cpp71 g.reset(); in TestSplitNode()
365 g.reset(); in TestSimpleSuccessorArc()
386 g.reset(); in TestSimpleSuccessorArc()
413 g.reset(); in TestJoinNode()
420 g.reset(); in TestJoinNode()
505 g.reset(); in TestLimiterNode()
612 g.reset(); in TestMultifunctionNode()
632 g.reset(); in TestIndexerNode()
649 g.reset(); in TestScalarNode()
734 g.reset(); in TestInputNode()
[all …]
H A Dtest_input_node.cpp183 g.reset(tbb::flow::rf_reset_bodies); // <-- re-initializes the counts. in test_reset()
194 g.reset(); // doesn't reset the input_node_body to initial state, but does spawn a task in test_reset()
223 g.reset(tbb::flow::rf_reset_bodies); // <-- reinitializes the counts in test_reset()
239 g.reset(); // doesn't reset the input_node_body to initial state, and doesn't in test_reset()
H A Dtest_eh_flow_graph.cpp964 g.reset(); in run_one_buffer_node_test()
972 g.reset(); in run_one_buffer_node_test()
1099 g.reset(); in run_one_sequencer_node_test()
1105 g.reset(); in run_one_sequencer_node_test()
1223 g.reset(); in run_one_priority_queue_node_test()
1229 g.reset(); in run_one_priority_queue_node_test()
1374 g.reset(); in execute_test()
1608 g.reset(); in run_one_limiter_node_test()
1616 g.reset(); in run_one_limiter_node_test()
1852 g.reset(); in run_one_indexer_node_test()
[all …]
H A Dtest_flow_graph_priorities.cpp410 execution_tracker_t() { reset(); } in execution_tracker_t()
411 void reset() { in reset() function
538 exec_tracker.reset(); in test()
577 (*my_inner_arena)->execute( [&inner_graph]{ inner_graph.reset(); } ); in operator ()()
609 outer_arena.execute( [&outer_graph]{ outer_graph.reset(); } ); in test_in_arena()
818 g.reset(); in test()
H A Dtest_task.cpp67 static void reset() { in reset() function in CountingTask
111 test_context.reset(); in test_cancellation_on_exception()
119 task.reset(); in test_cancellation_on_exception()
156 CountingTask<>::reset();
194 task_type::reset();
252 task_type::reset();
294 task_type::reset();
/oneTBB/test/conformance/
H A Dconformance_graph.cpp38 g.reset(rf_reset_protocol); in test_continue_node_rf_reset_protocol()
62 g.reset(oneapi::tbb::flow::rf_reset_protocol); in test_input_node_rf_reset_protocol()
80 g.reset(oneapi::tbb::flow::rf_reset_protocol); in test_functional_nodes_rf_reset_protocol()
97 g.reset(oneapi::tbb::flow::rf_reset_protocol); in test_buffering_nodes_rf_reset_protocol()
116 g.reset(oneapi::tbb::flow::rf_reset_bodies); in test_nodes_with_body_rf_reset_bodies()
138 g.reset(oneapi::tbb::flow::rf_reset_protocol); in test_limiter_node_rf_reset_protocol()
155 g.reset(oneapi::tbb::flow::rf_reset_protocol); in test_join_node_rf_reset_protocol()
225 g.reset(oneapi::tbb::flow::rf_clear_edges);
270 g.reset(rf_reset_bodies);
289 g.reset();
H A Dconformance_task_group_context.cpp51 ctx.reset();
/oneTBB/src/tbbmalloc/
H A Dtbbmalloc_internal.h215 void reset() { for (unsigned i=0; i<SZ; i++) mask[i].store(0, std::memory_order_relaxed); } in reset() function
256 void reset() { head = nullptr; } in reset() function
284 void reset();
524 void reset() {
594 bool reset() {
595 loc.reset();
596 allLocalCaches.reset();
597 orphanedBlocks.reset();
599 backend.reset();
606 loc.reset();
[all …]
H A Dbackend.h152 void reset() { in reset() function
180 void reset();
190 void reset() { bins.reset(); } in reset() function
344 void reset();
H A Dfrontend.cpp105 void reset();
280 bool reset();
371 void reset();
915 void BootStrapBlocks::reset() in reset() function in rml::internal::BootStrapBlocks
1062 block->reset(); in returnEmptyBlock()
1111 bool MemoryPool::reset() in reset() function in rml::internal::MemoryPool
1118 bootStrapBlocks.reset(); in reset()
1120 if (!extMemPool.reset()) in reset()
1616 void OrphanedBlocks::reset() in reset() function in rml::internal::OrphanedBlocks
1711 void Block::reset() in reset() function in rml::internal::Block
[all …]
H A Dlarge_objects.h134 void reset() { usedSz = cachedSz = 0; } in reset() function
269 void reset();
351 void reset();
/oneTBB/doc/main/tbb_userguide/
H A Duse_graph_reset.rst3 Use graph::reset() to Reset a Canceled Graph
14 re-execute or restart a graph, you first need to reset the graph:
25 g.reset();
H A Dattach_flow_graph_to_arena.rst26 the ``graph::reset()`` function. It reinitializes and reattaches the ``graph`` to
27 the task arena instance, inside which the ``graph::reset()`` method is executed.
H A DFlow-Graph-exception-tips.rst9 optionally reset the graph so that it can be re-executed.
/oneTBB/examples/parallel_reduce/pi/
H A Dpi.cpp50 gc.reset(new tbb::global_control(tbb::global_control::max_allowed_parallelism, p)); in threading()
54 gc.reset(); in ~threading()
/oneTBB/include/oneapi/tbb/
H A Dqueuing_mutex.h50 void reset() { in reset() function
130 reset(); in release()
138 reset(); in release()
H A Dtask_group.h67 TBB_EXPORT void __TBB_EXPORTED_FUNC reset(d1::task_group_context&);
365 void reset() { in reset() function
366 r1::reset(actual_context()); in reset()
508 context().reset(); in internal_run_and_wait()
525 context().reset(); in internal_run_and_wait()
586 context().reset(); in wait()
/oneTBB/src/tbb/
H A Dparallel_pipeline.cpp100 void reset() { in reset() function
299 task_info::reset(); in stage_task()
313 void reset() { in reset() function in tbb::detail::r1::stage_task
314 task_info::reset(); in reset()
360 reset(); in execute_filter()
408 reset(); in execute_filter()
H A Dthread_control_monitor.h68 void reset() override { in reset() function
69 base_type::reset(); in reset()
H A Dconcurrent_monitor.h121 virtual void reset() { in reset() function
176 void reset() override { in reset() function
177 base_type::reset(); in reset()
210 node.reset(); in prepare_wait()
/oneTBB/include/oneapi/tbb/detail/
H A D_flow_graph_item_buffer_impl.h237 void reset() { clean_up_buffer(/*reset_pointers*/true); grow_my_array(initial_buffer_size); } in reset() function
252 void reset() {my_reserved = false; item_buffer<T,A>::reset(); } in reset() function
H A D_flow_graph_impl.h288 my_context->reset(); in wait_for_all()
296 my_context->reset(); // consistent with behavior in catch() in wait_for_all()
325 void reset(reset_flags f = rf_reset_protocol);
/oneTBB/doc/main/tbb_userguide/snippets/
H A Dflow_graph_examples.cpp60 g.reset(); in flow_graph_attach_to_arena_2()

123