Home
last modified time | relevance | path

Searched refs:matrix1 (Results 1 – 7 of 7) sorted by relevance

/external/eigen/demos/mix_eigen_and_c/
Dexample.c15 struct C_MatrixXd *matrix1, *matrix2, *result; in demo_MatrixXd() local
18 matrix1 = MatrixXd_new(3, 3); in demo_MatrixXd()
19 MatrixXd_set_zero(matrix1); in demo_MatrixXd()
20 MatrixXd_set_coeff(matrix1, 0, 1, 2.5); in demo_MatrixXd()
21 MatrixXd_set_coeff(matrix1, 1, 0, 1.4); in demo_MatrixXd()
23 MatrixXd_print(matrix1); in demo_MatrixXd()
26 MatrixXd_multiply(matrix1, matrix1, matrix2); in demo_MatrixXd()
30 MatrixXd_delete(matrix1); in demo_MatrixXd()
/external/eigen/doc/
DTopicLazyEvaluation.dox27 \code matrix1 = matrix2 + matrix3; \endcode
31 \code matrix1 = (matrix2 + matrix3).eval(); \endcode
35 \code matrix1 = -matrix2 + matrix3 + 5 * matrix4; \endcode
47 \code matrix1.noalias() = matrix2 * matrix2; \endcode
49 Here, since we know that matrix2 is not the same matrix as matrix1, we know that lazy evaluation is…
53 \code matrix1 = matrix2 + matrix3 * matrix4; \endcode
59 \code matrix1 = matrix2 * (matrix3 + matrix4); \endcode
DTutorialMatrixArithmetic.dox15 linear-algebraic operations. For example, \c matrix1 \c * \c matrix2 means matrix-matrix product,
/external/pdfium/core/src/fxge/skia/
Dfx_skia_device.cpp412 CFX_AffineMatrix matrix1, matrix2; in DrawPath() local
414 matrix1.a = FXSYS_fabs(pObject2Device->a) > FXSYS_fabs(pObject2Device->b) ? in DrawPath()
416 matrix1.d = matrix1.a;//FXSYS_fabs(pObject2Device->c) > FXSYS_fabs(pObject2Device->d) ? in DrawPath()
418 matrix2.Set(pObject2Device->a/matrix1.a, pObject2Device->b/matrix1.a, in DrawPath()
419 pObject2Device->c/matrix1.d, pObject2Device->d/matrix1.d, in DrawPath()
424 path_data.BuildPath(pPathData, &matrix1); in DrawPath()
432 …SkRasterizeStroke(spaint, &dst_path, path_data.m_PathData, &matrix2, pGraphState, matrix1.a, FALSE… in DrawPath()
/external/pdfium/core/src/fxge/agg/agg23/
Dfx_agg_driver.cpp1166 CFX_AffineMatrix matrix1, matrix2; in DrawPath() local
1168 matrix1.a = FX_MAX(FXSYS_fabs(pObject2Device->a), FXSYS_fabs(pObject2Device->b)); in DrawPath()
1169 matrix1.d = matrix1.a; in DrawPath()
1170 matrix2.Set(pObject2Device->a / matrix1.a, pObject2Device->b / matrix1.a, in DrawPath()
1171 pObject2Device->c / matrix1.d, pObject2Device->d / matrix1.d, in DrawPath()
1175 matrix1 = *pObject2Device; in DrawPath()
1176 matrix1.Concat(mtRervese); in DrawPath()
1179 path_data.BuildPath(pPathData, &matrix1); in DrawPath()
1182 …RasterizeStroke(rasterizer, path_data.m_PathData, &matrix2, pGraphState, matrix1.a, FALSE, fill_mo… in DrawPath()
/external/pdfium/core/src/reflow/
Dlayoutprocessor_reflow.cpp973 FX_FLOAT matrix1 = pmatrix[1]; in CreateRFData() local
975 matrix1 = 0; in CreateRFData()
977 CFX_AffineMatrix textMatrix(pmatrix[0], matrix1, pmatrix[2], pmatrix[3], 0, 0); in CreateRFData()
Dreflowedpage.cpp392 CFX_AffineMatrix matrix1 = pPage->GetPageMatrix(); in Start() local