Home
last modified time | relevance | path

Searched refs:pod_array (Results 1 – 18 of 18) sorted by relevance

/haiku/headers/libs/agg/
H A Dagg_gsv_text.h91 pod_array<char> m_text_buf;
94 pod_array<char> m_loaded_font;
H A Dagg_span_allocator.h47 pod_array<color_type> m_span;
H A Dagg_scanline_p.h168 pod_array<cover_type> m_covers;
170 pod_array<span> m_spans;
319 pod_array<cover_type> m_covers;
H A Dagg_bspline.h69 pod_array<double> m_am;
H A Dagg_scanline_u.h232 pod_array<cover_type> m_covers;
233 pod_array<span> m_spans;
445 pod_array<cover_type> m_covers;
H A Dagg_rendering_buffer_dynarow.h132 pod_array<row_data> m_rows; // Pointers to each row of the buffer
H A Dagg_array.h106 template<class T> class pod_array
110 typedef pod_array<T> self_type;
112 ~pod_array() { pod_allocator<T>::deallocate(m_array, m_size); } in ~pod_array()
113 pod_array() : m_array(0), m_size(0) {} in pod_array() function
115 pod_array(unsigned size) : in pod_array() function
120 pod_array(const self_type& v) : in pod_array() function
H A Dagg_rendering_buffer.h151 pod_array<T*> m_rows; // Pointers to each row of the buffer
H A Dagg_scanline_bin.h138 pod_array<span> m_spans;
H A Dagg_pixfmt_amask_adaptor.h234 pod_array<cover_type> m_span;
H A Dagg_image_filters.h94 pod_array<int16> m_weight_array;
H A Dagg_renderer_outline_image.h192 pod_array<color_type> m_data;
H A Dagg_renderer_outline_aa.h1335 pod_array<value_type> m_profile;
/haiku/src/servers/app/drawing/Painter/
H A Dagg_scanline_u_subpix.h128 pod_array<cover_type> m_covers;
129 pod_array<span> m_spans;
H A Dagg_scanline_u_subpix_avrg_filtering.h157 pod_array<cover_type> m_covers;
158 pod_array<span> m_spans;
H A Dagg_scanline_p_subpix.h157 pod_array<cover_type> m_covers;
159 pod_array<span> m_spans;
H A Dagg_scanline_p_subpix_avrg_filtering.h185 pod_array<cover_type> m_covers;
187 pod_array<span> m_spans;
/haiku/src/libs/agg/src/
H A Dagg_bspline.cpp102 pod_array<double> al(n1); in prepare()