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

  /external/eigen/demos/mix_eigen_and_c/
example.c 15 struct C_MatrixXd *matrix1, *matrix2, *result; local
25 matrix2 = MatrixXd_new(3, 3);
26 MatrixXd_multiply(matrix1, matrix1, matrix2);
28 MatrixXd_print(matrix2);
31 MatrixXd_delete(matrix2);
  /external/eigen/doc/
TopicLazyEvaluation.dox 27 \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 not dangerous, so we may force lazy evaluation. Concretely, the effect of noalias() here is to bypass the evaluate-before-assigning \link flags flag\endlink.
53 \code matrix1 = matrix2 + matrix3 * matrix4; \endcode
59 \code matrix1 = matrix2 * (matrix3 + matrix4); \endcode
TutorialMatrixArithmetic.dox 15 linear-algebraic operations. For example, \c matrix1 \c * \c matrix2 means matrix-matrix product,
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Rotation2D.h 48 typedef Matrix<Scalar,2,2> Matrix2;
82 Matrix2 toRotationMatrix(void) const;
137 typename Rotation2D<Scalar>::Matrix2
142 return (Matrix2() << cosA, -sinA, sinA, cosA).finished();
  /external/eigen/Eigen/src/Geometry/
Rotation2D.h 53 typedef Matrix<Scalar,2,2> Matrix2;
90 Matrix2 toRotationMatrix() const;
148 typename Rotation2D<Scalar>::Matrix2
155 return (Matrix2() << cosA, -sinA, sinA, cosA).finished();
  /frameworks/base/core/tests/inputmethodtests/src/android/os/
CursorAnchorInfoTest.java 206 final Matrix MATRIX2 = new Matrix();
207 MATRIX2.setTranslate(110.0f, 120.0f);
276 new Builder().setMatrix(MATRIX2).build());
364 final Matrix MATRIX2 = new Matrix();
365 MATRIX2.setTranslate(110.0f, 120.0f);
377 matrix.set(MATRIX2);
381 assertEquals(MATRIX2, secondInstance.getMatrix());
385 assertEquals(MATRIX2, secondInstance.getMatrix());
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusmatrix.h 167 Matrix matrix2(cosAngle, sinAngle, -sinAngle, cosAngle,
170 Status status = matrix2.GetLastStatus();
172 return Multiply(&matrix2, order);
  /external/pdfium/core/src/fxge/skia/
fx_skia_device.cpp 412 CFX_AffineMatrix matrix1, matrix2; local
418 matrix2.Set(pObject2Device->a/matrix1.a, pObject2Device->b/matrix1.a,
432 SkRasterizeStroke(spaint, &dst_path, path_data.m_PathData, &matrix2, pGraphState, matrix1.a, FALSE, 0);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d2d1helper.h 466 D2D1FORCEINLINE D2D1_MATRIX_3X2_F operator*(const D2D1_MATRIX_3X2_F &matrix1, const D2D1_MATRIX_3X2_F &matrix2) {
468 r.SetProduct(*D2D1::Matrix3x2F::ReinterpretBaseType(&matrix1), *D2D1::Matrix3x2F::ReinterpretBaseType(&matrix2));
  /external/eigen/Eigen/src/Core/
CwiseBinaryOp.h 28 * For example, the return type of matrix1+matrix2 is a CwiseBinaryOp.
  /external/pdfium/core/src/fxge/agg/agg23/
fx_agg_driver.cpp     [all...]
  /external/eigen/test/eigen2/
eigen2_geometry.cpp 21 typedef Matrix<Scalar,2,2> Matrix2;
eigen2_geometry_with_eigen2_prefix.cpp 23 typedef Matrix<Scalar,2,2> Matrix2;
  /external/ceres-solver/internal/ceres/
rotation_test.cc 179 // double matrix2[9];
180 // EXPECT_THAT(matrix1, IsNear3x3Matrix(matrix2));
    [all...]
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsopt.c     [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
ExtendedCameraCharacteristicsTest.java 442 mCollector.expectNotEquals("Forward Matrix2 should not contain all zeroes.", zeroed,
    [all...]

Completed in 3793 milliseconds