OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:const_matrix
(Results
1 - 3
of
3
) 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
72
VERIFY_IS_EQUAL((
const_matrix
.template topLeftCorner<r,c>()), (
const_matrix
.template block<r,c>(0,0)));
73
VERIFY_IS_EQUAL((
const_matrix
.template topRightCorner<r,c>()), (
const_matrix
.template block<r,c>(0,cols-c)));
74
VERIFY_IS_EQUAL((
const_matrix
.template bottomLeftCorner<r,c>()), (
const_matrix
.template block<r,c>(rows-r,0)))
[
all
...]
/external/chromium_org/third_party/mesa/src/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;
/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 922 milliseconds