Lines Matching refs:Rows
12231 template <int Cols, int Rows>
12232 static tcu::Matrix<glw::GLdouble, Rows, Cols> outerProduct(const tcu::Vector<glw::GLdouble, Rows>& left,
12252 template <typename T, int Rows, int Cols>
12253 static tcu::Matrix<T, Cols, Rows> transpose(const tcu::Matrix<T, Rows, Cols>& matrix);
12551 template <int Cols, int Rows>
12552 static tcu::Matrix<glw::GLdouble, Rows, Cols> outerProduct(const tcu::Vector<glw::GLdouble, Rows>& left,
12555 tcu::Matrix<glw::GLdouble, Rows, 1> left_mat;
12557 tcu::Matrix<glw::GLdouble, Rows, Cols> result;
12559 for (glw::GLuint i = 0; i < Rows; ++i)
12664 template <typename T, int Rows, int Cols>
12665 static tcu::Matrix<T, Cols, Rows> transpose(const tcu::Matrix<T, Rows, Cols>& matrix)
12667 tcu::Matrix<T, Cols, Rows> result = tcu::transpose(matrix);
13012 template <int Cols, int Rows>
13013 class pack<tcu::Matrix<glw::GLdouble, Rows, Cols> >
13016 static void set(glw::GLvoid* buffer, const tcu::Matrix<glw::GLdouble, Rows, Cols>& in)
13022 for (glw::GLint row = 0; row < Rows; ++row)
13024 glw::GLint index = column * Rows + row;
13052 template <int Cols, int Rows>
13053 class unpack<tcu::Matrix<glw::GLdouble, Rows, Cols> >
13056 static void get(const glw::GLvoid* buffer, tcu::Matrix<glw::GLdouble, Rows, Cols>& out)
13062 for (glw::GLint row = 0; row < Rows; ++row)
13064 glw::GLint index = column * Rows + row;