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

  /external/eigen/demos/mix_eigen_and_c/
example.c 15 struct C_MatrixXd *matrix1, *matrix2, *result; local
18 matrix1 = MatrixXd_new(3, 3);
19 MatrixXd_set_zero(matrix1);
20 MatrixXd_set_coeff(matrix1, 0, 1, 2.5);
21 MatrixXd_set_coeff(matrix1, 1, 0, 1.4);
22 printf("Here is matrix1:\n");
23 MatrixXd_print(matrix1);
26 MatrixXd_multiply(matrix1, matrix1, matrix2);
27 printf("Here is matrix1*matrix1:\n")
    [all...]
  /frameworks/base/core/tests/inputmethodtests/src/android/os/
CursorAnchorInfoTest.java 204 final Matrix MATRIX1 = new Matrix();
205 MATRIX1.setTranslate(10.0f, 20.0f);
263 new Builder().setMatrix(MATRIX1).setInsertionMarkerLocation(
266 new Builder().setMatrix(MATRIX1).setInsertionMarkerLocation(
272 new Builder().setMatrix(MATRIX1).build(),
273 new Builder().setMatrix(MATRIX1).build());
275 new Builder().setMatrix(MATRIX1).build(),
278 new Builder().setMatrix(MATRIX1).build(),
287 new Builder().setMatrix(MATRIX1).setInsertionMarkerLocation(
291 new Builder().setMatrix(MATRIX1).setInsertionMarkerLocation
    [all...]
  /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/test/
vectorization_logic.cpp 99 > Matrix1;
104 DontAlign|((Matrix1::Flags&RowMajorBit)?RowMajor:ColMajor)> Matrix1u;
136 VERIFY(test_assign(Matrix1u(),Matrix1()+Matrix1(),
169 VERIFY(test_redux(Matrix44().template block<(Matrix1::Flags&RowMajorBit)?4:PacketSize,(Matrix1::Flags&RowMajorBit)?PacketSize:4>(1,2),
  /external/pdfium/core/src/fxge/skia/
fx_skia_device.cpp 412 CFX_AffineMatrix matrix1, matrix2; local
414 matrix1.a = FXSYS_fabs(pObject2Device->a) > FXSYS_fabs(pObject2Device->b) ?
416 matrix1.d = matrix1.a;//FXSYS_fabs(pObject2Device->c) > FXSYS_fabs(pObject2Device->d) ?
418 matrix2.Set(pObject2Device->a/matrix1.a, pObject2Device->b/matrix1.a,
419 pObject2Device->c/matrix1.d, pObject2Device->d/matrix1.d,
424 path_data.BuildPath(pPathData, &matrix1);
432 SkRasterizeStroke(spaint, &dst_path, path_data.m_PathData, &matrix2, pGraphState, matrix1.a, FALSE, 0)
    [all...]
  /external/pdfium/core/src/fxge/agg/agg23/
fx_agg_driver.cpp     [all...]
  /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/reflow/
layoutprocessor_reflow.cpp 973 FX_FLOAT matrix1 = pmatrix[1]; local
    [all...]
reflowedpage.cpp 392 CFX_AffineMatrix matrix1 = pPage->GetPageMatrix();
  /external/ceres-solver/internal/ceres/
rotation_test.cc 178 // double matrix1[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 440 mCollector.expectNotEquals("Forward Matrix1 should not contain all zeroes.", zeroed,
    [all...]

Completed in 1958 milliseconds