Home
last modified time | relevance | path

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

/hardware/intel/img/hwcomposer/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/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/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.h34 uint32_t getKHandle(int subIndex);
35 uint32_t getFbHandle(int subIndex);