/third_party/boost/boost/container/ |
D | adaptive_pool.hpp | 186 size_type limit_size, in allocation_command() argument 190 … pointer ret = this->priv_allocation_command(command, limit_size, prefer_in_recvd_out_size, reuse); in allocation_command() 323 (allocation_type command, std::size_t limit_size in priv_allocation_command() argument 328 if(BOOST_UNLIKELY(limit_size > this->max_size() || preferred_size > this->max_size())){ in priv_allocation_command() 331 std::size_t l_size = limit_size*sizeof(T); in priv_allocation_command() 490 size_type limit_size, in allocation_command() argument 494 … pointer ret = this->priv_allocation_command(command, limit_size, prefer_in_recvd_out_size, reuse); in allocation_command() 583 (allocation_type command, std::size_t limit_size in priv_allocation_command() argument 588 if(BOOST_UNLIKELY(limit_size > this->max_size() || preferred_size > this->max_size())){ in priv_allocation_command() 591 std::size_t l_size = limit_size*sizeof(T); in priv_allocation_command()
|
D | allocator.hpp | 221 size_type limit_size, in allocation_command() argument 228 … pointer ret = this->priv_allocation_command(command, limit_size, prefer_in_recvd_out_size, reuse); in allocation_command() 341 (allocation_type command, std::size_t limit_size in priv_allocation_command() argument 347 if((limit_size > this->max_size()) | (preferred_size > this->max_size())){ in priv_allocation_command() 350 std::size_t l_size = limit_size*sizeof(T); in priv_allocation_command()
|
D | node_allocator.hpp | 190 …(allocation_type command, size_type limit_size, size_type &prefer_in_recvd_out_size, pointer &reus… in allocation_command() argument 193 … pointer ret = this->priv_allocation_command(command, limit_size, prefer_in_recvd_out_size, reuse); in allocation_command() 314 (allocation_type command, std::size_t limit_size in priv_allocation_command() argument 320 if((limit_size > this->max_size()) | (preferred_size > this->max_size())){ in priv_allocation_command() 323 std::size_t l_size = limit_size*sizeof(T); in priv_allocation_command()
|
D | vector.hpp | 387 … size_type limit_size, size_type &prefer_in_recvd_out_size, pointer &reuse) in allocation_command() 390 …return this->priv_allocation_command(alloc_version(), command, limit_size, prefer_in_recvd_out_siz… in allocation_command() 502 size_type limit_size, in priv_allocation_command() 510 if (limit_size > stored_size_type(-1)){ in priv_allocation_command() 520 size_type limit_size, in priv_allocation_command() 525 if (limit_size > stored_size_type(-1)){ in priv_allocation_command() 530 …pointer p = this->alloc().allocation_command(command, limit_size, prefer_in_recvd_out_size, reuse); in priv_allocation_command()
|
D | string.hpp | 317 size_type limit_size, in allocation_command() argument 326 (this->alloc(), command, limit_size, prefer_in_recvd_out_size, reuse); in allocation_command()
|
/third_party/boost/libs/interprocess/test/ |
D | expand_bwd_test_allocator.hpp | 124 size_type limit_size, size_type &prefer_in_recvd_out_size, pointer &reuse) in allocation_command() argument 129 prefer_in_recvd_out_size = limit_size; in allocation_command() 132 if((m_offset + limit_size) > m_size){ in allocation_command() 139 if(limit_size > m_size){ in allocation_command()
|
/third_party/boost/libs/container/test/ |
D | expand_bwd_test_allocator.hpp | 129 size_type limit_size,size_type &prefer_in_recvd_out_size,pointer &reuse) in allocation_command() argument 135 prefer_in_recvd_out_size = limit_size; in allocation_command() 138 if((m_offset + limit_size) > m_size){ in allocation_command() 146 if(limit_size > m_size){ in allocation_command()
|
/third_party/boost/boost/interprocess/mem_algo/detail/ |
D | simple_seq_fit_impl.hpp | 196 T *allocation_command (boost::interprocess::allocation_type command, size_type limit_size, 199 …id * raw_allocation_command (boost::interprocess::allocation_type command, size_type limit_size, 587 allocation_command (boost::interprocess::allocation_type command, size_type limit_size, in allocation_command() argument 592 (command, limit_size, prefer_in_recvd_out_size, raw_reuse, sizeof(T)); in allocation_command() 623 priv_allocation_command (boost::interprocess::allocation_type command, size_type limit_size, in priv_allocation_command() argument 633 if(limit_size > max_count || preferred_size > max_count){ in priv_allocation_command() 636 size_type l_size = limit_size*sizeof_object; in priv_allocation_command() 764 ,size_type limit_size, size_type &prefer_in_recvd_out_size, void *&reuse_ptr) in priv_allocate() argument 769 bool success = algo_impl_t::shrink(this, reuse_ptr, limit_size, prefer_in_recvd_out_size); in priv_allocate() 774 if(limit_size > preferred_size){ in priv_allocate() [all …]
|
/third_party/boost/boost/interprocess/mem_algo/ |
D | rbtree_best_fit.hpp | 240 T * allocation_command (boost::interprocess::allocation_type command, size_type limit_size, 262 …void* priv_allocation_command(boost::interprocess::allocation_type command, size_type limit_size, 268 , size_type limit_size, size_type &prefer_in_recvd_out_size 689 allocation_command (boost::interprocess::allocation_type command, size_type limit_size, in allocation_command() argument 693 …void* const ret = priv_allocation_command(command, limit_size, prefer_in_recvd_out_size, raw_reuse… in allocation_command() 724 priv_allocation_command (boost::interprocess::allocation_type command, size_type limit_size, in priv_allocation_command() argument 731 if(limit_size > max_count || preferred_size > max_count){ in priv_allocation_command() 734 size_type l_size = limit_size*sizeof_object; in priv_allocation_command() 938 ,size_type limit_size in priv_allocate() argument 947 … algo_impl_t::shrink(this, reuse_ptr, limit_size, prefer_in_recvd_out_size = preferred_size); in priv_allocate() [all …]
|
/third_party/boost/boost/container/detail/ |
D | allocator_version_traits.hpp | 63 size_type limit_size, size_type &prefer_in_recvd_out_size, pointer &reuse) in allocation_command() 64 { return a.allocation_command(command, limit_size, prefer_in_recvd_out_size, reuse); } in allocation_command()
|
/third_party/boost/boost/interprocess/allocators/ |
D | allocator.hpp | 180 … size_type limit_size, size_type &prefer_in_recvd_out_size, pointer &reuse) in allocation_command() argument 183 …pointer const p = mp_mngr->allocation_command(command, limit_size, prefer_in_recvd_out_size, reuse… in allocation_command()
|
D | cached_node_allocator.hpp | 248 … size_type limit_size, size_type &prefer_in_recvd_out_size, pointer &reuse);
|
D | cached_adaptive_pool.hpp | 276 size_type limit_size, size_type &prefer_in_recvd_out_size, pointer &reuse);
|
D | private_node_allocator.hpp | 373 size_type limit_size, size_type &prefer_in_recvd_out_size, pointer &reuse);
|
D | node_allocator.hpp | 381 size_type limit_size, size_type &prefer_in_recvd_out_size, pointer &reuse);
|
D | adaptive_pool.hpp | 396 size_type limit_size, size_type &prefer_in_recvd_out_size, pointer &reuse);
|
D | private_adaptive_pool.hpp | 396 size_type limit_size, size_type &prefer_in_recvd_out_size, pointer &reuse);
|
/third_party/boost/libs/container/src/ |
D | dlmalloc_ext_2_8_6.c | 1360 (allocation_type command, size_t sizeof_object, size_t limit_size in boost_cont_allocation_command() argument 1366 int success = boost_cont_shrink( reuse_ptr, preferred_size, limit_size in boost_cont_allocation_command() 1374 if(limit_size > preferred_size) in boost_cont_allocation_command() 1393 ( ms, command, reuse_ptr, limit_size in boost_cont_allocation_command() 1404 if(!addr) addr = mspace_malloc_lockless(ms, limit_size); in boost_cont_allocation_command() 1419 ( ms, command, reuse_ptr, limit_size in boost_cont_allocation_command()
|
/third_party/boost/boost/interprocess/detail/ |
D | managed_memory_impl.hpp | 296 T * allocation_command (boost::interprocess::allocation_type command, size_type limit_size, in allocation_command() argument 298 { return mp_header->allocation_command(command, limit_size, prefer_in_recvd_out_size, reuse); } in allocation_command()
|
/third_party/mindspore/mindspore/core/ir/ |
D | tensor.cc | 612 std::string Tensor::ToStringInternal(int limit_size) const { in ToStringInternal() 617 if (limit_size <= 0 || DataSize() < limit_size) { in ToStringInternal()
|
D | tensor.h | 275 std::string ToStringInternal(int limit_size) const;
|
/third_party/boost/boost/interprocess/allocators/detail/ |
D | allocator_common.hpp | 345 size_type limit_size, size_type &prefer_in_recvd_out_size, pointer &reuse) in allocation_command() argument 349 (command, limit_size, prefer_in_recvd_out_size, reuse_raw); in allocation_command()
|
/third_party/boost/boost/interprocess/ |
D | segment_manager.hpp | 201 T *allocation_command (boost::interprocess::allocation_type command, size_type limit_size, in allocation_command() argument 205 … (command | boost::interprocess::nothrow_allocation, limit_size, prefer_in_recvd_out_size, reuse); in allocation_command()
|
/third_party/mindspore/mindspore/_extends/graph_kernel/model/ |
D | graph_split.py | 342 def limit_area_size(self, dominant, fuse_areas, limit_size=200): argument 346 if dom_size + prod_reduce(lambda x, y: x + y, area_sizes) <= limit_size: 352 if dom_size + len(area.ops) > limit_size:
|
/third_party/boost/libs/interprocess/doc/ |
D | interprocess.qbk | 4023 , std::size_t limit_size 4037 `limit_size` must be equal or greater than the parameter `preferred_size`. 4040 the parameter `limit_size` must be equal or less than the parameter `preferred_size`. 4048 much as possible as long as this results in `size(p) <= limit_size`. Success 4049 is reported only if this results in `preferred_size <= size(p)` and `size(p) <= limit_size`. 4056 `size(p) >= limit_size`. Success is reported only if this results in `limit_size <= size(p)`. 4063 `size(new_ptr) >= limit_size`. Success is reported only if this results in 4064 `limit_size <= size(new_ptr)`. 4069 at least `limit_size` objects. 4078 If this fails, it will try to obtain `limit_size` objects using both methods if [all …]
|