Home | History | Annotate | Download | only in Support

Lines Matching defs:chunk_type

101   typedef ChunkType                             chunk_type;
137 { chunk_type::construct(pPtr, pValue); }
145 { chunk_type::construct(pPtr); }
150 { chunk_type::destroy(pPtr); }
158 if (0 == N || N > chunk_type::size())
164 size_type rest_num_elem = chunk_type::size() - m_pCurrent->bound;
179 if (chunk_type::size() == m_pCurrent->bound)
191 N > chunk_type::size() ||
214 pPtr <= &(m_pCurrent->data[chunk_type::size()-1]))
222 pPtr <= &(m_pCurrent->data[chunk_type::size()-1]))
235 chunk_type *cur = m_pRoot, *prev;
256 m_pRoot = new chunk_type();
258 m_AllocatedNum += chunk_type::size();
261 inline chunk_type *getNewChunk() {
262 chunk_type *result = new chunk_type();
265 m_AllocatedNum += chunk_type::size();
270 chunk_type *m_pRoot;
271 chunk_type *m_pCurrent;