Lines Matching refs:Allocator
67 template <typename T, typename Allocator>
226 template <typename T, typename Allocator = tbb::cache_aligned_allocator<T>>
228 …: private segment_table<T, Allocator, concurrent_vector<T, Allocator>, embedded_table_num_segments>
230 using self_type = concurrent_vector<T, Allocator>;
231 using base_type = segment_table<T, Allocator, self_type, embedded_table_num_segments>;
233 friend class segment_table<T, Allocator, self_type, embedded_table_num_segments>;
252 static_assert(std::is_same<T, typename Allocator::value_type>::value,
254 using allocator_traits_type = tbb::detail::allocator_traits<Allocator>;
264 using allocator_type = Allocator;
1055 template <typename T, typename Allocator>
1056 void swap(concurrent_vector<T, Allocator> &lhs, in swap()
1057 concurrent_vector<T, Allocator> &rhs) in swap()
1062 template <typename T, typename Allocator>
1063 bool operator==(const concurrent_vector<T, Allocator> &lhs,
1064 const concurrent_vector<T, Allocator> &rhs)
1070 template <typename T, typename Allocator>
1071 bool operator!=(const concurrent_vector<T, Allocator> &lhs,
1072 const concurrent_vector<T, Allocator> &rhs)
1079 template <typename T, typename Allocator>
1080 tbb::detail::synthesized_three_way_result<typename concurrent_vector<T, Allocator>::value_type>
1081 operator<=>(const concurrent_vector<T, Allocator> &lhs,
1082 const concurrent_vector<T, Allocator> &rhs)
1091 template <typename T, typename Allocator>
1092 bool operator<(const concurrent_vector<T, Allocator> &lhs,
1093 const concurrent_vector<T, Allocator> &rhs)
1098 template <typename T, typename Allocator>
1099 bool operator<=(const concurrent_vector<T, Allocator> &lhs,
1100 const concurrent_vector<T, Allocator> &rhs)
1105 template <typename T, typename Allocator>
1106 bool operator>(const concurrent_vector<T, Allocator> &lhs,
1107 const concurrent_vector<T, Allocator> &rhs)
1112 template <typename T, typename Allocator>
1113 bool operator>=(const concurrent_vector<T, Allocator> &lhs,
1114 const concurrent_vector<T, Allocator> &rhs)