Home
last modified time | relevance | path

Searched refs:HashSetWithArenaAllocator (Results 1 – 5 of 5) sorted by relevance

/external/google-fruit/include/fruit/impl/util/
Dhash_helpers.defn.h37 inline HashSetWithArenaAllocator<T> createHashSetWithArenaAllocator(size_t capacity, MemoryPool& me… in createHashSetWithArenaAllocator()
38 …return HashSetWithArenaAllocator<T>(capacity, std::hash<T>(), std::equal_to<T>(), ArenaAllocator<T… in createHashSetWithArenaAllocator()
42 inline HashSetWithArenaAllocator<T, Hasher, EqualityComparator>
45 …return HashSetWithArenaAllocator<T, Hasher, EqualityComparator>(capacity, hasher, equality_compara… in createHashSetWithArenaAllocatorAndCustomFunctors()
Dhash_helpers.h44 using HashSetWithArenaAllocator = boost::unordered_set<T, Hasher, EqualityComparator, ArenaAllocato… variable
59 using HashSetWithArenaAllocator = std::unordered_set<T, Hasher, EqualityComparator, ArenaAllocator<…
78 HashSetWithArenaAllocator<T> createHashSetWithArenaAllocator(size_t capacity, MemoryPool& memory_po…
81 HashSetWithArenaAllocator<T, Hasher, EqualityComparator>
/external/google-fruit/include/fruit/impl/normalized_component_storage/
Dnormalized_component_storage.h79 …using LazyComponentWithNoArgsSet = HashSetWithArenaAllocator<LazyComponentWithNoArgs, HashLazyComp…
82HashSetWithArenaAllocator<LazyComponentWithArgs, HashLazyComponentWithArgs, LazyComponentWithArgsE…
/external/google-fruit/include/fruit/impl/data_structures/
Dsemistatic_graph.templates.h87HashSetWithArenaAllocator<NodeId> node_ids = createHashSetWithArenaAllocator<NodeId>(last - first,… in SemistaticGraph()
98 using itr_t = typename HashSetWithArenaAllocator<NodeId>::iterator; in SemistaticGraph()
/external/google-fruit/src/
Dbinding_normalization.cpp390 HashSetWithArenaAllocator<TypeId> binding_compressions_to_undo = in normalizeBindingsAndAddTo()