Lines Matching refs:alloc
283 explicit concurrent_vector( const allocator_type& alloc ) noexcept in concurrent_vector() argument
284 : base_type(alloc) in concurrent_vector()
288 const allocator_type& alloc = allocator_type() )
289 : concurrent_vector(alloc) in concurrent_vector() argument
298 explicit concurrent_vector( size_type count, const allocator_type& alloc = allocator_type() )
299 : concurrent_vector(alloc) in concurrent_vector() argument
309 …concurrent_vector( InputIterator first, InputIterator last, const allocator_type& alloc = allocato…
310 : concurrent_vector(alloc) in concurrent_vector() argument
329 concurrent_vector( const concurrent_vector& other, const allocator_type& alloc ) in concurrent_vector() argument
330 : base_type(other, alloc) {} in concurrent_vector()
336 concurrent_vector( concurrent_vector&& other, const allocator_type& alloc ) in concurrent_vector() argument
337 : base_type(std::move(other), alloc) in concurrent_vector()
341 const allocator_type& alloc = allocator_type() )
342 : concurrent_vector(init.begin(), init.end(), alloc)
934 allocator_type alloc(base_type::get_allocator()); in destroy_elements()
936 …allocator_traits_type::destroy(alloc, &base_type::template internal_subscript</*allow_out_of_range… in destroy_elements()