Lines Matching refs:pod_array
25 class pod_array {
28 ~pod_array() in ~pod_array()
32 pod_array() : m_size(0), m_capacity(0), m_array(0) {} in pod_array() function
33 pod_array(unsigned cap, unsigned extra_tail = 0);
34 pod_array(const pod_array<T>&);
35 const pod_array<T>& operator = (const pod_array<T>&);
104 void pod_array<T>::capacity(unsigned cap, unsigned extra_tail) in capacity()
119 void pod_array<T>::allocate(unsigned size, unsigned extra_tail) in allocate()
125 void pod_array<T>::resize(unsigned new_size) in resize()
138 template<class T> pod_array<T>::pod_array(unsigned cap, unsigned extra_tail) : in pod_array() function
140 template<class T> pod_array<T>::pod_array(const pod_array<T>& v) : in pod_array() function
147 template<class T> const pod_array<T>&
148 pod_array<T>::operator = (const pod_array<T>&v)