• Home
  • Raw
  • Download

Lines Matching refs:Cols

618 template <typename T, int Rows, int Cols>
619 tcu::Matrix<T, Rows, Cols> matrixCompMult (const tcu::Matrix<T, Rows, Cols>& a, const tcu::Matrix<T… in matrixCompMult()
621 tcu::Matrix<T, Rows, Cols> retVal; in matrixCompMult()
624 for (int c = 0; c < Cols; ++c) in matrixCompMult()
632 template <typename T, int Rows, int Cols>
633 tcu::Matrix<T, Cols, Rows> outerProduct (const tcu::Vector<T, Cols>& a, const tcu::Vector<T, Rows>&… in outerProduct()
635 tcu::Matrix<T, Rows, Cols> retVal; in outerProduct()
638 for (int c = 0; c < Cols; ++c) in outerProduct()
825 template <typename T, int Rows, int Cols>
826 tcu::Matrix<T, Rows, Cols> negate (const tcu::Matrix<T, Rows, Cols>& mat) in negate()
828 tcu::Matrix<T, Rows, Cols> retVal; in negate()
831 for (int c = 0; c < Cols; ++c) in negate()
839 template <typename T, int Rows, int Cols>
840 tcu::Matrix<T, Rows, Cols> increment (const tcu::Matrix<T, Rows, Cols>& mat) in increment()
842 tcu::Matrix<T, Rows, Cols> retVal; in increment()
845 for (int c = 0; c < Cols; ++c) in increment()
851 template <typename T, int Rows, int Cols>
852 tcu::Matrix<T, Rows, Cols> decrement (const tcu::Matrix<T, Rows, Cols>& mat) in decrement()
854 tcu::Matrix<T, Rows, Cols> retVal; in decrement()
857 for (int c = 0; c < Cols; ++c) in decrement()
1314 template <int Cols, int Rows>
1315 void writeMatrixConstructor (std::ostream& str, const tcu::Matrix<float, Rows, Cols>& m) in writeMatrixConstructor()
1317 if (Rows == Cols) in writeMatrixConstructor()
1318 str << "mat" << Cols; in writeMatrixConstructor()
1320 str << "mat" << Cols << "x" << Rows; in writeMatrixConstructor()
1323 for (int colNdx = 0; colNdx < Cols; colNdx++) in writeMatrixConstructor()