Lines Matching defs:Matrix
45 // gemmlowp itself doesn't have a Matrix class, only a MatrixMap class,
49 class Matrix : public MatrixMap<tScalar, tOrder> {
62 Matrix() : Map(nullptr, 0, 0, 0) {}
64 Matrix(int rows, int cols) : Map(nullptr, 0, 0, 0) { Resize(rows, cols); }
66 Matrix(const Matrix& other) : Map(nullptr, 0, 0, 0) { *this = other; }
68 Matrix& operator=(const Matrix& other) {
74 friend bool operator==(const Matrix& a, const Matrix& b) {
111 typedef Matrix<std::uint8_t, MapOrder::RowMajor> LhsType;
112 typedef Matrix<std::uint8_t, MapOrder::ColMajor> RhsType;
113 typedef Matrix<std::uint8_t, MapOrder::ColMajor> ResultType;
163 typedef Matrix<std::uint8_t, MapOrder::RowMajor> LhsType;
164 typedef Matrix<std::uint8_t, MapOrder::ColMajor> RhsType;
165 typedef Matrix<std::int32_t, MapOrder::ColMajor> ResultType;