Home
last modified time | relevance | path

Searched refs:subIndex (Results 1 – 11 of 11) sorted by relevance

/hardware/intel/img/hwcomposer/merrifield/ips/common/
DGrallocBufferMapperBase.cpp42 uint32_t GrallocBufferMapperBase::getGttOffsetInPage(int subIndex) const in getGttOffsetInPage()
44 if (subIndex >= 0 && subIndex < SUB_BUFFER_MAX) in getGttOffsetInPage()
45 return mGttOffsetInPage[subIndex]; in getGttOffsetInPage()
49 void* GrallocBufferMapperBase::getCpuAddress(int subIndex) const in getCpuAddress()
51 if (subIndex >=0 && subIndex < SUB_BUFFER_MAX) in getCpuAddress()
52 return mCpuAddress[subIndex]; in getCpuAddress()
56 uint32_t GrallocBufferMapperBase::getSize(int subIndex) const in getSize()
58 if (subIndex >= 0 && subIndex < SUB_BUFFER_MAX) in getSize()
59 return mSize[subIndex]; in getSize()
63 buffer_handle_t GrallocBufferMapperBase::getKHandle(int subIndex) in getKHandle() argument
[all …]
DGrallocBufferMapperBase.h34 uint32_t getGttOffsetInPage(int subIndex) const;
35 void* getCpuAddress(int subIndex) const;
36 uint32_t getSize(int subIndex) const;
37 virtual buffer_handle_t getKHandle(int subIndex);
38 virtual buffer_handle_t getFbHandle(int subIndex) = 0;
DTTMBufferMapper.h34 uint32_t getGttOffsetInPage(int subIndex) const { in getGttOffsetInPage() argument
37 void* getCpuAddress(int subIndex) const { in getCpuAddress() argument
40 uint32_t getSize(int subIndex) const { in getSize() argument
43 buffer_handle_t getKHandle(int subIndex) { in getKHandle() argument
46 buffer_handle_t getFbHandle(int subIndex) { in getFbHandle() argument
/hardware/intel/img/hwcomposer/moorefield_hdmi/ips/common/
DGrallocBufferMapperBase.cpp42 uint32_t GrallocBufferMapperBase::getGttOffsetInPage(int subIndex) const in getGttOffsetInPage()
44 if (subIndex >= 0 && subIndex < SUB_BUFFER_MAX) in getGttOffsetInPage()
45 return mGttOffsetInPage[subIndex]; in getGttOffsetInPage()
49 void* GrallocBufferMapperBase::getCpuAddress(int subIndex) const in getCpuAddress()
51 if (subIndex >=0 && subIndex < SUB_BUFFER_MAX) in getCpuAddress()
52 return mCpuAddress[subIndex]; in getCpuAddress()
56 uint32_t GrallocBufferMapperBase::getSize(int subIndex) const in getSize()
58 if (subIndex >= 0 && subIndex < SUB_BUFFER_MAX) in getSize()
59 return mSize[subIndex]; in getSize()
63 uint32_t GrallocBufferMapperBase::getKHandle(int subIndex) in getKHandle() argument
[all …]
DGrallocBufferMapperBase.h34 uint32_t getGttOffsetInPage(int subIndex) const;
35 void* getCpuAddress(int subIndex) const;
36 uint32_t getSize(int subIndex) const;
37 virtual uint32_t getKHandle(int subIndex);
38 virtual uint32_t getFbHandle(int subIndex) = 0;
/hardware/intel/img/hwcomposer/merrifield/include/
DBufferMapper.h55 virtual uint32_t getGttOffsetInPage(int subIndex) const = 0;
56 virtual void* getCpuAddress(int subIndex) const = 0;
57 virtual uint32_t getSize(int subIndex) const = 0;
58 virtual buffer_handle_t getKHandle(int subIndex) = 0;
59 virtual buffer_handle_t getFbHandle(int subIndex) = 0;
/hardware/intel/img/hwcomposer/moorefield_hdmi/include/
DBufferMapper.h55 virtual uint32_t getGttOffsetInPage(int subIndex) const = 0;
56 virtual void* getCpuAddress(int subIndex) const = 0;
57 virtual uint32_t getSize(int subIndex) const = 0;
58 virtual uint32_t getKHandle(int subIndex) = 0;
59 virtual uint32_t getFbHandle(int subIndex) = 0;
/hardware/intel/img/hwcomposer/merrifield/ips/tangier/
DTngGrallocBufferMapper.cpp193 buffer_handle_t TngGrallocBufferMapper::getKHandle(int subIndex) in getKHandle() argument
195 buffer_handle_t ret = GrallocBufferMapperBase::getKHandle(subIndex); in getKHandle()
196 if (subIndex == 0 && ret == 0) { in getKHandle()
198 return mKHandle[subIndex]; in getKHandle()
226 buffer_handle_t TngGrallocBufferMapper::getFbHandle(int subIndex) in getFbHandle() argument
234 if (subIndex < 0 || subIndex >= SUB_BUFFER_MAX) { in getFbHandle()
248 return (buffer_handle_t)vaddr[subIndex]; in getFbHandle()
DTngGrallocBufferMapper.h34 buffer_handle_t getKHandle(int subIndex);
35 buffer_handle_t getFbHandle(int subIndex);
/hardware/intel/img/hwcomposer/moorefield_hdmi/ips/tangier/
DTngGrallocBufferMapper.cpp193 uint32_t TngGrallocBufferMapper::getKHandle(int subIndex) in getKHandle() argument
195 uint32_t ret = GrallocBufferMapperBase::getKHandle(subIndex); in getKHandle()
196 if (subIndex == 0 && ret == 0) { in getKHandle()
198 return mKHandle[subIndex]; in getKHandle()
226 uint32_t TngGrallocBufferMapper::getFbHandle(int subIndex) in getFbHandle() argument
234 if (subIndex < 0 || subIndex >= SUB_BUFFER_MAX) { in getFbHandle()
248 return (uint32_t)vaddr[subIndex]; in getFbHandle()
DTngGrallocBufferMapper.h33 uint32_t getKHandle(int subIndex);
34 uint32_t getFbHandle(int subIndex);