Home
last modified time | relevance | path

Searched refs:SemistaticMap (Results 1 – 7 of 7) sorted by relevance

/external/google-fruit/include/fruit/impl/data_structures/
Dsemistatic_map.h41 class SemistaticMap {
89 SemistaticMap() = default;
97 SemistaticMap(Iter begin, Iter end, std::size_t num_values, MemoryPool& memory_pool);
104 SemistaticMap(const SemistaticMap<Key, Value>& map,
107 SemistaticMap(SemistaticMap&&) noexcept = default;
108 SemistaticMap(const SemistaticMap&) = delete;
110 ~SemistaticMap();
112 SemistaticMap& operator=(SemistaticMap&&) noexcept = default;
113 SemistaticMap& operator=(const SemistaticMap&) = delete;
Dsemistatic_map.templates.h43 SemistaticMap<Key, Value>::SemistaticMap( in SemistaticMap() function
96 SemistaticMap<Key, Value>::SemistaticMap(const SemistaticMap<Key, Value>& map, in SemistaticMap() function
137 void SemistaticMap<Key, Value>::insert(std::size_t h, const value_type* elems_begin, const value_ty… in insert()
161 const Value& SemistaticMap<Key, Value>::at(Key key) const { in at()
172 const Value* SemistaticMap<Key, Value>::find(Key key) const { in find()
183 typename SemistaticMap<Key, Value>::NumBits SemistaticMap<Key, Value>::pickNumBits(std::size_t n) { in pickNumBits()
193 SemistaticMap<Key, Value>::~SemistaticMap() {} in ~SemistaticMap()
Dsemistatic_map.defn.h26 inline SemistaticMap<Key, Value>::HashFunction::HashFunction() : a(0), shift(0) {} in HashFunction()
29 inline typename SemistaticMap<Key, Value>::Unsigned SemistaticMap<Key, Value>::HashFunction::hash(U… in hash()
34 inline typename SemistaticMap<Key, Value>::Unsigned SemistaticMap<Key, Value>::hash(const Key& key)… in hash()
Dsemistatic_graph.templates.h99 node_index_map = SemistaticMap<NodeId, InternalNodeId>( in SemistaticGraph()
180 node_index_map = SemistaticMap<NodeId, InternalNodeId>(x.node_index_map, std::move(node_ids)); in SemistaticGraph()
Dsemistatic_graph.h67 SemistaticMap<NodeId, InternalNodeId> node_index_map;
/external/google-fruit/src/
Dsemistatic_map.cpp29 template class SemistaticMap<TypeId, SemistaticGraphInternalNodeId>; variable
/external/google-fruit/tests/
Dtest_common.cpp30 template class SemistaticMap<int, SemistaticGraphInternalNodeId>; variable