Searched refs:element_type (Results 1 – 7 of 7) sorted by relevance
| /oneTBB/include/oneapi/tbb/detail/ |
| H A D | _flow_graph_tagged_buffer_impl.h | 54 typedef element_type *list_array_type; // array we manage manually 66 element_type* free_list; 75 *p_free_list = (element_type *)&(la[0]); in set_up_free_list() 109 for( element_type* op = pointer_array[i]; op; op = (element_type *)(op->second)) { in grow_array() 135 element_type* my_elem = p_free_list; p_free_list = (element_type *)(p_free_list->second); in internal_insert_with_key() 152 element_type *p_next; in internal_free_buffer() 153 for( element_type *p = pa[i]; p; p = p_next) { in internal_free_buffer() 154 p_next = (element_type *)p->second; in internal_free_buffer() 217 for(element_type* p = pointer_array[i]; p; p = (element_type *)(p->second)) { in find_ref_with_key() 240 element_type* prev = nullptr; in delete_with_key() [all …]
|
| /oneTBB/test/common/ |
| H A D | initializer_list_support.h | 69 using element_type = typename ContainerType::value_type; in test_initializer_list_support() local 70 std::vector<element_type> test_seq(init); in test_initializer_list_support()
|
| H A D | container_move_support.h | 421 using element_type = typename Allocator::value_type; member 422 …using container_value_type = typename ContainerTraits::template container_value_type<element_type>; 424 …using container_type = typename ContainerTraits::template container_type<element_type, allocator_t…
|
| /oneTBB/test/conformance/ |
| H A D | conformance_concurrent_hash_map.cpp | 417 template<typename container_type, typename element_type> 418 static void test( std::initializer_list<element_type> il, container_type const& expected ) { in test() 426 template<typename container_type, typename element_type> 427 static void test( std::initializer_list<element_type> il, container_type const& expected ) { in test() 428 container_type vd(il, tbb::tbb_allocator<std::pair<element_type, element_type>>{}); in test() 585 template<typename element_type, typename allocator_type> 587 …using type = oneapi::tbb::concurrent_hash_map<element_type, element_type, hash_compare<element_typ…
|
| H A D | conformance_concurrent_vector.cpp | 589 template<typename container_type, typename element_type> 590 …static void test( std::initializer_list<element_type> const& il, container_type const& expected ) { in test() 673 template<typename element_type, typename allocator_type> 675 using type = oneapi::tbb::concurrent_vector<element_type, allocator_type >; 680 template<typename element_type, typename allocator_type, typename iterator> 681 …static bool equal(oneapi::tbb::concurrent_vector<element_type, allocator_type > const& c, iterator… in equal()
|
| /oneTBB/test/tbb/ |
| H A D | test_concurrent_vector.cpp | 91 template<typename element_type, typename allocator_type> 93 using type = tbb::concurrent_vector<element_type, allocator_type >; 98 template<typename element_type, typename allocator_type, typename iterator> 99 …static bool equal(tbb::concurrent_vector<element_type, allocator_type > const& c, iterator begin, … in equal()
|
| H A D | test_concurrent_hash_map.cpp | 508 template<typename element_type, typename allocator_type> 510 …using type = tbb::concurrent_hash_map<element_type, element_type, hash_compare<element_type>, allo…
|