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.cpp307 if (opts.max_blocks_per_chunk == 0) in unsynchronized_pool_resource()
309 else if (opts.max_blocks_per_chunk < __min_blocks_per_chunk) in unsynchronized_pool_resource()
311 else if (opts.max_blocks_per_chunk > __max_blocks_per_chunk) in unsynchronized_pool_resource()
314 __options_max_blocks_per_chunk_ = opts.max_blocks_per_chunk; in unsynchronized_pool_resource()
326 p.max_blocks_per_chunk = __options_max_blocks_per_chunk_; in options()
381 size_t max_blocks_per_chunk = in do_allocate() local
384 if (chunk_size_in_blocks > max_blocks_per_chunk) in do_allocate()
385 chunk_size_in_blocks = max_blocks_per_chunk; in do_allocate()
/freebsd/contrib/llvm-project/libcxx/include/__memory_resource/
H A Dpool_options.h28 size_t max_blocks_per_chunk = 0; member