Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/src/
H A Dmemory_resource.cpp308 __options_max_blocks_per_chunk_ = __max_blocks_per_chunk; in unsynchronized_pool_resource()
311 else if (opts.max_blocks_per_chunk > __max_blocks_per_chunk) in unsynchronized_pool_resource()
312 __options_max_blocks_per_chunk_ = __max_blocks_per_chunk; in unsynchronized_pool_resource()
383 min(__max_blocks_per_chunk, __options_max_blocks_per_chunk_)); in do_allocate()
/freebsd/contrib/llvm-project/libcxx/include/__memory_resource/
H A Dunsynchronized_pool_resource.h47 static const size_t __max_blocks_per_chunk = (size_t(1) << 20); variable