• Home
  • Raw
  • Download

Lines Matching refs:Rows

624 template <typename T, int Rows, int Cols>
625 tcu::Matrix<T, Rows, Cols> matrixCompMult (const tcu::Matrix<T, Rows, Cols>& a, const tcu::Matrix<T… in matrixCompMult() argument
627 tcu::Matrix<T, Rows, Cols> retVal; in matrixCompMult()
629 for (int r = 0; r < Rows; ++r) in matrixCompMult()
638 template <typename T, int Rows, int Cols>
639 tcu::Matrix<T, Cols, Rows> outerProduct (const tcu::Vector<T, Cols>& a, const tcu::Vector<T, Rows>&… in outerProduct()
641 tcu::Matrix<T, Rows, Cols> retVal; in outerProduct()
643 for (int r = 0; r < Rows; ++r) in outerProduct()
831 template <typename T, int Rows, int Cols>
832 tcu::Matrix<T, Rows, Cols> negate (const tcu::Matrix<T, Rows, Cols>& mat) in negate() argument
834 tcu::Matrix<T, Rows, Cols> retVal; in negate()
836 for (int r = 0; r < Rows; ++r) in negate()
845 template <typename T, int Rows, int Cols>
846 tcu::Matrix<T, Rows, Cols> increment (const tcu::Matrix<T, Rows, Cols>& mat) in increment() argument
848 tcu::Matrix<T, Rows, Cols> retVal; in increment()
850 for (int r = 0; r < Rows; ++r) in increment()
857 template <typename T, int Rows, int Cols>
858 tcu::Matrix<T, Rows, Cols> decrement (const tcu::Matrix<T, Rows, Cols>& mat) in decrement() argument
860 tcu::Matrix<T, Rows, Cols> retVal; in decrement()
862 for (int r = 0; r < Rows; ++r) in decrement()
1320 template <int Cols, int Rows>
1321 void writeMatrixConstructor (std::ostream& str, const tcu::Matrix<float, Rows, Cols>& m) in writeMatrixConstructor() argument
1323 if (Rows == Cols) in writeMatrixConstructor()
1326 str << "mat" << Cols << "x" << Rows; in writeMatrixConstructor()
1331 for (int rowNdx = 0; rowNdx < Rows; rowNdx++) in writeMatrixConstructor()