/usr/lib/gcc/x86_64-redhat-linux/11/../../../../include/c++/11/ext/new_allocator.h: 111 - 147
--------------------------------------------------------------------------------

111: 	if (__builtin_expect(__n > this->_M_max_size(), false))
112: 	  {
113: 	    // _GLIBCXX_RESOLVE_LIB_DEFECTS
114: 	    // 3190. allocator::allocate sometimes returns too little storage
115: 	    if (__n > (std::size_t(-1) / sizeof(_Tp)))
116: 	      std::__throw_bad_array_new_length();
117: 	    std::__throw_bad_alloc();
[...]
127: 	return static_cast<_Tp*>(::operator new(__n * sizeof(_Tp)));
[...]
145: 	::operator delete(__p
146: #if __cpp_sized_deallocation
147: 			  , __t * sizeof(_Tp)
/beegfs/hackathon/users/eoseret/qaas_runs_test/178-654-6841/intel/miniqmc/build/miniqmc/src/Numerics/OhmmsPETE/OhmmsVector.h: 182 - 302
--------------------------------------------------------------------------------

182:   {
183:     static_assert(std::is_same<value_type, typename Alloc::value_type>::value,
184:                   "Vector and Alloc data types must agree!");
185:     if (nLocal > nAllocated)
186:       throw std::runtime_error("Resize not allowed on Vector constructed by initialized memory.");
187: 
188:     if (n > nAllocated)
[...]
195:       if (n > nLocal)
196:         qmc_allocator_traits<Alloc>::fill_n(X + nLocal, n - nLocal, val);
197:       nLocal = n;
198:     }
199:     return;
[...]
296:     if (nAllocated)
297:     {
298:       mAllocator.deallocate(X, nAllocated);
299:     }
300:     X          = mAllocator.allocate(n);
301:     nLocal     = n;
302:     nAllocated = n;
/usr/lib/gcc/x86_64-redhat-linux/11/../../../../include/c++/11/bits/stl_algobase.h: 923 - 924
--------------------------------------------------------------------------------

923:       for (; __first != __last; ++__first)
924: 	*__first = __tmp;
