Lines Matching refs:Cols

623 template <typename T, int Rows, int Cols>
624 tcu::Matrix<T, Rows, Cols> matrixCompMult (const tcu::Matrix<T, Rows, Cols>& a, const tcu::Matrix<T… in matrixCompMult()
626 tcu::Matrix<T, Rows, Cols> retVal; in matrixCompMult()
629 for (int c = 0; c < Cols; ++c) in matrixCompMult()
637 template <typename T, int Rows, int Cols>
638 tcu::Matrix<T, Cols, Rows> outerProduct (const tcu::Vector<T, Cols>& a, const tcu::Vector<T, Rows>&… in outerProduct()
640 tcu::Matrix<T, Rows, Cols> retVal; in outerProduct()
643 for (int c = 0; c < Cols; ++c) in outerProduct()
830 template <typename T, int Rows, int Cols>
831 tcu::Matrix<T, Rows, Cols> negate (const tcu::Matrix<T, Rows, Cols>& mat) in negate()
833 tcu::Matrix<T, Rows, Cols> retVal; in negate()
836 for (int c = 0; c < Cols; ++c) in negate()
844 template <typename T, int Rows, int Cols>
845 tcu::Matrix<T, Rows, Cols> increment (const tcu::Matrix<T, Rows, Cols>& mat) in increment()
847 tcu::Matrix<T, Rows, Cols> retVal; in increment()
850 for (int c = 0; c < Cols; ++c) in increment()
856 template <typename T, int Rows, int Cols>
857 tcu::Matrix<T, Rows, Cols> decrement (const tcu::Matrix<T, Rows, Cols>& mat) in decrement()
859 tcu::Matrix<T, Rows, Cols> retVal; in decrement()
862 for (int c = 0; c < Cols; ++c) in decrement()
1319 template <int Cols, int Rows>
1320 void writeMatrixConstructor (std::ostream& str, const tcu::Matrix<float, Rows, Cols>& m) in writeMatrixConstructor()
1322 if (Rows == Cols) in writeMatrixConstructor()
1323 str << "mat" << Cols; in writeMatrixConstructor()
1325 str << "mat" << Cols << "x" << Rows; in writeMatrixConstructor()
1328 for (int colNdx = 0; colNdx < Cols; colNdx++) in writeMatrixConstructor()