Lines Matching refs:index
61 const nn::drivers::ro::SectionInfo* GetSection(int index) const in GetSection() argument
63 if( (0 <= index) && (index < m_NumSections) ) in GetSection()
65 return &m_pSectionTable[index]; in GetSection()
88 uptr GetAddress(int index, u32 offset) const in GetAddress() argument
90 if( ! ((0 <= index) && (index < m_NumSections)) ) in GetAddress()
95 const nn::drivers::ro::SectionInfo& section = m_pSectionTable[index]; in GetAddress()
122 uptr GetReferedAddress(int index, u32 offset) const in GetReferedAddress() argument
124 if( ! ((0 <= index) && (index < m_NumSections)) ) in GetReferedAddress()
129 const nn::drivers::ro::SectionInfo& section = m_pSectionTable[index]; in GetReferedAddress()
155 T GetPointer(int index, u32 offset) const in GetPointer() argument
157 return reinterpret_cast<T>(GetAddress(index, offset)); in GetPointer()