Home | History | Annotate | Download | only in functional

Lines Matching full:m_array

58 									VecArrayAccess	(const void* ptr) : m_array((tcu::Vector<T, Size>*)ptr) {}
61 const tcu::Vector<T, Size>& operator[] (size_t offset) const { return m_array[offset]; }
62 tcu::Vector<T, Size>& operator[] (size_t offset) { return m_array[offset]; }
65 tcu::Vector<T, Size>* m_array;