HomeSort by relevance Sort by last modified time
    Searched refs:Matrix (Results 876 - 900 of 946) sorted by null

<<3132333435363738

  /frameworks/base/core/jni/
android_view_RenderNode.cpp 29 #include <Matrix.h>
106 SkMatrix* matrix = reinterpret_cast<SkMatrix*>(matrixPtr); local
107 return SET_AND_DIRTY(setStaticMatrix, matrix, RenderNode::GENERIC);
111 SkMatrix* matrix = reinterpret_cast<SkMatrix*>(matrixPtr); local
112 return SET_AND_DIRTY(setAnimationMatrix, matrix, RenderNode::GENERIC);
386 // load transform matrix
  /external/eigen/blas/
level3_impl.h 64 if(beta==Scalar(0)) matrix(c, *m, *n, *ldc).setZero();
65 else matrix(c, *m, *n, *ldc) *= beta;
175 matrix(b,*m,*n,*ldb) *= alpha;
269 Matrix<Scalar,Dynamic,Dynamic,ColMajor> tmp = matrix(b,*m,*n,*ldb);
270 matrix(b,*m,*n,*ldb).setZero();
310 if(beta==Scalar(0)) matrix(c, *m, *n, *ldc).setZero();
311 else matrix(c, *m, *n, *ldc) *= beta;
321 // FIXME add support for symmetric complex matrix
322 Matrix<Scalar,Dynamic,Dynamic,ColMajor> matA(size,size)
    [all...]
  /frameworks/base/core/java/android/view/
MotionEvent.java 20 import android.graphics.Matrix;
    [all...]
View.java 50 import android.graphics.Matrix;
    [all...]
ViewGroup.java 37 import android.graphics.Matrix;
278 // When set, the next call to drawChild() will clear mChildTransformation's matrix
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
DisplayContent.java 108 import android.graphics.Matrix;
295 private final Matrix mTmpMatrix = new Matrix();
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Workspace.java 36 import android.graphics.Matrix;
149 private Matrix mTempInverseMatrix = new Matrix();
    [all...]
  /external/eigen/Eigen/src/Core/
CoreEvaluators.h 119 // -------------------- Matrix and Array --------------------
122 // Matrix and Array evaluators.
236 struct evaluator<Matrix<Scalar, Rows, Cols, Options, MaxRows, MaxCols> >
237 : evaluator<PlainObjectBase<Matrix<Scalar, Rows, Cols, Options, MaxRows, MaxCols> > >
239 typedef Matrix<Scalar, Rows, Cols, Options, MaxRows, MaxCols> XprType;
337 // Like Matrix and Array, this is not really a unary expression, so we directly specialize evaluator.
    [all...]
PlainObjectBase.h 67 // MatrixBase if we inherits MatrixBase<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >,
74 struct dense_xpr_base_dispatcher<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
90 * \tparam Derived is the derived type, e.g., a Matrix or Array
254 /** \returns a const pointer to the data array of this matrix */
258 /** \returns a pointer to the data array of this matrix */
262 /** Resizes \c *this to a \a rows x \a cols matrix.
265 * matrix as long as fixed dimensions are left unchanged. If you only want to change the number
285 && rows>=0 && cols>=0 && "Invalid sizes when resizing a matrix or array.");
301 * than 1. For example it will not work with Matrix<double, 2, Dynamic>.
325 /** Resizes the matrix, changing only the number of columns. For the parameter of type NoChange_t, just pass the special (…)
    [all...]
  /external/eigen/unsupported/test/
NonLinearOptimization.cpp 69 /* checking the jacobian matrix. */
115 typedef Matrix<Scalar,InputsAtCompileTime,1> InputType;
116 typedef Matrix<Scalar,ValuesAtCompileTime,1> ValueType;
117 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType;
    [all...]
  /frameworks/base/core/java/android/app/
ActivityManager.java 44 import android.graphics.Matrix;
2071 Matrix matrix = new Matrix(); local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
CameraActivity.java 35 import android.graphics.Matrix;
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmslut.c 339 // Duplicate a yet-existing matrix element
380 const cmsFloat64Number* Matrix, const cmsFloat64Number* Offset)
411 NewElem ->Double[i] = Matrix[i];
1015 // Matrix-based conversion, which is more accurate, but slower and cannot properly be saved in devicelink profiles
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
MLand.java 25 import android.graphics.Matrix;
    [all...]
  /frameworks/support/compat/java/android/support/v4/view/
ViewCompat.java 26 import android.graphics.Matrix;
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseRegisterInfo.cpp 260 const LiveRegMatrix *Matrix) const {
  /frameworks/base/graphics/java/android/graphics/
BaseCanvas.java 109 public void drawBitmap(@NonNull Bitmap bitmap, @NonNull Matrix matrix, @Nullable Paint paint) {
111 nDrawBitmapMatrix(mNativeCanvasWrapper, bitmap, matrix.ni(),
  /frameworks/base/libs/hwui/
GlopBuilder.cpp 22 #include "Matrix.h"
283 mOutGlop->fill.filterMode = mDescription.colorOp = ProgramDescription::ColorFilterMode::Matrix;
285 float* colorMatrix = mOutGlop->fill.filter.matrix.matrix;
293 float* colorVector = mOutGlop->fill.filter.matrix.vector;
516 // snap by adjusting the model view matrix
543 // snap by adjusting the model view matrix
636 // so the shader matrix must reverse this
SkiaCanvas.cpp 132 // either (or both) the matrix and/or clip state after a SkCanvas::restore
133 // operation. It does this by explicitly saving off the clip & matrix state
143 bool preserveMatrix = !(rec->saveFlags & SaveFlags::Matrix);
255 // functions to emulate legacy SaveFlags (i.e. independent matrix/clip flags)
260 // (either SaveFlags::Matrix or SaveFlags::Clip is missing).
315 // Canvas state operations: Matrix
322 void SkiaCanvas::setMatrix(const SkMatrix& matrix) {
323 mCanvas->setMatrix(matrix);
326 void SkiaCanvas::concat(const SkMatrix& matrix) {
327 mCanvas->concat(matrix);
    [all...]
  /frameworks/ml/nn/common/operations/internal/optimized/
optimized_ops.h 44 // Eigen::Map<const Eigen::Matrix<float, ...>>
46 // Eigen::Map<Eigen::Matrix<const float, ...>>
50 Eigen::Map<const Eigen::Matrix<typename std::remove_const<Scalar>::type,
52 Eigen::Map<Eigen::Matrix<Scalar, Eigen::Dynamic, 1>>>::type;
61 // as a Eigen matrix expression. The same explanation as for VectorMap
66 Eigen::Map<const Eigen::Matrix<typename std::remove_const<Scalar>::type,
68 Eigen::Map<Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic>>>::type;
    [all...]
  /frameworks/opt/chips/src/com/android/ex/chips/
RecipientEditTextView.java 36 import android.graphics.Matrix;
1128 final Matrix matrix = new Matrix(); local
    [all...]
  /frameworks/ml/nn/common/operations/internal/reference/
reference_ops.h     [all...]
  /frameworks/rs/script_api/
rs_matrix.spec 18 summary: Matrix Functions
28 a vector is done by postmultiplying the vector, e.g. <code>(matrix * vector)</code>,
31 To create a transformation matrix that performs two transformations at once,
33 argument. E.g. to create a transformation matrix that applies the
39 style simply stores the transformation matrix in the first argument. The latter
40 modifies a pre-existing transformation matrix so that the new transformation
41 happens first. E.g. if you call @rsMatrixTranslate() on a matrix that already
42 does a scaling, the resulting matrix when applied to a vector will first do the
51 arg: const rs_matrix4x4* viewProj, "Matrix to extract planes from."
60 Computes 6 frustum planes from the view projection matrix
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/
Robolectric.java 733 public static ShadowMatrix shadowOf(Matrix other) {
    [all...]
  /external/skia/tests/
MatrixTest.cpp 115 SkMatrix matrix; local
119 matrix.setRectToRect(src, dst, SkMatrix::kFill_ScaleToFit);
120 REPORTER_ASSERT(reporter, SkMatrix::kIdentity_Mask == matrix.getType());
121 REPORTER_ASSERT(reporter, matrix.rectStaysRect());
124 matrix.setRectToRect(src, dst, SkMatrix::kFill_ScaleToFit);
125 REPORTER_ASSERT(reporter, SkMatrix::kTranslate_Mask == matrix.getType());
126 REPORTER_ASSERT(reporter, matrix.rectStaysRect());
129 matrix.setRectToRect(src, dst, SkMatrix::kFill_ScaleToFit);
131 (SkMatrix::kTranslate_Mask | SkMatrix::kScale_Mask) == matrix.getType());
132 REPORTER_ASSERT(reporter, matrix.rectStaysRect())
    [all...]

Completed in 7767 milliseconds

<<3132333435363738