Searched refs:extra_tail (Results 1 – 1 of 1) sorted by relevance
/external/pdfium/third_party/agg23/ |
D | agg_array.h | 33 pod_array(unsigned cap, unsigned extra_tail = 0); 36 void capacity(unsigned cap, unsigned extra_tail = 0); 41 void allocate(unsigned size, unsigned extra_tail = 0); 107 void pod_array<T>::capacity(unsigned cap, unsigned extra_tail) in capacity() argument 110 unsigned full_cap = cap + extra_tail; in capacity() 122 void pod_array<T>::allocate(unsigned size, unsigned extra_tail) in allocate() argument 124 capacity(size, extra_tail); in allocate() 141 template<class T> pod_array<T>::pod_array(unsigned cap, unsigned extra_tail) : in pod_array() argument 142 m_size(0), m_capacity(cap + extra_tail), m_array(FX_Alloc(T, m_capacity)) {} in pod_array()
|