HomeSort by relevance Sort by last modified time
    Searched full:matrix2 (Results 1 - 21 of 21) 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;
87 Matrix2 toRotationMatrix(void) const;
145 typename Rotation2D<Scalar>::Matrix2
152 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/chromium_org/third_party/angle/src/compiler/translator/
glslang.l 128 "mat2" { return MATRIX2; }
132 "mat2x2" { return ES2_ident_ES3_keyword(context, MATRIX2); }
glslang_tab.h 91 MATRIX2 = 292,
glslang.y 141 %token <lex> MATRIX2 MATRIX3 MATRIX4 IN_QUAL OUT_QUAL INOUT_QUAL UNIFORM VARYING
    [all...]
glslang_lex.cpp     [all...]
glslang_tab.cpp 174 MATRIX2 = 292,
836 "IVEC4", "VEC2", "VEC3", "VEC4", "UVEC2", "UVEC3", "UVEC4", "MATRIX2",
    [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/fxge/agg/agg23/
fx_agg_driver.cpp     [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
ExtendedCameraCharacteristicsTest.java 310 mCollector.expectNotEquals("Forward Matrix2 should not contain all zeroes.", zeroed,
  /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...]
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusFlat.h 369 GdipMultiplyMatrix(GpMatrix *matrix, GpMatrix* matrix2,
414 GdipIsMatrixEqual(GDIPCONST GpMatrix *matrix, GDIPCONST GpMatrix *matrix2, BOOL *result);
    [all...]

Completed in 1398 milliseconds