Searched refs:pod_allocator (Results 1 - 8 of 8) sorted by relevance

/haiku/headers/libs/agg/
H A Dagg_gamma_lut.h48 pod_allocator<LoResT>::deallocate(m_inv_gamma, hi_res_size);
49 pod_allocator<HiResT>::deallocate(m_dir_gamma, gamma_size);
54 m_dir_gamma(pod_allocator<HiResT>::allocate(gamma_size)),
55 m_inv_gamma(pod_allocator<LoResT>::allocate(hi_res_size))
71 m_dir_gamma(pod_allocator<HiResT>::allocate(gamma_size)),
72 m_inv_gamma(pod_allocator<LoResT>::allocate(hi_res_size))
H A Dagg_array.h112 ~pod_array() { pod_allocator<T>::deallocate(m_array, m_size); }
116 m_array(pod_allocator<T>::allocate(size)),
121 m_array(pod_allocator<T>::allocate(v.m_size)),
131 pod_allocator<T>::deallocate(m_array, m_size);
132 m_array = pod_allocator<T>::allocate(m_size = size);
167 ~pod_vector() { pod_allocator<T>::deallocate(m_array, m_capacity); }
225 pod_allocator<T>::deallocate(m_array, m_capacity);
227 m_array = m_capacity ? pod_allocator<T>::allocate(m_capacity) : 0;
248 T* data = pod_allocator<T>::allocate(new_size);
250 pod_allocator<
[all...]
H A Dagg_rendering_buffer_dynarow.h79 pod_allocator<int8u>::deallocate((int8u*)m_rows[i].ptr, m_byte_width);
110 int8u* p = pod_allocator<int8u>::allocate(m_byte_width);
H A Dagg_font_cache_manager.h144 pod_allocator<font_cache*>::deallocate(m_fonts, m_max_fonts);
149 m_fonts(pod_allocator<font_cache*>::allocate(max_fonts)),
H A Dagg_rasterizer_cells_aa.h135 pod_allocator<cell_type>::deallocate(*ptr, cell_block_size);
138 pod_allocator<cell_type*>::deallocate(m_cells, m_max_blocks);
474 pod_allocator<cell_type*>::allocate(m_max_blocks +
480 pod_allocator<cell_type*>::deallocate(m_cells, m_max_blocks);
487 pod_allocator<cell_type>::allocate(cell_block_size);
H A Dagg_scanline_storage_aa.h86 pod_allocator<T>::deallocate(m_extra_storage[i].ptr,
105 s.ptr = pod_allocator<T>::allocate(num_cells);
146 dst.ptr = pod_allocator<T>::allocate(dst.len);
H A Dagg_path_storage.h93 pod_allocator<T>::deallocate(
99 pod_allocator<T*>::deallocate(m_coord_blocks, m_max_blocks * 2);
304 pod_allocator<T*>::allocate((m_max_blocks + block_pool) * 2);
319 pod_allocator<T*>::deallocate(m_coord_blocks, m_max_blocks * 2);
326 pod_allocator<T>::allocate(block_size * 2 +
H A Dagg_basics.h35 //------------------------------------------------------------pod_allocator
36 template<class T> struct pod_allocator struct in namespace:agg

Completed in 183 milliseconds