Searched refs:make_unique_n (Results 1 – 2 of 2) sorted by relevance
142 inline unique_ptr<T> make_unique_n(size_t n, ARGS&&... args);201 return make_unique_n<T>(1, std::forward<ARGS>(args)...); in make_unique()205 Allocator::unique_ptr<T> Allocator::make_unique_n(size_t n, ARGS&&... args) { in make_unique_n() function
143 ctx->counters = allocator->make_unique_n<Counter>(numCounters);