/third_party/boost/libs/container/test/ |
D | pool_resource_test.hpp | 41 using PoolResource::do_allocate; 241 dmbr.do_allocate(1, 1); in test_do_allocate_deallocate() 245 dmbr.do_allocate(1, 1); in test_do_allocate_deallocate() 249 dmbr.do_allocate(1, 1); in test_do_allocate_deallocate() 262 void *p = dmbr.do_allocate(1, 1); in test_do_allocate_deallocate() 271 p = dmbr.do_allocate(1, 1); in test_do_allocate_deallocate() 278 void *p2 = dmbr.do_allocate(1, 1); in test_do_allocate_deallocate() 281 void *p3 = dmbr.do_allocate(1, 1); in test_do_allocate_deallocate() 307 dmbr.do_allocate(1, 1); in test_do_allocate_deallocate() 313 dmbr.do_allocate(1, 1); in test_do_allocate_deallocate() [all …]
|
D | monotonic_buffer_resource_test.cpp | 226 using monotonic_buffer_resource::do_allocate; 250 void *addr = dmbr.do_allocate(1u, 1u); in test_upstream_resource() 268 dmbr.do_allocate(1, 1); in test_do_allocate() 284 dmbr.do_allocate(4, 4); in test_do_allocate() 297 dmbr.do_allocate(4, 4); in test_do_allocate() 308 dmbr.do_allocate(remaining_storage, 2); in test_do_allocate() 320 dmbr.do_allocate(1u, 1u); in test_do_allocate() 335 dmbr.do_allocate(next_alloc, 1u); in test_do_allocate() 354 dmbr.do_allocate(dmbr.remaining_storage(1u), 1u); in test_do_allocate() 377 bufs[i] = (char*)dmbr.do_allocate(sizes[i], 1); in test_do_deallocate() [all …]
|
D | resource_adaptor_test.cpp | 140 using base_t::do_allocate; 151 void *allocate_ret = dra.do_allocate(998, 1); in test_do_allocate_deallocate() 171 void *allocate_ret = dra.do_allocate(bytes, alignment); in test_do_allocate_deallocate()
|
D | derived_from_memory_resource.hpp | 27 virtual void* do_allocate(std::size_t bytes, std::size_t alignment) in do_allocate() function in derived_from_memory_resource
|
D | memory_resource_logger.hpp | 40 virtual void* do_allocate(std::size_t bytes, std::size_t alignment) in do_allocate() function in memory_resource_logger
|
/third_party/boost/boost/container/pmr/ |
D | memory_resource.hpp | 44 { return this->do_allocate(bytes, alignment); } in allocate() 90 virtual void* do_allocate(std::size_t bytes, std::size_t alignment) = 0;
|
D | unsynchronized_pool_resource.hpp | 137 void* do_allocate(std::size_t bytes, std::size_t alignment) BOOST_OVERRIDE;
|
D | synchronized_pool_resource.hpp | 106 void* do_allocate(std::size_t bytes, std::size_t alignment) BOOST_OVERRIDE;
|
D | monotonic_buffer_resource.hpp | 163 void* do_allocate(std::size_t bytes, std::size_t alignment) BOOST_OVERRIDE;
|
D | resource_adaptor.hpp | 147 virtual void* do_allocate(std::size_t bytes, std::size_t alignment) in do_allocate() function in boost::container::pmr::resource_adaptor_imp
|
/third_party/boost/libs/container/src/ |
D | unsynchronized_pool_resource.cpp | 51 void* unsynchronized_pool_resource::do_allocate(std::size_t bytes, std::size_t alignment) //virtual in do_allocate() function in boost::container::pmr::unsynchronized_pool_resource 52 { return m_resource.do_allocate(bytes, alignment); } in do_allocate()
|
D | global_resource.cpp | 34 void* do_allocate(std::size_t bytes, std::size_t alignment) BOOST_OVERRIDE in do_allocate() function in boost::container::pmr::new_delete_resource_imp 52 void* do_allocate(std::size_t bytes, std::size_t alignment) BOOST_OVERRIDE in do_allocate() function
|
D | synchronized_pool_resource.cpp | 77 void* synchronized_pool_resource::do_allocate(std::size_t bytes, std::size_t alignment) //virtual in do_allocate() function in boost::container::pmr::synchronized_pool_resource 80 return m_pool_resource.do_allocate(bytes, alignment); in do_allocate()
|
D | monotonic_buffer_resource.cpp | 136 void* monotonic_buffer_resource::do_allocate(std::size_t bytes, std::size_t alignment) in do_allocate() function in boost::container::pmr::monotonic_buffer_resource
|
D | pool_resource.cpp | 206 void* pool_resource::do_allocate(std::size_t bytes, std::size_t alignment) //virtual in do_allocate() function in boost::container::pmr::pool_resource
|
/third_party/gettext/gettext-runtime/intl/ |
D | loadinfo.h | 120 const char *filename, int do_allocate);
|
D | l10nflist.c | 98 const char *filename, int do_allocate) in _nl_make_l10nflist() argument 249 if (retval != NULL || do_allocate == 0) in _nl_make_l10nflist()
|
/third_party/boost/boost/container/detail/ |
D | pool_resource.hpp | 134 virtual void* do_allocate(std::size_t bytes, std::size_t alignment);
|
/third_party/boost/libs/container/doc/ |
D | container.qbk | 1336 …ntainer/issues/151 GitHub #151: ['"Buffer overflow in monotonic_buffer_resource::do_allocate"]]. 1500 …://github.com/boostorg/container/pull/41 GitHub #41: ['Avoid -Wunreachable-code in do_allocate()]].
|