Searched defs:subIndex (Results 1 - 5 of 5) sorted by relevance

/hardware/intel/img/hwcomposer/merrifield/ips/common/
H A DGrallocBufferMapperBase.cpp42 uint32_t GrallocBufferMapperBase::getGttOffsetInPage(int subIndex) const
44 if (subIndex >= 0 && subIndex < SUB_BUFFER_MAX)
45 return mGttOffsetInPage[subIndex];
49 void* GrallocBufferMapperBase::getCpuAddress(int subIndex) const
51 if (subIndex >=0 && subIndex < SUB_BUFFER_MAX)
52 return mCpuAddress[subIndex];
56 uint32_t GrallocBufferMapperBase::getSize(int subIndex) const
58 if (subIndex >
63 getKHandle(int subIndex) argument
[all...]
H A DTTMBufferMapper.h34 uint32_t getGttOffsetInPage(int subIndex) const {
37 void* getCpuAddress(int subIndex) const {
40 uint32_t getSize(int subIndex) const {
43 buffer_handle_t getKHandle(int subIndex) { argument
46 buffer_handle_t getFbHandle(int subIndex) { argument
/hardware/intel/img/hwcomposer/moorefield_hdmi/ips/common/
H A DGrallocBufferMapperBase.cpp42 uint32_t GrallocBufferMapperBase::getGttOffsetInPage(int subIndex) const
44 if (subIndex >= 0 && subIndex < SUB_BUFFER_MAX)
45 return mGttOffsetInPage[subIndex];
49 void* GrallocBufferMapperBase::getCpuAddress(int subIndex) const
51 if (subIndex >=0 && subIndex < SUB_BUFFER_MAX)
52 return mCpuAddress[subIndex];
56 uint32_t GrallocBufferMapperBase::getSize(int subIndex) const
58 if (subIndex >
63 getKHandle(int subIndex) argument
[all...]
/hardware/intel/img/hwcomposer/merrifield/ips/tangier/
H A DTngGrallocBufferMapper.cpp196 buffer_handle_t TngGrallocBufferMapper::getKHandle(int subIndex) argument
198 buffer_handle_t ret = GrallocBufferMapperBase::getKHandle(subIndex);
199 if (subIndex == 0 && ret == 0) {
201 return mKHandle[subIndex];
229 buffer_handle_t TngGrallocBufferMapper::getFbHandle(int subIndex) argument
237 if (subIndex < 0 || subIndex >= SUB_BUFFER_MAX) {
252 return (buffer_handle_t)vaddr[subIndex];
/hardware/intel/img/hwcomposer/moorefield_hdmi/ips/tangier/
H A DTngGrallocBufferMapper.cpp196 uint32_t TngGrallocBufferMapper::getKHandle(int subIndex) argument
198 uint32_t ret = GrallocBufferMapperBase::getKHandle(subIndex);
199 if (subIndex == 0 && ret == 0) {
201 return mKHandle[subIndex];
229 uint32_t TngGrallocBufferMapper::getFbHandle(int subIndex) argument
237 if (subIndex < 0 || subIndex >= SUB_BUFFER_MAX) {
252 return (uint32_t)vaddr[subIndex];

Completed in 201 milliseconds