Lines Matching refs:int8u
30 const int8u* ptr;
32 row_data(int x1_, int x2_, const int8u* ptr_) : in row_data()
38 int8u* ptr;
41 span_data(int x_, unsigned len_, int8u* ptr_) : in span_data()
57 rendering_buffer(int8u* buf, unsigned width, unsigned height, int stride) : in rendering_buffer()
67 void attach(int8u* buf, unsigned width, unsigned height, int stride) in attach()
75 m_rows = FX_Alloc(int8u*, m_max_height = height); in attach()
77 int8u* row_ptr = m_buf; in attach()
81 int8u** rows = m_rows; in attach()
87 int8u* buf() in buf()
91 const int8u* buf() const in buf()
113 int8u* row(unsigned y) in row()
117 const int8u* row(unsigned y) const in row()
121 int8u* next_row(void* p) in next_row()
123 return (int8u*)p + m_stride; in next_row()
125 const int8u* next_row(const void* p) const in next_row()
127 return (int8u*)p + m_stride; in next_row()
129 int8u const* const* rows() const in rows()
137 int8u* m_buf;
138 int8u** m_rows;