Searched refs:m_capacity (Results 1 – 5 of 5) sorted by relevance
89 private int m_capacity; field in ExpandedNameTable121 m_capacity = m_initialCapacity; in ExpandedNameTable()122 m_threshold = (int)(m_capacity * m_loadFactor); in ExpandedNameTable()123 m_table = new HashEntry[m_capacity]; in ExpandedNameTable()193 int index = hash % m_capacity; in getExpandedTypeID()213 index = hash % m_capacity; in getExpandedTypeID()247 int oldCapacity = m_capacity; in rehash()251 m_capacity = newCapacity; in rehash()
32 pod_array() : m_size(0), m_capacity(0), m_array(0) {} in pod_array()39 return m_capacity; in capacity()100 unsigned m_capacity; variable111 m_capacity = 0; in capacity()112 } else if(full_cap > m_capacity) { in capacity()115 m_capacity = full_cap; in capacity()128 if(new_size > m_capacity) { in resize()139 m_size(0), m_capacity(cap + extra_tail), m_array(FX_Alloc(T, m_capacity)) {} in pod_array()142 m_capacity(v.m_capacity), in pod_array()143 m_array(v.m_capacity ? FX_Alloc(T, v.m_capacity) : 0) in pod_array()
11 private int m_capacity = 2; field in NestedStaticFactoryTest31 this.m_capacity=capacity; in NestedStaticFactoryTest()40 assertTrue((m_capacity == 1 && m_loadFactor == 0.1f) || in verify()41 m_capacity == 10 && m_loadFactor == 0.5f); in verify()
11 private int m_capacity = 2; field in NestedFactoryTest31 this.m_capacity=capacity; in NestedFactoryTest()40 assertTrue((m_capacity == 1 && m_loadFactor == 0.1f) || in verify()41 m_capacity == 10 && m_loadFactor == 0.5f); in verify()
108 deUintptr m_capacity; //!< Number of allocated elements in the array. member in de::PoolArray229 , m_capacity (0) in PoolArray()294 if (capacity >= m_capacity) in reserve()326 deUintptr pageTableNdx = m_capacity >> ELEMENTS_PER_PAGE_LOG2; in reserve()352 m_capacity = pageTableNdx << ELEMENTS_PER_PAGE_LOG2; in reserve()353 DE_ASSERT(m_capacity >= newCapacity); in reserve()