Home | History | Annotate | Download | only in common

Lines Matching full:subindex

42 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 >= 0 && subIndex < SUB_BUFFER_MAX)
59 return mSize[subIndex];
63 buffer_handle_t GrallocBufferMapperBase::getKHandle(int subIndex)
65 if (subIndex >= 0 && subIndex < SUB_BUFFER_MAX)
66 return mKHandle[subIndex];