Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/src/
H A Dmemory_resource.cpp280 if (align > alignof(std::max_align_t) || bytes > (size_t(1) << __num_fixed_pools_)) in __pool_index()
281 return __num_fixed_pools_; in __pool_index()
316 __num_fixed_pools_ = 1; in unsynchronized_pool_resource()
320 __num_fixed_pools_ += 1; in unsynchronized_pool_resource()
327 p.largest_required_pool_block = __pool_block_size(__num_fixed_pools_ - 1); in options()
334 const int n = __num_fixed_pools_; in release()
337 __res_->deallocate(__fixed_pools_, __num_fixed_pools_ * sizeof(__fixed_pool), alignof(__fixed_pool)); in release()
352 if (i == __num_fixed_pools_) in do_allocate()
357 (__fixed_pool*)__res_->allocate(__num_fixed_pools_ * sizeof(__fixed_pool), alignof(__fixed_pool)); in do_allocate()
359 __fixed_pool* last = __fixed_pools_ + __num_fixed_pools_; in do_allocate()
[all...]
/freebsd/contrib/llvm-project/libcxx/include/__memory_resource/
H A Dunsynchronized_pool_resource.h96 int __num_fixed_pools_; variable