| /oneTBB/test/common/ |
| H A D | concurrent_unordered_common.h | 174 for (auto it = lst.begin(); it != lst.end();) { in CustomExamine() 211 c1.insert(lst.begin(), lst.end()); in TypeTester() 219 auto it = lst.begin(); in TypeTester() 221 c2.insert(it, lst.end()); in TypeTester() 224 it = lst.begin(); in TypeTester() 230 it = lst.begin(); in TypeTester() 245 Table c4(lst.size()); in TypeTester() 246 c4.insert(lst.begin(), lst.end()); in TypeTester() 251 c4_alloc.insert(lst.begin(), lst.end()); in TypeTester() 256 c4_hash_alloc.insert(lst.begin(), lst.end()); in TypeTester() [all …]
|
| H A D | concurrent_ordered_common.h | 218 c1.insert(lst.begin(), lst.end()); 219 Examine<DefCtorPresent>(c1, lst); 224 auto it = lst.begin(); 229 c2.insert(it, lst.end()); 230 Examine<DefCtorPresent>(c2, lst); 234 c2_alloc.insert(it, lst.end()); 244 Examine<DefCtorPresent>(c3, lst); 252 c4.insert(lst.begin(), lst.end()); 253 Examine<DefCtorPresent>(c4, lst); 257 c5.insert(lst.begin(), lst.end()); [all …]
|
| H A D | concurrent_associative_common.h | 1110 : my_lst(lst), my_marks(marks) 1142 std::cout << "\t" << lst.size() << std::endl; 1147 std::for_each(lst.begin(), lst.end(), CheckValue<DefCtorPresent, Table>(c)); 1149 std::vector<detail::atomic_type<bool>> marks(lst.size()); 1151 TestRange<value_type>(lst, marks).do_test_range(c.begin(), c.end()); 1157 TestRange<value_type>(lst, marks).do_test_range(c.begin(), c.end()); 1160 tbb::parallel_for(c.range(), TestRange<value_type>(lst, marks)); 1167 auto begin5 = lst.begin(); 1169 c2.insert(lst.begin(), begin5); 1173 REQUIRE(c2.size() == lst.size()); [all …]
|
| /oneTBB/test/tbb/ |
| H A D | test_concurrent_hash_map.cpp | 207 std::for_each( lst.begin(), lst.end(), cv ); in Examine() 237 std::for_each( lst.begin(), lst.end(), check_value<default_construction_present,Table>(c2) ); in Examine() 264 c1.insert( lst.begin(), lst.end() ); in TypeTester() 271 c2.insert( it, lst.end() ); in TypeTester() 276 c3.insert( it, lst.end() ); in TypeTester() 281 c4.insert( it, lst.end()); in TypeTester() 292 c6.insert( lst.begin(), lst.end() ); in TypeTester() 298 ch_map c8( lst.size() ); in TypeTester() 299 c8.insert( lst.begin(), lst.end() ); in TypeTester() 302 c9.insert( lst.begin(), lst.end() ); in TypeTester() [all …]
|
| H A D | test_concurrent_unordered_set.cpp | 71 void check( const std::list<ValueType>& lst ) { in check() 72 …fCtorPresent, tbb::concurrent_unordered_set<ValueType, std::hash<ValueType>, utils::IsEqual>>(lst); in check() 73 …Present, tbb::concurrent_unordered_multiset<ValueType, std::hash<ValueType>, utils::IsEqual>>(lst); in check()
|
| H A D | test_concurrent_set.cpp | 65 void check( const std::list<ValueType>& lst ) { in check() 66 TypeTester<DefCtorPresent, tbb::concurrent_set<ValueType>>(lst); in check() 67 TypeTester<DefCtorPresent, tbb::concurrent_multiset<ValueType>>(lst); in check()
|
| H A D | test_concurrent_map.cpp | 80 void check( const std::list<ValueType>& lst ) { in check() 84 TypeTester<DefCtorPresent, tbb::concurrent_map<key_type, mapped_type>>(lst); in check() 85 TypeTester<DefCtorPresent, tbb::concurrent_multimap<key_type, mapped_type>>(lst); in check()
|
| H A D | test_concurrent_unordered_map.cpp | 87 void check( const std::list<ValueType>& lst ) { in check() 91 … TypeTester<DefCtorPresent, table_type<tbb::concurrent_unordered_map, key_type, mapped_type>>(lst); in check() 92 …Tester<DefCtorPresent, table_type<tbb::concurrent_unordered_multimap, key_type, mapped_type>>(lst); in check()
|
| /oneTBB/src/tbb/ |
| H A D | concurrent_monitor.h | 74 inline void flush_to( circular_doubly_linked_list_with_sentinel& lst ) { in flush_to() argument 77 lst.count.store(l_count, std::memory_order_relaxed); in flush_to() 78 lst.head.next = head.next; in flush_to() 79 lst.head.prev = head.prev; in flush_to() 80 head.next->prev = &lst.head; in flush_to() 81 head.prev->next = &lst.head; in flush_to()
|
| /oneTBB/ |
| H A D | .gitattributes | 17 *.lst text 26 *export.lst text
|
| /oneTBB/python/tbb/ |
| H A D | pool.py | 622 lst = [r.get(0) for r in self._results] 626 self._to_notify._set_value(lst)
|