HomeSort by relevance Sort by last modified time
    Searched full:matrix (Results 1026 - 1050 of 4077) sorted by null

<<41424344454647484950>>

  /external/neven/Embedded/common/src/b_TensorEm/
Int16Mat2D.h 34 /** 2d matrix */
74 /** creates identity matrix */
77 /** creates rotation matrix */
80 /** creates rigid matrix (scale & rotation) */
83 /** scales matrix by a factor */
86 /** multiplies matrix with vecA; returns resulting vector */
90 /** multiplies matrix with matA; returns resulting matrix */
  /external/skia/debugger/QT/
SkInspectorWidget.h 55 Sets the text in the current matrix.
58 void setMatrix(const SkMatrix& matrix);
  /external/skia/src/effects/
SkGpuBlurUtils.cpp 167 SkMatrix matrix; local
168 matrix.setIDiv(srcTexture->width(), srcTexture->height());
174 matrix.mapRect(&domain, rect);
179 matrix,
186 paint.addColorTextureEffect(srcTexture, matrix, params);
243 SkMatrix matrix; local
244 matrix.setIDiv(srcTexture->width(), srcTexture->height());
250 paint.addColorTextureEffect(srcTexture, matrix, params);
  /external/skia/src/gpu/effects/
GrConfigConversionEffect.h 41 const SkMatrix& matrix);
66 const SkMatrix& matrix);
GrSimpleTextureEffect.cpp 78 const SkMatrix& matrix = GrEffectUnitTest::TestMatrix(random); local
79 return GrSimpleTextureEffect::Create(textures[texIdx], matrix, coordSet);
  /external/skia/src/utils/
SkNWayCanvas.cpp 89 void SkNWayCanvas::didConcat(const SkMatrix& matrix) {
92 iter->concat(matrix);
94 this->INHERITED::didConcat(matrix);
97 void SkNWayCanvas::didSetMatrix(const SkMatrix& matrix) {
100 iter->setMatrix(matrix);
102 this->INHERITED::didSetMatrix(matrix);
261 const SkMatrix* matrix, const SkPaint& paint) {
264 iter->drawTextOnPath(text, byteLength, path, matrix, paint);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_FillVLDBuffer.c 35 * [in] pIndex pointer to coefficient index in 8x8 matrix
37 * matrix
  /frameworks/rs/
rsProgramVertex.cpp 70 "Attempting to set fixed function emulation matrix projection on user program");
75 "Unable to set fixed function emulation matrix projection because allocation is missing");
88 "Attempting to set fixed function emulation matrix modelview on user program");
93 "Unable to set fixed function emulation matrix modelview because allocation is missing");
106 "Attempting to set fixed function emulation matrix texture on user program");
111 "Unable to set fixed function emulation matrix texture because allocation is missing");
124 "Attempting to get fixed function emulation matrix projection on user program");
129 "Unable to get fixed function emulation matrix projection because allocation is missing");
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_rotation.h 34 Takes a unit quaternion and gives its corresponding rotation matrix.
35 \param R rotation matrix (out)
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropDrawingUtils.java 21 import android.graphics.Matrix;
161 public static Matrix getBitmapToDisplayMatrix(RectF imageBounds, RectF displayBounds) {
162 Matrix m = new Matrix();
167 public static boolean setBitmapToDisplayMatrix(Matrix m, RectF imageBounds,
170 return m.setRectToRect(imageBounds, displayBounds, Matrix.ScaleToFit.CENTER);
173 public static boolean setImageToScreenMatrix(Matrix dst, RectF image,
181 boolean rToR = dst.setRectToRect(rotatedImage, screen, Matrix.ScaleToFit.CENTER);
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_rotation.h 34 Takes a unit quaternion and gives its corresponding rotation matrix.
35 \param R rotation matrix (out)
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/views/
MultiTouchView.java 26 import android.graphics.Matrix;
58 /** Base matrix that keep emulator->device display scaling */
59 private Matrix mBaseMatrix = new Matrix();
60 /** Matrix that is used to draw emulator's screen on the device. */
61 private Matrix mDrawMatrix = new Matrix();
131 * Computes draw matrix for the emulator screen update.
  /development/samples/devbytes/animation/Anticipation/src/com/example/android/anticipation/
AnticiButton.java 23 import android.graphics.Matrix;
221 Matrix matrix = new Matrix(); local
222 matrix.setSkew(-mSkewX, 0);
224 matrix.mapRect(mTempRect);
  /external/ceres-solver/internal/ceres/
compressed_col_sparse_matrix_utils.h 41 // matrix and return it in compressed column form. The compressed
44 // column sparse matrix.
46 // If c_ij is the block in the matrix A corresponding to row block i
68 // Where R is an upper triangular compressed column sparse matrix.
89 // Where R is an upper triangular compressed column sparse matrix.
106 // Given a upper triangular matrix R in compressed column form, solve
  /external/chromium_org/cc/output/
filter_operation.h 77 const SkScalar* matrix() const { function in class:cc::FilterOperation
134 static FilterOperation CreateColorMatrixFilter(SkScalar matrix[20]) {
135 return FilterOperation(COLOR_MATRIX, matrix);
197 void set_matrix(const SkScalar matrix[20]) {
200 matrix_[i] = matrix[i];
233 FilterOperation(FilterType, SkScalar matrix[20]);
  /external/chromium_org/content/renderer/media/android/
stream_texture_factory_synchronous_impl.cc 124 float matrix[16]; local
125 surface_texture_->GetTransformMatrix(matrix);
127 if (memcmp(current_matrix_, matrix, sizeof(matrix)) != 0) {
128 memcpy(current_matrix_, matrix, sizeof(matrix));
  /external/chromium_org/third_party/ots/test/
validator-checker.cc 38 FT_Matrix matrix; local
39 matrix.xx = matrix.yy = 1 << 16;
40 matrix.xy = matrix.yx = 0 << 16;
43 FT_Set_Transform(face, &matrix, 0);
  /external/chromium_org/third_party/skia/include/gpu/
GrEffectStage.h 74 * @param matrix The transformation from the old coord system in which geometry is specified
77 void localCoordChange(const SkMatrix& matrix) {
79 fCoordChangeMatrix.preConcat(matrix);
82 fCoordChangeMatrix = matrix;
175 // ignore the coordinate change matrix since there are
200 * Gets the matrix representing all changes of coordinate system since the GrEffect was
  /external/chromium_org/third_party/skia/samplecode/
SampleStrokePath.cpp 37 SkMatrix matrix; local
38 matrix.setRectToRect(srcR, dstR, SkMatrix::kCenter_ScaleToFit);
39 canvas->concat(matrix);
81 SkMatrix matrix; local
83 matrix.setScale(scale, scale);
84 path->transform(matrix);
  /external/chromium_org/third_party/skia/src/effects/
SkColorFilterImageFilter.cpp 29 // To detect if we need to apply clamping after applying a matrix, we check if
51 bool matrix_needs_clamping(SkScalar matrix[20]) {
52 return component_needs_clamping(matrix)
53 || component_needs_clamping(matrix+5)
54 || component_needs_clamping(matrix+10)
55 || component_needs_clamping(matrix+15);
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLProgram.h 89 * The GrDrawState's view matrix along with the aspects of the render target determine the
90 * matrix sent to GL. The size of the render target affects the GL matrix because we must
108 * Gets a matrix that goes from local coords to Skia's device coordinates.
115 * Gets a matrix that goes from local coordinates to GL normalized device coords.
183 // Helper for setData() that sets the view matrix and loads the render target height uniform
  /external/eigen/Eigen/src/Core/
ArrayWrapper.h 18 * \brief Expression of a mathematical vector or matrix as an array object
51 inline ArrayWrapper(ExpressionType& matrix) : m_expression(matrix) {}
138 * \brief Expression of an array as a mathematical vector or matrix
140 * This class is the return type of ArrayBase::matrix(), and most of the time
143 * \sa MatrixBase::matrix(), class ArrayWrapper
CommaInitializer.h 57 /* inserts a scalar value in the target matrix */
75 /* inserts a matrix expression in the target matrix */
109 /** \returns the built matrix once all its coefficients have been set.
125 * Convenient operator to set the coefficients of a matrix.
128 * the size of the matrix. Otherwise an assertion is raised.
DiagonalProduct.h 52 inline DiagonalProduct(const MatrixType& matrix, const DiagonalType& diagonal)
53 : m_matrix(matrix), m_diagonal(diagonal)
55 eigen_assert(diagonal.diagonal().size() == (ProductOrder == OnTheLeft ? matrix.rows() : matrix.cols()));
118 /** \returns the diagonal matrix product of \c *this by the diagonal matrix \a diagonal.
Random.h 29 /** \returns a random matrix expression
32 * the returned matrix. Must be compatible with this MatrixBase type.
34 * This variant is meant to be used for dynamic-size matrix types. For fixed-size types,
42 * a temporary matrix whenever it is nested in a larger expression. This prevents unexpected
81 /** \returns a fixed-size random matrix or vector expression
90 * a temporary matrix whenever it is nested in a larger expression. This prevents unexpected

Completed in 672 milliseconds

<<41424344454647484950>>