Searched defs:const_matrix (Results 1 - 3 of 3) sorted by relevance

/external/eigen/test/
H A Dcorners.cpp14 VERIFY_IS_EQUAL(const_matrix.A, const_matrix.B);
26 const MatrixType const_matrix = MatrixType::Random(rows,cols); local
49 const MatrixType const_matrix = MatrixType::Random(); local
82 VERIFY_IS_EQUAL((const_matrix.template topLeftCorner<r,c>()), (const_matrix.template block<r,c>(0,0)));
83 VERIFY_IS_EQUAL((const_matrix.template topRightCorner<r,c>()), (const_matrix.template block<r,c>(0,cols-c)));
84 VERIFY_IS_EQUAL((const_matrix.template bottomLeftCorner<r,c>()), (const_matrix
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_idct.c57 * if (i == 0) const_matrix[i][j] = 1.0f / sqrtf(8.0f);
58 * else const_matrix[i][j] = sqrtf(2.0f / 8.0f) * cosf((2 * j + 1) * i * M_PI / (2.0f * 8.0f));
60 static const uint32_t const_matrix[8][8] = { variable
734 f[i * pitch + j] = ((const float (*)[8])const_matrix)[j][i] * scale;
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_idct.c57 * if (i == 0) const_matrix[i][j] = 1.0f / sqrtf(8.0f);
58 * else const_matrix[i][j] = sqrtf(2.0f / 8.0f) * cosf((2 * j + 1) * i * M_PI / (2.0f * 8.0f));
60 static const uint32_t const_matrix[8][8] = { variable
734 f[i * pitch + j] = ((const float (*)[8])const_matrix)[j][i] * scale;

Completed in 505 milliseconds