Home | History | Annotate | Download | only in test

Lines Matching defs:Matrix

48 // gemmlowp itself doesn't have a Matrix class, only a MatrixMap class,
52 class Matrix : public MatrixMap<tScalar, tOrder> {
65 Matrix() : Map(nullptr, 0, 0, 0) {}
67 Matrix(int rows, int cols) : Map(nullptr, 0, 0, 0) { Resize(rows, cols); }
69 Matrix(const Matrix& other) : Map(nullptr, 0, 0, 0) { *this = other; }
71 Matrix& operator=(const Matrix& other) {
77 friend bool operator==(const Matrix& a, const Matrix& b) {