Searched defs:Matrix44 (Results 1 – 4 of 4) sorted by relevance
584 struct Matrix44 struct586 typedef int Element_Type;587 enum { NUM_ROWS = 4, NUM_COLS = 4 };589 Element_Type v[NUM_ROWS][NUM_COLS];591 inline int rows() const { return NUM_ROWS; } in rows()592 inline int cols() const { return NUM_COLS; } in cols()594 inline const Element_Type & at(int r, int c) const { return v[r][c]; } in at()595 inline Element_Type & at(int r, int c) { return v[r][c]; } in at()597 inline Matrix44() { } in Matrix44() argument599 inline Matrix44& operator += (const Matrix44& a) in operator +=()[all …]
43 template<class T> class Matrix44; variable
91 …trix11::Flags&RowMajorBit)?16:4*PacketSize,(Matrix11::Flags&RowMajorBit)?4*PacketSize:16> Matrix44; in run() typedef
813 DEF_TEST(Matrix44, reporter) { in DEF_TEST() argument