Searched refs:pool_count (Results 1 – 8 of 8) sorted by relevance
/third_party/boost/libs/container/test/ |
D | pool_resource_test.hpp | 370 …BOOST_TEST(dmbr.pool_count() == (1u + bi::detail::floor_log2(maximum_size) - bi::detail::floor_log… in test_do_allocate_deallocate() 371 for(std::size_t i = 0, s = minimum_size, max = dmbr.pool_count(); i != max; ++i, s*=2){ in test_do_allocate_deallocate() 385 BOOST_TEST(mrl.m_info.size() == (1u + dmbr.pool_count() + 1u)); in test_do_allocate_deallocate() 387 BOOST_TEST(mrl.m_info.size() == (1u + dmbr.pool_count())); in test_do_allocate_deallocate() 419 …const std::size_t pool_count = 1u + bi::detail::floor_log2(maximum_size) - bi::detail::floor_log2(… in test_release() local 422 for(std::size_t i = 0, imax = pool_count, s = minimum_size; i != imax; s*=2, ++i){ in test_release() 456 …const std::size_t pool_count = 1u + bi::detail::floor_log2(maximum_size) - bi::detail::floor_log2(… in test_destructor() local 459 for(std::size_t i = 0, imax = pool_count, s = minimum_size; i != imax; s*=2, ++i){ in test_destructor()
|
/third_party/boost/libs/container/src/ |
D | unsynchronized_pool_resource.cpp | 60 std::size_t unsynchronized_pool_resource::pool_count() const in pool_count() function in boost::container::pmr::unsynchronized_pool_resource 61 { return m_resource.pool_count(); } in pool_count()
|
D | synchronized_pool_resource.cpp | 92 std::size_t synchronized_pool_resource::pool_count() const in pool_count() function in boost::container::pmr::synchronized_pool_resource 93 { return m_pool_resource.pool_count(); } in pool_count()
|
D | pool_resource.cpp | 244 std::size_t pool_resource::pool_count() const in pool_count() function in boost::container::pmr::pool_resource 257 return pool_count(); in pool_index()
|
/third_party/skia/third_party/externals/microhttpd/src/testcurl/ |
D | test_quiesce.c | 182 testGet (int type, int pool_count, int poll_flag) in testGet() argument 196 if (pool_count > 0) { in testGet() 199 MHD_OPTION_THREAD_POOL_SIZE, pool_count, MHD_OPTION_END); in testGet()
|
/third_party/boost/boost/container/pmr/ |
D | unsynchronized_pool_resource.hpp | 155 std::size_t pool_count() const;
|
D | synchronized_pool_resource.hpp | 118 std::size_t pool_count() const;
|
/third_party/boost/boost/container/detail/ |
D | pool_resource.hpp | 152 std::size_t pool_count() const;
|