HomeSort by relevance Sort by last modified time
    Searched full:const_matrix (Results 1 - 2 of 2) sorted by null

  /external/eigen/test/
corners.cpp 14 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.template block<r,c>(rows-r,0)))
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_idct.c 57 * 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 61 milliseconds