Home
last modified time | relevance | path

Searched refs:m_allocated (Results 1 – 5 of 5) sorted by relevance

/third_party/boost/boost/container/detail/
Dnode_pool_impl.hpp83 , m_allocated(0) in private_node_pool_impl()
132 m_allocated += n; in allocate_nodes()
216 BOOST_ASSERT(m_allocated==0); in purge_blocks()
237 std::swap(m_allocated, other.m_allocated); in swap()
290 ++m_allocated; in priv_alloc_node()
301 BOOST_ASSERT(m_allocated>0); in priv_dealloc_node()
302 --m_allocated; in priv_dealloc_node()
365 size_type m_allocated; //Used nodes for debugging member in boost::container::dtl::private_node_pool_impl
/third_party/boost/boost/interprocess/mem_algo/
Drbtree_best_fit.hpp115 size_type m_allocated : 1; member
123 { this->m_size = 0; this->m_allocated = 0, this->m_prev_allocated = 0; } in block_ctrl()
157 size_type m_allocated; member
404 end_block->m_allocated = 1; in priv_add_segment()
448 m_header.m_allocated = 0; in rbtree_best_fit()
492 new_end_block->m_allocated = 1; in grow()
512 m_header.m_allocated += (size_type)new_block->m_size*Alignment; in grow()
578 new_end_block->m_allocated = 1; in shrink_to_fit()
599 return m_header.m_size - m_header.m_allocated - in get_free_memory()
623 return m_header.m_allocated == 0 && in all_memory_deallocated()
[all …]
/third_party/boost/boost/interprocess/mem_algo/detail/
Dsimple_seq_fit_impl.hpp117 size_type m_allocated; member
325 m_header.m_allocated = 0; in simple_seq_fit_impl()
369 m_header.m_allocated += new_block->m_size*Alignment; in grow()
401 if(!m_header.m_allocated){ in shrink_to_fit()
423 m_header.m_allocated -= last->m_size*Alignment; in shrink_to_fit()
466 m_header.m_allocated += new_block->m_size*Alignment; in priv_add_segment()
480 return m_header.m_size - m_header.m_allocated - in get_free_memory()
501 return m_header.m_allocated == 0 && in all_memory_deallocated()
550 if(m_header.m_allocated > m_header.m_size){ in check_sanity()
719 m_header.m_allocated += needs_backwards + BlockCtrlBytes; in priv_expand_both_sides()
[all …]
/third_party/vk-gl-cts/modules/glshared/
DglsMemoryStressCase.cpp809 m_allocated.reserve(m_iterationCount); in MemoryStressCase()
861 m_allocated.push_back(allocator.getObjectCount()); in iterate()
886 int min = m_allocated[0]; in iterate()
887 int max = m_allocated[0]; in iterate()
891 for (int allocNdx = 0; allocNdx < (int)m_allocated.size(); allocNdx++) in iterate()
893 min = deMin32(m_allocated[allocNdx], min); in iterate()
894 max = deMax32(m_allocated[allocNdx], max); in iterate()
DglsMemoryStressCase.hpp71 std::vector<int> m_allocated; member in deqp::gls::MemoryStressCase