Home
last modified time | relevance | path

Searched refs:const_matrix (Results 1 – 2 of 2) sorted by relevance

/external/eigen/test/
Dcorners.cpp14 VERIFY_IS_EQUAL(const_matrix.A, const_matrix.B);
26 const MatrixType const_matrix = MatrixType::Random(rows,cols); in corners() local
49 const MatrixType const_matrix = MatrixType::Random(); in corners_fixedsize() local
82 …VERIFY_IS_EQUAL((const_matrix.template topLeftCorner<r,c>()), (const_matrix.template block<r,c>(0,… in corners_fixedsize()
83 …VERIFY_IS_EQUAL((const_matrix.template topRightCorner<r,c>()), (const_matrix.template block<r,c>(0… in corners_fixedsize()
84 …VERIFY_IS_EQUAL((const_matrix.template bottomLeftCorner<r,c>()), (const_matrix.template block<r,c>… in corners_fixedsize()
85 …VERIFY_IS_EQUAL((const_matrix.template bottomRightCorner<r,c>()), (const_matrix.template block<r,c… in corners_fixedsize()
87 …VERIFY_IS_EQUAL((const_matrix.template topLeftCorner<r,c>()), (const_matrix.template topLeftCorner… in corners_fixedsize()
88 …VERIFY_IS_EQUAL((const_matrix.template topRightCorner<r,c>()), (const_matrix.template topRightCorn… in corners_fixedsize()
89 …VERIFY_IS_EQUAL((const_matrix.template bottomLeftCorner<r,c>()), (const_matrix.template bottomLeft… in corners_fixedsize()
[all …]
/external/mesa3d/src/gallium/auxiliary/vl/
Dvl_idct.c60 static const uint32_t const_matrix[8][8] = { variable
725 f[i * pitch + j] = ((const float (*)[8])const_matrix)[j][i] * scale; in vl_idct_upload_matrix()