Home
last modified time | relevance | path

Searched refs:matrix2 (Results 1 – 6 of 6) sorted by relevance

/external/eigen/demos/mix_eigen_and_c/
Dexample.c15 struct C_MatrixXd *matrix1, *matrix2, *result; in demo_MatrixXd() local
25 matrix2 = MatrixXd_new(3, 3); in demo_MatrixXd()
26 MatrixXd_multiply(matrix1, matrix1, matrix2); in demo_MatrixXd()
28 MatrixXd_print(matrix2); in demo_MatrixXd()
31 MatrixXd_delete(matrix2); 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/fxge/skia/
Dfx_skia_device_unittest.cpp55 CFX_Matrix matrix2; in CommonTest() local
56 matrix2.Translate(1, 0); in CommonTest()
86 driver->DrawPath(&path2, &matrix2, &graphState, 0xFF112233, 0, in CommonTest()
89 driver->DrawDeviceText(SK_ARRAY_COUNT(charPos), charPos, &font, &matrix2, in CommonTest()
/external/autotest/client/tests/iozone/
Dpostprocessing.py62 def compare_matrices(matrix1, matrix2, treshold=0.05): argument
77 for line1, line2 in zip(matrix1, matrix2):
/external/pdfium/core/fxge/agg/
Dfx_agg_driver.cpp1499 CFX_Matrix matrix2; in DrawPath() local
1504 matrix2 = CFX_Matrix( in DrawPath()
1509 mtRervese.SetReverse(matrix2); in DrawPath()
1519 RasterizeStroke(rasterizer, path_data.m_PathData, &matrix2, pGraphState, in DrawPath()