Lines Matching refs:_buf_ptr
50 uint8_t *_buf_ptr;
68 xcam_free (_buf_ptr); in ~SoftImage()
86 return (_buf_ptr && _width && _height); in is_valid()
93 return (T *)(_buf_ptr + y * _pitch) + x; in get_buf_ptr()
96 return (const T *)(_buf_ptr + y * _pitch) + x; in get_buf_ptr()
100 const T *t_ptr = (const T *)(_buf_ptr + y * _pitch); in read_data_no_check()
118 const T *t_ptr = ((const T *)(_buf_ptr + y * _pitch)) + x; in read_array_no_check()
125 const T *t_ptr = ((const T *)(_buf_ptr + y * _pitch)) + x; in read_array_no_check()
138 const T *t_ptr = ((const T *)(_buf_ptr + y * _pitch)); in read_array()
150 const T *t_ptr = ((const T *)(_buf_ptr + y * _pitch)); in read_array()
166 T *t_ptr = (T *)(_buf_ptr + y * _pitch); in write_data_no_check()
172 T *t_ptr = (T *)(_buf_ptr + y * _pitch); in write_array_no_check()
184 T *t_ptr = ((T *)(_buf_ptr + y * _pitch)); in write_array()
212 : _buf_ptr (NULL) in SoftImage()
223 _buf_ptr = buf->map () + info.offsets[plane]; in SoftImage()
224 XCAM_ASSERT (_buf_ptr); in SoftImage()
235 : _buf_ptr (NULL) in SoftImage()
244 _buf_ptr = (uint8_t *)xcam_malloc (_pitch * height); in SoftImage()
245 XCAM_ASSERT (_buf_ptr); in SoftImage()
254 : _buf_ptr (NULL) in SoftImage()
261 _buf_ptr = buf->map () + offset; in SoftImage()