Home
last modified time | relevance | path

Searched refs:vector_type (Results 1 – 4 of 4) sorted by relevance

/oneTBB/test/tbb/
H A Dtest_concurrent_vector.cpp404 vector_type vector; in TestConcurrentOperationsWithUnSafeOperations()
612 vector_type vector;
623 vector_type copy_of_vector(vector);
624 vector_type copy_of_copy(copy_of_vector);
625 vector_type assigned_vector;
642 vector_type vec1(42, 42.); in __anon5f703c9f0702()
648 vector_type vec2(list.begin(), list.end()); in __anon5f703c9f0802()
654 vector_type src_vec(42, 42.);
658 vector_type vec3(src_vec, allocator_type{}); in __anon5f703c9f0902()
680 vector_type vec1{};
[all …]
/oneTBB/include/oneapi/tbb/
H A Dconcurrent_vector.h42 using vector_type = Vector; variable
46 using size_type = typename vector_type::size_type;
47 using difference_type = typename vector_type::difference_type;
71 vector_iterator( const vector_type& vector, size_type index, value_type* item = nullptr )
72 : my_vector(const_cast<vector_type*>(&vector)), my_index(index), my_item(item) in my_vector()
79 vector_iterator( const vector_iterator<vector_type, typename vector_type::value_type>& other ) in vector_iterator() argument
83 …vector_iterator& operator=( const vector_iterator<vector_type, typename vector_type::value_type>& …
129 if (vector_type::is_first_element_in_segment(my_index)) {
150 if (vector_type::is_first_element_in_segment(my_index)) {
169 vector_type* my_vector;
H A Dconcurrent_priority_queue.h426 using vector_type = std::vector<value_type, allocator_type>; variable
427 vector_type data;
/oneTBB/test/conformance/
H A Dconformance_concurrent_vector.cpp783 using vector_type = oneapi::tbb::concurrent_vector<int>; in TestParallelFor() typedef
784 vector_type v; in TestParallelFor()
790 const vector_type& u = v; in TestParallelFor()
1065 using vector_type = fixture_type::container_type; in test_ex_move_assignment_memory_failure() typedef
1072 vector_type victim(arena_allocator_fixture.allocator); in test_ex_move_assignment_memory_failure()
1095 using vector_type = fixture_type::container_type; in test_ex_move_assignment_element_ctor_exception() typedef
1101 vector_type victim(arena_allocator_fixture.allocator); in test_ex_move_assignment_element_ctor_exception()
1407 using vector_type = oneapi::tbb::concurrent_vector<int>; in TestVectorIteratorComparisons() typedef
1408 vector_type vec = {1, 2, 3, 4, 5}; in TestVectorIteratorComparisons()
1409 TestVectorIteratorComparisonsBasic<typename vector_type::iterator>(vec); in TestVectorIteratorComparisons()
[all …]