Home
last modified time | relevance | path

Searched refs:_buf_ptr (Results 1 – 4 of 4) sorted by relevance

/external/libxcam/xcore/
Dsmart_buffer_priv.cpp38 return _buf_ptr.ptr (); in is_valid()
53 SmartPtr<VideoBuffer> _buf_ptr; member in XCam::SmartBufferPriv
60 this->_buf_ptr = buf; in SmartBufferPriv()
112 XCAM_ASSERT (buf->_buf_ptr.ptr ()); in buf_map()
113 return buf->_buf_ptr->map (); in buf_map()
120 XCAM_ASSERT (buf->_buf_ptr.ptr ()); in buf_unmap()
121 buf->_buf_ptr->unmap (); in buf_unmap()
128 XCAM_ASSERT (buf->_buf_ptr.ptr ()); in buf_get_fd()
129 return buf->_buf_ptr->get_fd (); in buf_get_fd()
137 XCAM_ASSERT (buf->_buf_ptr.ptr ()); in buf_get_bo()
[all …]
/external/libxcam/modules/soft/
Dsoft_image.h50 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()
[all …]
/external/libxcam/modules/ocl/
Dcl_video_buffer.cpp29 : _buf_ptr (NULL) in CLVideoBufferData()
49 if (_buf_ptr) in map()
50 return _buf_ptr; in map()
53 XCamReturn ret = _buf->enqueue_map ((void*&) _buf_ptr, 0, size); in map()
60 return _buf_ptr; in map()
66 if (!_buf_ptr) in unmap()
69 XCamReturn ret = _buf->enqueue_unmap ((void*&) _buf_ptr); in unmap()
76 _buf_ptr = NULL; in unmap()
Dcl_video_buffer.h60 uint8_t *_buf_ptr;