OXIESEC PANEL
- Current Dir:
/
/
usr
/
include
/
tbb
/
internal
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 06:50:34 AM
rwxr-xr-x
📄
_aggregator_impl.h
7.59 KB
06/07/2017 07:54:02 AM
rw-r--r--
📄
_concurrent_queue_impl.h
36.34 KB
06/07/2017 07:54:02 AM
rw-r--r--
📄
_concurrent_unordered_impl.h
54.2 KB
06/07/2017 07:54:02 AM
rw-r--r--
📄
_flow_graph_async_msg_impl.h
6.85 KB
06/07/2017 07:54:02 AM
rw-r--r--
📄
_flow_graph_impl.h
27.23 KB
06/07/2017 07:54:02 AM
rw-r--r--
📄
_flow_graph_indexer_impl.h
21.47 KB
06/07/2017 07:54:02 AM
rw-r--r--
📄
_flow_graph_item_buffer_impl.h
10.95 KB
06/07/2017 07:54:02 AM
rw-r--r--
📄
_flow_graph_join_impl.h
94.87 KB
06/07/2017 07:54:02 AM
rw-r--r--
📄
_flow_graph_node_impl.h
30.36 KB
06/07/2017 07:54:02 AM
rw-r--r--
📄
_flow_graph_streaming_node.h
30.41 KB
06/07/2017 07:54:02 AM
rw-r--r--
📄
_flow_graph_tagged_buffer_impl.h
9.75 KB
06/07/2017 07:54:02 AM
rw-r--r--
📄
_flow_graph_trace_impl.h
10.13 KB
06/07/2017 07:54:02 AM
rw-r--r--
📄
_flow_graph_types_impl.h
32.53 KB
06/07/2017 07:54:02 AM
rw-r--r--
📄
_mutex_padding.h
3.74 KB
06/07/2017 07:54:02 AM
rw-r--r--
📄
_range_iterator.h
2.24 KB
06/07/2017 07:54:02 AM
rw-r--r--
📄
_tbb_hash_compare_impl.h
2.98 KB
06/07/2017 07:54:02 AM
rw-r--r--
📄
_tbb_strings.h
3.21 KB
06/07/2017 07:54:02 AM
rw-r--r--
📄
_tbb_windef.h
2.31 KB
06/07/2017 07:54:02 AM
rw-r--r--
📄
_template_helpers.h
6.8 KB
06/07/2017 07:54:02 AM
rw-r--r--
📄
_x86_eliding_mutex_impl.h
4.37 KB
06/07/2017 07:54:02 AM
rw-r--r--
📄
_x86_rtm_rw_mutex_impl.h
8.14 KB
06/07/2017 07:54:02 AM
rw-r--r--
Editing: _tbb_hash_compare_impl.h
Close
/* Copyright (c) 2005-2017 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ // must be included outside namespaces. #ifndef __TBB_tbb_hash_compare_impl_H #define __TBB_tbb_hash_compare_impl_H #include <string> namespace tbb { namespace interface5 { namespace internal { // Template class for hash compare template<typename Key, typename Hasher, typename Key_equality> class hash_compare { public: typedef Hasher hasher; typedef Key_equality key_equal; hash_compare() {} hash_compare(Hasher a_hasher) : my_hash_object(a_hasher) {} hash_compare(Hasher a_hasher, Key_equality a_keyeq) : my_hash_object(a_hasher), my_key_compare_object(a_keyeq) {} size_t operator()(const Key& key) const { return ((size_t)my_hash_object(key)); } bool operator()(const Key& key1, const Key& key2) const { // TODO: get rid of the result invertion return (!my_key_compare_object(key1, key2)); } Hasher my_hash_object; // The hash object Key_equality my_key_compare_object; // The equality comparator object }; //! Hash multiplier static const size_t hash_multiplier = tbb::internal::select_size_t_constant<2654435769U, 11400714819323198485ULL>::value; } // namespace internal //! Hasher functions template<typename T> inline size_t tbb_hasher( const T& t ) { return static_cast<size_t>( t ) * internal::hash_multiplier; } template<typename P> inline size_t tbb_hasher( P* ptr ) { size_t const h = reinterpret_cast<size_t>( ptr ); return (h >> 3) ^ h; } template<typename E, typename S, typename A> inline size_t tbb_hasher( const std::basic_string<E,S,A>& s ) { size_t h = 0; for( const E* c = s.c_str(); *c; ++c ) h = static_cast<size_t>(*c) ^ (h * internal::hash_multiplier); return h; } template<typename F, typename S> inline size_t tbb_hasher( const std::pair<F,S>& p ) { return tbb_hasher(p.first) ^ tbb_hasher(p.second); } } // namespace interface5 using interface5::tbb_hasher; // Template class for hash compare template<typename Key> class tbb_hash { public: tbb_hash() {} size_t operator()(const Key& key) const { return tbb_hasher(key); } }; //! hash_compare that is default argument for concurrent_hash_map template<typename Key> struct tbb_hash_compare { static size_t hash( const Key& a ) { return tbb_hasher(a); } static bool equal( const Key& a, const Key& b ) { return a == b; } }; } // namespace tbb #endif /* __TBB_tbb_hash_compare_impl_H */