Searched refs:matrix (Results 101 - 125 of 545) sorted by relevance

1234567891011>>

/external/eigen/Eigen/src/QR/
H A DHouseholderQR.h22 * \brief Householder QR decomposition of a matrix
24 * \param MatrixType the type of the matrix of which we are computing the QR decomposition
26 * This class performs a QR decomposition of a matrix \b A into matrices \b Q and \b R
31 * by using Householder transformations. Here, \b Q a unitary matrix and \b R an upper triangular matrix.
82 HouseholderQR(const MatrixType& matrix) argument
83 : m_qr(matrix.rows(), matrix.cols()),
84 m_hCoeffs((std::min)(matrix.rows(),matrix
313 compute(const MatrixType& matrix) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DMatrixTransformOperation.h45 TransformationMatrix matrix() const { return TransformationMatrix(m_a, m_b, m_c, m_d, m_e, m_f); } function in class:WebCore::MatrixTransformOperation
64 TransformationMatrix matrix(m_a, m_b, m_c, m_d, m_e, m_f);
65 transform.multiply(matrix);
/external/skia/legacy/src/core/
H A DSkDraw.cpp44 SkAutoBlitterChoose(const SkBitmap& device, const SkMatrix& matrix, argument
46 fBlitter = SkBlitter::Choose(device, matrix, paint,
55 void choose(const SkBitmap& device, const SkMatrix& matrix, argument
58 fBlitter = SkBlitter::Choose(device, matrix, paint,
307 bool init(SkCanvas::PointMode, const SkPaint&, const SkMatrix* matrix,
392 // square procs (strokeWidth > 0 but matrix is square-scale (sx == sy)
430 const SkMatrix* matrix, const SkRasterClip* rc) {
444 matrix->rectStaysRect() && SkCanvas::kPoints_PointMode == mode) {
445 SkScalar sx = matrix->get(SkMatrix::kMScaleX);
446 SkScalar sy = matrix
429 init(SkCanvas::PointMode mode, const SkPaint& paint, const SkMatrix* matrix, const SkRasterClip* rc) argument
516 bounder_points(SkBounder* bounder, SkCanvas::PointMode mode, size_t count, const SkPoint pts[], const SkPaint& paint, const SkMatrix& matrix) argument
573 const SkMatrix* matrix = fMatrix; local
668 easy_rect_join(const SkPaint& paint, const SkMatrix& matrix, SkPoint* strokeSize) argument
683 ComputeRectType(const SkPaint& paint, const SkMatrix& matrix, SkPoint* strokeSize) argument
741 const SkMatrix& matrix = *fMatrix; local
862 SkDrawTreatAsHairline(const SkPaint& paint, const SkMatrix& matrix, SkScalar* coverage) argument
910 const SkMatrix* matrix = fMatrix; local
1019 just_translate(const SkMatrix& matrix, const SkBitmap& bitmap) argument
1123 clipped_out(const SkMatrix& matrix, const SkRasterClip& clip, int width, int height) argument
1157 SkMatrix matrix; local
1262 SkMatrix matrix; local
1313 SkMatrix matrix; local
1543 const SkMatrix* matrix = fMatrix; local
1667 TextMapState(const SkMatrix& matrix, SkScalar y) argument
1743 const SkMatrix* matrix = fMatrix; local
1876 morphpoints(SkPoint dst[], const SkPoint src[], int count, SkPathMeasure& meas, const SkMatrix& matrix) argument
1911 morphpath(SkPath* dst, const SkPath& src, SkPathMeasure& meas, const SkMatrix& matrix) argument
1948 drawTextOnPath(const char text[], size_t byteLength, const SkPath& follow, const SkMatrix* matrix, const SkPaint& paint) const argument
2194 texture_to_matrix(const VertState& state, const SkPoint verts[], const SkPoint texs[], SkMatrix* matrix) argument
2595 SkMatrix matrix; local
[all...]
H A DSkColorFilter.cpp18 bool SkColorFilter::asColorMatrix(SkScalar matrix[20]) { argument
92 const SkMatrix& matrix) {
93 return this->INHERITED::setContext(device, paint, matrix) &&
94 fShader->setContext(device, paint, matrix);
90 setContext(const SkBitmap& device, const SkPaint& paint, const SkMatrix& matrix) argument
H A DSkShape.cpp42 void SkShape::drawMatrix(SkCanvas* canvas, const SkMatrix& matrix) { argument
44 canvas->concat(matrix);
/external/chromium/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_tree_browser_cell.h16 // identifying the bookmark node being edited and the column matrix
26 @property(nonatomic, assign) NSMatrix* matrix; variable
/external/eigen/Eigen/src/Eigen2Support/
H A DMinor.h61 inline Minor(const MatrixType& matrix, argument
63 : m_matrix(matrix), m_row(row), m_col(col)
65 eigen_assert(row >= 0 && row < matrix.rows()
66 && col >= 0 && col < matrix.cols());
/external/opencv/cxcore/src/
H A Dcximage.cpp98 CV_ERROR( CV_StsUnsupportedFormat, "The object is neither an image, nor a matrix" );
219 matrix = (CvMat*)cvMemStorageAlloc( storage, sizeof(*matrix) );
220 cvInitMatHeader( matrix, rows, cols, type, alloc_data ?
224 matrix = 0;
249 CV_ERROR( CV_StsUnsupportedFormat, "The object is neither an image, nor a matrix" );
340 if( !matrix )
343 cvSave( filename, matrix, matname );
347 save_image( filename, matrix );
360 if( matrix )
[all...]
/external/skia/include/effects/
H A DSkLayerRasterizer.h42 virtual bool onRasterize(const SkPath& path, const SkMatrix& matrix,
H A DSkTransparentShader.h20 const SkMatrix& matrix) SK_OVERRIDE;
/external/skia/legacy/include/effects/
H A DSkLayerRasterizer.h47 virtual bool onRasterize(const SkPath& path, const SkMatrix& matrix,
/external/skia/src/core/
H A DSkBBoxHierarchyRecord.cpp69 bool SkBBoxHierarchyRecord::concat(const SkMatrix& matrix) { argument
70 bool result = INHERITED::concat(matrix);
75 void SkBBoxHierarchyRecord::setMatrix(const SkMatrix& matrix) { argument
76 INHERITED::setMatrix(matrix);
H A DSkColorFilter.cpp21 bool SkColorFilter::asColorMatrix(SkScalar matrix[20]) const {
89 const SkMatrix& matrix) {
93 if (!this->INHERITED::setContext(device, paint, matrix)) {
96 if (!fShader->setContext(device, paint, matrix)) {
87 setContext(const SkBitmap& device, const SkPaint& paint, const SkMatrix& matrix) argument
H A DSkBBoxHierarchyRecord.h35 virtual bool concat(const SkMatrix& matrix) SK_OVERRIDE;
36 virtual void setMatrix(const SkMatrix& matrix) SK_OVERRIDE;
/external/skia/src/gpu/gl/
H A DGrGLUniformManager.cpp170 void GrGLUniformManager::setMatrix3f(UniformHandle u, const GrGLfloat matrix[]) const {
177 GR_GL_CALL(fContext.interface(), UniformMatrix3fv(uni.fFSLocation, 1, false, matrix));
180 GR_GL_CALL(fContext.interface(), UniformMatrix3fv(uni.fVSLocation, 1, false, matrix));
184 void GrGLUniformManager::setMatrix4f(UniformHandle u, const GrGLfloat matrix[]) const {
190 GR_GL_CALL(fContext.interface(), UniformMatrix4fv(uni.fFSLocation, 1, false, matrix));
193 GR_GL_CALL(fContext.interface(), UniformMatrix4fv(uni.fVSLocation, 1, false, matrix));
235 void GrGLUniformManager::setSkMatrix(UniformHandle u, const SkMatrix& matrix) const {
238 matrix.get(SkMatrix::kMScaleX),
239 matrix.get(SkMatrix::kMSkewY),
240 matrix
[all...]
/external/skia/src/pdf/
H A DSkPDFShader.h37 * @param matrix The current transform. (PDF shaders are absolutely
39 * @param surfceBBox The bounding box of the drawing surface (with matrix
43 const SkMatrix& matrix,
/external/webkit/Source/WebCore/svg/
H A DSVGStyledTransformableElement.cpp58 AffineTransform matrix; local
59 transform().concatenate(matrix);
61 matrix *= *m_supplementalTransform;
62 return matrix;
H A DSVGTextElement.cpp90 AffineTransform matrix; local
91 transform().concatenate(matrix);
93 matrix *= *m_supplementalTransform;
94 return matrix;
/external/eigen/Eigen/src/LU/arch/
H A DInverse_SSE.h12 // The SSE code for the 4x4 float and double matrix inverse in this file
14 // http://software.intel.com/en-us/articles/optimized-matrix-library-for-use-with-the-intel-pentiumr-4-processors-sse2-instructions/
43 static void run(const MatrixType& matrix, ResultType& result) argument
47 // Load the full matrix into registers
48 __m128 _L1 = matrix.template packet<MatrixAlignment>( 0);
49 __m128 _L2 = matrix.template packet<MatrixAlignment>( 4);
50 __m128 _L3 = matrix.template packet<MatrixAlignment>( 8);
51 __m128 _L4 = matrix.template packet<MatrixAlignment>(12);
54 // original matrix is divide into four 2x2 sub-matrices. Since each
55 // register holds four matrix elemen
170 run(const MatrixType& matrix, ResultType& result) argument
[all...]
/external/ceres-solver/internal/ceres/
H A Dcompressed_row_sparse_matrix.cc289 // to hold the combined matrix and copy the contents of this matrix
307 // Copy the contents of m into this matrix.
313 // Create the new rows array to hold the enlarged matrix.
340 void CompressedRowSparseMatrix::ToCRSMatrix(CRSMatrix* matrix) const {
341 matrix->num_rows = num_rows();
342 matrix->num_cols = num_cols();
344 matrix->rows.resize(matrix->num_rows + 1);
345 matrix
[all...]
H A Dblock_sparse_matrix.h51 // the lazy block sparse matrix implementation.
57 // Convert this matrix into a triplet sparse matrix.
58 virtual void ToTripletSparseMatrix(TripletSparseMatrix* matrix) const = 0;
64 // Returns a pointer to a row of the matrix. The returned array is only valid
83 // initialize the matrix. For details on how the blocks structure of
84 // the matrix is stored please see the documentation
90 // Construct a block sparse matrix with a fully initialized
91 // CompressedRowBlockStructure objected. The matrix takes over
98 // Construct a block sparse matrix fro
[all...]
H A Ddense_normal_cholesky_solver.cc57 ConstAlignedMatrixRef Aref = A->matrix();
64 // same matrix being multiplied with itself and that the product is
73 lhs += D.array().square().matrix().asDiagonal();
/external/freetype/include/freetype/
H A Dftglyph.h275 /* matrix :: A pointer to a 2x2 matrix to apply. */
284 /* The 2x2 transformation matrix is also applied to the glyph's */
289 FT_Matrix* matrix,
572 /* Perform the matrix operation `b = a*b'. */
575 /* a :: A pointer to matrix `a'. */
578 /* b :: A pointer to matrix `b'. */
594 /* Invert a 2x2 matrix. Return an error if it can't be inverted. */
597 /* matrix :: A pointer to the target matrix
604 FT_Matrix_Invert( FT_Matrix* matrix ); variable
[all...]
/external/skia/src/effects/
H A DSk1DPathEffect.cpp93 SkMatrix matrix; local
97 matrix.setSinCos(tangent.fY, tangent.fX, 0, 0);
98 matrix.preTranslate(-sx, 0);
99 matrix.postTranslate(pos.fX, pos.fY);
100 matrix.mapPoints(&dst[i], &pt, 1);
187 SkMatrix matrix; local
188 if (meas.getMatrix(distance, &matrix)) {
189 dst->addPath(fPath, matrix);
/external/skia/src/effects/gradients/
H A DSkTwoPointRadialGradient.h23 SkMatrix* matrix,
32 const SkMatrix& matrix) SK_OVERRIDE;

Completed in 603 milliseconds

1234567891011>>