Home
last modified time | relevance | path

Searched refs:front (Results 1 – 21 of 21) sorted by relevance

/oneTBB/test/tbb/
H A Dtest_arena_constraints.cpp103 .set_numa_id(tbb::info::numa_nodes().front())
104 .set_core_type(tbb::info::core_types().front())
195 c.set_numa_id(tbb::info::numa_nodes().front());
198 c.set_core_type(tbb::info::core_types().front());
H A Dtest_resumable_tasks.cpp75 tag = async->m_tagQueue.front(); in asyncLoop()
223 tag = async->m_tagQueue.front(); in asyncLoop()
H A Dtest_eh_algorithms.cpp781 return iterator{&my_array.front()}; in begin()
784 return iterator{&my_array.front()}; in begin()
H A Dtest_flow_graph_priorities.cpp224 item = q.front(); in try_pop()
H A Dtest_concurrent_vector.cpp294 REQUIRE( utils::IsEqual()(cvcr.front(), *(c2.rend()-1)) ); in Examine()
H A Dtest_async_node.cpp295 item = m_queue.front(); in try_pop()
/oneTBB/src/tbb/
H A Dconcurrent_monitor.h52 inline base_node* front() const { return head.next; } in front() function
290 n = my_waitset.front(); in notify_one_relaxed()
332 for (base_node* n = temp.front(); n != end; n = n->next) { in notify_all_relaxed()
338 for (base_node* n = temp.front(); n != end; n=nxt) { in notify_all_relaxed()
380 for (base_node* n=temp.front(); n != end; n = nxt) { in notify_relaxed()
439 for (base_node* n = temp.front(); n != end; n = n->next) { in abort_all_relaxed()
445 for (base_node* n = temp.front(); n != end; n = nxt) { in abort_all_relaxed()
H A Dtask_stream.h124 d1::task* result = queue.front(); in get_item()
/oneTBB/include/oneapi/tbb/detail/
H A D_flow_graph_item_buffer_impl.h127 const item_type& front() const in front() function
205 v = this->front(); in pop_front()
259 v = this->front(); in reserve_front()
H A D_flow_graph_node_impl.h33 const T& front() const { in front() function
34 return this->item_buffer<T, A>::front(); in front()
176 new_task = create_body_task(my_queue->front()); in perform_queued_requests()
H A D_flow_graph_cache_impl.h80 T *v = my_q.front(); in internal_pop()
H A D_flow_graph_join_impl.h426 *(current->my_arg) = this->front();
939 *(current->my_output) = this->front();
/oneTBB/doc/main/tbb_userguide/
H A Dappendix_A.rst47 bumper" waiting for the preempted thread in front to resume driving.
H A DConcurrent_Queue_Classes.rst26 item = MySerialQueue.front();
/oneTBB/include/oneapi/tbb/
H A Dpartitioner.h238 T& front() { in front() function
443 start.offer_work( range_pool.front(), range_pool.front_depth(), ed ); in work_balance()
H A Dconcurrent_vector.h445 reference front() { in front() function
449 const_reference front() const { in front() function
H A Dflow_graph.h1514 graph_task *new_task = this->my_successors.try_put_task(this->front()); in try_put_and_add_task()
/oneTBB/test/tbbmalloc/
H A Dtest_malloc_whitebox.cpp952 while (!objects.empty() && (intptr_t)(currTime - objects.front()) > threshold) { in doCleanup()
954 cacheBinModel.lastCleanedAge = objects.front(); in doCleanup()
958 … cacheBinModel.oldest.store(objects.empty() ? 0 : objects.front(), std::memory_order_relaxed); in doCleanup()
/oneTBB/doc/
H A DDoxyfile.in7 # front of the TAG it is preceding.
317 # be prevented in individual cases by putting a % sign in front of the word or
1129 # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1331 # file. You can add a path in front of the file if the result should not be
1673 # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1844 # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1909 # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1953 # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1981 # front of it.
/oneTBB/test/common/
H A Dcontainer_move_support.h368 arena_data(reinterpret_cast<T*>(&storage.front()), storage.size()), in ArenaAllocatorFixture()
/oneTBB/test/conformance/
H A Dconformance_concurrent_vector.cpp115 REQUIRE( (*cp == v.front()) ); in TestSequentialFor()