Home
last modified time | relevance | path

Searched refs:ExpandPool (Results 1 – 2 of 2) sorted by relevance

/device/google/cuttlefish/common/libs/utils/
Dunique_resource_allocator.h114 std::vector<T> ExpandPool(std::vector<T> another_pool) { in ExpandPool() function
128 std::vector<T> ExpandPool(T&& t) { in ExpandPool() function
131 return ExpandPool(std::move(pool_to_add)); in ExpandPool()
134 std::vector<T> ExpandPool(const T& t) { in ExpandPool() function
137 return ExpandPool(std::move(pool_to_add)); in ExpandPool()
Dunique_resource_allocator_test.cpp190 allocator->ExpandPool(std::vector<unsigned>{2, 4, 6, 8, 12, 14}); in TEST()