Home
last modified time | relevance | path

Searched refs:m4 (Results 1 – 3 of 3) sorted by relevance

/oneTBB/doc/main/tbb_userguide/
H A Duse_nested_flow_graphs.rst46 function_node< int, int > m4( h, unlimited, []( int j ) -> int {
47 cout << "m4: " << j << "\n";
52 make_edge( m2, m4 );
53 make_edge( m3, m4 );
88 function_node< int, int > m4( h, unlimited, []( int j ) -> int {
89 cout << "m4: " << j << "\n";
94 make_edge( m2, m4 );
95 make_edge( m3, m4 );
/oneTBB/test/conformance/
H A Dconformance_concurrent_unordered_map.cpp152 … TMap m4(v.begin(), v.end(), 4, degenerate_hash<int>(), std::less<int>(), custom_allocator_type{}); in test_deduction_guides() local
153 static_assert(std::is_same<decltype(m4), TMap<int, std::string, degenerate_hash<int>, in test_deduction_guides()
H A Dconformance_concurrent_hash_map.cpp1114 TMap m4(v.begin(), v.end(), allocator); in TestDeductionGuides() local
1115 static_assert(std::is_same<decltype(m4), TMap<Key, Value, DefaultCompare, Allocator>>::value); in TestDeductionGuides()
1138 TMap m10(m4, allocator); in TestDeductionGuides()
1139 static_assert(std::is_same<decltype(m10), decltype(m4)>::value); in TestDeductionGuides()
1146 TMap m12(std::move(m4), allocator); in TestDeductionGuides()
1147 static_assert(std::is_same<decltype(m12), decltype(m4)>::value); in TestDeductionGuides()