Home
last modified time | relevance | path

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

/external/google-fruit/include/fruit/impl/data_structures/
Dsemistatic_map.h41 class SemistaticMap {
87 SemistaticMap() = default;
95 SemistaticMap(Iter begin, Iter end, std::size_t num_values, MemoryPool& memory_pool);
102 SemistaticMap(const SemistaticMap<Key, Value>& map,
105 SemistaticMap(SemistaticMap&&) = default;
106 SemistaticMap(const SemistaticMap&) = delete;
108 ~SemistaticMap();
110 SemistaticMap& operator=(SemistaticMap&&) = default;
111 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.cpp31 template class SemistaticMap<TypeId, SemistaticGraphInternalNodeId>; variable