/external/chromium_org/skia/ext/ |
bitmap_platform_device_cairo.cc | 48 void LoadMatrixToContext(cairo_t* context, const SkMatrix& matrix) { 51 SkScalarToFloat(matrix.getScaleX()), 52 SkScalarToFloat(matrix.getSkewY()), 53 SkScalarToFloat(matrix.getSkewX()), 54 SkScalarToFloat(matrix.getScaleY()), 55 SkScalarToFloat(matrix.getTranslateX()), 56 SkScalarToFloat(matrix.getTranslateY())); 86 // Load the identity matrix since this is what our clip is relative to.
|
/external/chromium_org/third_party/qcms/ |
BUILD.gn | 14 "src/matrix.c", 15 "src/matrix.h",
|
qcms.gyp | 15 'src/matrix.c', 16 'src/matrix.h',
|
/external/chromium_org/third_party/skia/include/effects/ |
SkBicubicImageFilter.h | 18 filter using the given matrix. 32 @param coefficients The 16 coefficients of the bicubic matrix.
|
/external/chromium_org/third_party/skia/src/animator/ |
SkDrawMatrix.h | 21 DECLARE_DRAW_MEMBER_INFO(Matrix); 65 SkTDScalarArray matrix; member in class:SkDrawMatrix
|
SkExtraPathEffects.xsd | 20 <xs:element ref="Sk:matrix"/>
24 <xs:attribute name="matrix" type="Sk:DynamicString" />
|
SkPaintPart.h | 54 SkMatrix* getMatrix(); // returns NULL if matrix is NULL 55 SkDrawMatrix* matrix; member in class:SkDrawShader
|
/external/chromium_org/third_party/skia/src/core/ |
SkLocalMatrixShader.h | 26 virtual BitmapType asABitmap(SkBitmap* bitmap, SkMatrix* matrix, 28 return fProxyShader->asABitmap(bitmap, matrix, mode);
|
/external/chromium_org/third_party/skia/src/effects/ |
Sk1DPathEffect.cpp | 94 SkMatrix matrix; local 98 matrix.setSinCos(tangent.fY, tangent.fX, 0, 0); 99 matrix.preTranslate(-sx, 0); 100 matrix.postTranslate(pos.fX, pos.fY); 101 matrix.mapPoints(&dst[i], &pt, 1); 188 SkMatrix matrix; local 189 if (meas.getMatrix(distance, &matrix)) { 190 dst->addPath(fPath, matrix);
|
SkLayerRasterizer.cpp | 65 const SkMatrix& matrix, 85 // apply the matrix and offset 87 SkMatrix m = matrix; 94 &matrix, &mask, 105 bool SkLayerRasterizer::onRasterize(const SkPath& path, const SkMatrix& matrix, 114 if (!compute_bounds(*fLayers, path, matrix, clipBounds, &mask->fBounds)) 138 translatedMatrix = matrix; 148 // we set the matrixproc in the loop, as the matrix changes each time (potentially)
|
/external/chromium_org/third_party/skia/src/pdf/ |
SkPDFUtils.h | 39 static SkPDFArray* MatrixToArray(const SkMatrix& matrix); 40 static void AppendTransform(const SkMatrix& matrix, SkWStream* content);
|
/external/chromium_org/third_party/skia/src/utils/ |
SkProxyCanvas.cpp | 42 void SkProxyCanvas::didConcat(const SkMatrix& matrix) { 43 fProxy->concat(matrix); 44 this->INHERITED::didConcat(matrix); 47 void SkProxyCanvas::didSetMatrix(const SkMatrix& matrix) { 48 fProxy->setMatrix(matrix); 49 this->INHERITED::didSetMatrix(matrix); 135 const SkMatrix* matrix, const SkPaint& paint) { 136 fProxy->drawTextOnPath(text, byteLength, path, matrix, paint);
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/ |
filterbank_tables.c | 29 /* The matrix for transforming the backward composite state to upper channel state */ 34 /* The matrix for transforming the backward composite state to lower channel state */
|
filterbank_tables.h | 40 /* The matrix for transforming the backward composite state to upper channel state */ 43 /* The matrix for transforming the backward composite state to lower channel state */
|
/external/eigen/Eigen/ |
SparseCore | 17 * This module provides a sparse matrix representation, and basic associatd matrix manipulations
|
/external/eigen/Eigen/src/Eigen2Support/Geometry/ |
Translation.h | 38 typedef Matrix<Scalar,Dim,1> VectorType; 39 /** corresponding linear transformation matrix type */ 40 typedef Matrix<Scalar,Dim,Dim> LinearMatrixType; 94 res.matrix().setZero(); 97 res.matrix().row(Dim).setZero(); 155 res.matrix().setZero(); 167 res.matrix().setZero(); 170 res.matrix().row(Dim).setZero();
|
/external/eigen/Eigen/src/Eigenvalues/ |
RealQZ.h | 22 * \tparam _MatrixType the type of the matrix of which we are computing the 24 * Matrix class template. 28 * real orthogonal matrixes, T is upper-triangular matrix, and S is upper 29 * quasi-triangular matrix. An orthogonal matrix is a matrix whose 31 * matrix is a block-triangular matrix whose diagonal consists of 1-by-1 50 * \note The implementation is based on the algorithm in "Matrix Computations" 72 typedef Matrix<ComplexScalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> EigenvalueType [all...] |
/external/eigen/Eigen/src/Geometry/ |
Translation.h | 39 typedef Matrix<Scalar,Dim,1> VectorType; 40 /** corresponding linear transformation matrix type */ 41 typedef Matrix<Scalar,Dim,Dim> LinearMatrixType; 115 res.matrix().setZero(); 118 res.matrix().row(Dim).setZero(); 183 res.matrix().setZero(); 196 res.matrix().setZero(); 199 res.matrix().row(Dim).setZero();
|
/external/eigen/doc/snippets/ |
HouseholderSequence_HouseholderSequence.cpp | 2 cout << "The matrix v is:" << endl; 30 cout << "and convert it to a matrix, we get:" << endl;
|
/external/eigen/test/ |
diagonalmatrices.cpp | 17 typedef Matrix<Scalar, Rows, 1> VectorType; 18 typedef Matrix<Scalar, 1, Cols> RowVectorType; 19 typedef Matrix<Scalar, Rows, Rows> SquareMatrixType; 22 typedef Matrix<Scalar, Rows==Dynamic?Dynamic:2*Rows, Cols==Dynamic?Dynamic:2*Cols> BigMatrix; 92 CALL_SUBTEST_1( diagonalmatrices(Matrix<float, 1, 1>()) ); 94 CALL_SUBTEST_3( diagonalmatrices(Matrix<double,3,3,RowMajor>()) ); 96 CALL_SUBTEST_5( diagonalmatrices(Matrix<float,4,4,RowMajor>()) ); 99 CALL_SUBTEST_8( diagonalmatrices(Matrix<double,Dynamic,Dynamic,RowMajor>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) );
|
mapstride.cpp | 120 CALL_SUBTEST_1( map_class_vector<Aligned>(Matrix<float, 1, 1>()) ); 121 CALL_SUBTEST_1( map_class_vector<Unaligned>(Matrix<float, 1, 1>()) ); 131 CALL_SUBTEST_1( map_class_matrix<Aligned>(Matrix<float, 1, 1>()) ); 132 CALL_SUBTEST_1( map_class_matrix<Unaligned>(Matrix<float, 1, 1>()) ); 135 CALL_SUBTEST_3( map_class_matrix<Aligned>(Matrix<float,3,5>()) ); 136 CALL_SUBTEST_3( map_class_matrix<Unaligned>(Matrix<float,3,5>()) ); 137 CALL_SUBTEST_3( map_class_matrix<Aligned>(Matrix<float,4,8>()) ); 138 CALL_SUBTEST_3( map_class_matrix<Unaligned>(Matrix<float,4,8>()) );
|
/external/pdfium/core/src/fpdfapi/fpdf_page/ |
fpdf_page_path.cpp | 19 void CPDF_PathObject::Transform(const CPDF_Matrix& matrix)
21 m_Matrix.Concat(matrix);
|
/external/skia/include/effects/ |
SkBicubicImageFilter.h | 18 filter using the given matrix. 32 @param coefficients The 16 coefficients of the bicubic matrix.
|
/external/skia/src/animator/ |
SkDrawMatrix.h | 21 DECLARE_DRAW_MEMBER_INFO(Matrix); 65 SkTDScalarArray matrix; member in class:SkDrawMatrix
|
SkExtraPathEffects.xsd | 20 <xs:element ref="Sk:matrix"/>
24 <xs:attribute name="matrix" type="Sk:DynamicString" />
|