Home
last modified time | relevance | path

Searched refs:hash_compare (Results 1 – 9 of 9) sorted by relevance

/oneTBB/include/oneapi/tbb/detail/
H A D_hash_compare.h29 class hash_compare {
35 hash_compare() = default;
36 hash_compare( hasher hash, key_equal equal ) : my_hasher(hash), my_equal(equal) {} in hash_compare() function
94 concept hash_compare = std::copy_constructible<HashCompare> &&
H A D_flow_graph_body_impl.h57 __TBB_requires(tbb::detail::hash_compare<KHash, K>)
/oneTBB/test/tbb/
H A Dtest_join_node_preview.cpp45 class hash_compare { in jn_follows_and_precedes() class
51 …<msg_t, tbb::flow::join_node<JoinOutputType, tbb::flow::key_matching<msg_t, hash_compare>>, tbb::f… in jn_follows_and_precedes()
61 <msg_t, tbb::flow::join_node<JoinOutputType, tbb::flow::key_matching<msg_t, hash_compare>>> in jn_follows_and_precedes()
H A Dtest_concurrent_hash_map.cpp492 struct hash_compare { struct
503 using container_type = tbb::concurrent_hash_map<T, T, hash_compare<T>, Allocator>;
510 …using type = tbb::concurrent_hash_map<element_type, element_type, hash_compare<element_type>, allo…
861 using namespace test_concepts::hash_compare;
/oneTBB/include/oneapi/tbb/
H A Dconcurrent_hash_map.h461 __TBB_requires(tbb::detail::hash_compare<HashCompare, Key> &&
465 __TBB_requires(tbb::detail::hash_compare<HashCompare, Key>)
578 __TBB_requires(tbb::detail::hash_compare<HashCompare, Key> && in __TBB_requires()
582 __TBB_requires(tbb::detail::hash_compare<HashCompare, Key>) in __TBB_requires()
H A Dconcurrent_unordered_set.h33 using hash_compare_type = hash_compare<key_type, Hash, KeyEqual>;
H A Dconcurrent_unordered_map.h34 using hash_compare_type = hash_compare<Key, Hash, KeyEqual>;
/oneTBB/test/conformance/
H A Dconformance_concurrent_hash_map.cpp569 struct hash_compare { struct
580 using container_type = oneapi::tbb::concurrent_hash_map<T, T, hash_compare<T>, Allocator>;
587 …using type = oneapi::tbb::concurrent_hash_map<element_type, element_type, hash_compare<element_typ…
/oneTBB/test/common/
H A Dconcepts_common.h419 namespace hash_compare {