Searched defs:matrix (Results 1 - 25 of 258) sorted by relevance

1234567891011

/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8WebKitCSSMatrixConstructor.cpp61 RefPtr<WebKitCSSMatrix> matrix = WebKitCSSMatrix::create(cssValue, ec); local
65 // Transform the holder into a wrapper object for the matrix.
66 V8DOMWrapper::setDOMWrapper(args.Holder(), &info, matrix.get());
67 return toV8(matrix.release(), args.Holder());
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DPatternCairo.cpp45 cairo_matrix_t matrix = m_patternSpaceTransformation; local
46 cairo_matrix_invert(&matrix);
47 cairo_pattern_set_matrix(pattern, &matrix);
H A DGradientCairo.cpp73 cairo_matrix_t matrix = m_gradientSpaceTransformation; local
74 cairo_matrix_invert(&matrix);
75 cairo_pattern_set_matrix(m_gradient, &matrix);
83 cairo_matrix_t matrix = gradientSpaceTransformation; local
84 cairo_matrix_invert(&matrix);
85 cairo_pattern_set_matrix(m_gradient, &matrix);
/external/webkit/Source/WebCore/bindings/js/
H A DJSWebKitCSSMatrixCustom.cpp43 RefPtr<WebKitCSSMatrix> matrix = WebKitCSSMatrix::create(s, ec); local
45 return JSValue::encode(CREATE_DOM_OBJECT_WRAPPER(exec, jsConstructor->globalObject(), WebKitCSSMatrix, matrix.get()));
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DTransformationMatrixWx.cpp46 wxGraphicsMatrix matrix = renderer->CreateMatrix(a(), b(), c(), d(), e(), f()); local
47 return matrix;
55 wxGraphicsMatrix matrix = renderer->CreateMatrix(a(), b(), c(), d(), e(), f()); local
56 return 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/srec/srec/clib/
H A Dmatx_ops.h22 static PINLINE void matrix_fixed_multiply_frame(imeldata *outvec, imeldata **matrix,
25 static PINLINE void matrix_fixed_multiply_frame(imeldata *outvec, imeldata **matrix, argument
31 ASSERT(matrix);
39 sum += matrix[ii][jj] * vector[jj];
H A Dmatx_ops.c41 covdata **matrix; local
43 matrix = (covdata **) CALLOC(dimen, sizeof(covdata *),
46 matrix[ii] = (covdata *) CALLOC(dimen, sizeof(covdata),
48 return (matrix);
51 void delete_matrix(covdata **matrix, int dimen) argument
55 ASSERT(matrix);
57 FREE((char *)matrix[ii]);
58 FREE((char *)matrix);
62 void diagonal_elements(covdata *vector, covdata **matrix, int dim) argument
67 ASSERT(matrix);
73 scale_matrix_for_fixedpoint(imeldata **fixmat, covdata **matrix, int dimen) argument
127 imeldata **matrix; local
137 delete_fixed_matrix(imeldata **matrix, int dimen) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DLoopBlinnShader.cpp46 float matrix[16]; local
47 affineTo4x4(transform, matrix);
48 m_context->uniformMatrix4fv(m_worldViewProjectionLocation, false /*transpose*/, matrix, 1 /*count*/);
H A DSolidFillShader.cpp45 m_matrixLocation = context->getUniformLocation(program, "matrix");
68 float matrix[9]; local
69 affineTo3x3(transform, matrix);
70 m_context->uniformMatrix3fv(m_matrixLocation, false /*transpose*/, matrix, 1 /*count*/);
H A DBicubicShader.cpp43 , m_matrixLocation(context->getUniformLocation(program, "matrix"))
56 "uniform mat3 matrix;\n"
63 " gl_Position = vec4(matrix * pos, 1.0);\n"
115 float matrix[9]; local
116 affineTo3x3(transform, matrix);
117 m_context->uniformMatrix3fv(m_matrixLocation, false /*transpose*/, matrix, 1 /*count*/);
H A DTexShader.cpp44 m_matrixLocation = context->getUniformLocation(program, "matrix");
64 float matrix[9]; local
65 affineTo3x3(transform, matrix);
66 m_context->uniformMatrix3fv(m_matrixLocation, false /*transpose*/, matrix, 1 /*count*/);
/external/webkit/Source/WebCore/svg/
H A DSVGTransformList.cpp35 SVGTransform SVGTransformList::createSVGTransformFromMatrix(const SVGMatrix& matrix) const
37 return SVGSVGElement::createSVGTransformFromMatrix(matrix);
42 AffineTransform matrix; local
43 if (!concatenate(matrix))
46 SVGTransform transform(matrix);
59 result *= at(i).matrix();
/external/eigen/test/
H A Dcorners.cpp13 VERIFY_IS_EQUAL(matrix.A, matrix.B); \
25 MatrixType matrix = MatrixType::Random(rows,cols); local
48 MatrixType matrix = MatrixType::Random(); local
60 VERIFY_IS_EQUAL((matrix.template topLeftCorner<r,c>()), (matrix.template block<r,c>(0,0)));
61 VERIFY_IS_EQUAL((matrix.template topRightCorner<r,c>()), (matrix.template block<r,c>(0,cols-c)));
62 VERIFY_IS_EQUAL((matrix.template bottomLeftCorner<r,c>()), (matrix
[all...]
/external/skia/src/animator/
H A DSkPaintParts.h57 SkDrawMatrix* matrix; member in class:SkDrawShader
H A DSkDraw3D.cpp55 SkMatrix matrix; local
56 fCamera.patchToMatrix(patch->fPatch, &matrix);
57 matrix.preTranslate(hackWidth / 2, -hackHeight / 2);
58 matrix.postTranslate(hackWidth / 2, hackHeight / 2);
59 maker.fCanvas->concat(matrix);
/external/skia/src/core/
H A DSkRasterizer.cpp18 bool SkRasterizer::rasterize(const SkPath& fillPath, const SkMatrix& matrix, argument
30 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
38 return this->onRasterize(fillPath, matrix, clipBounds, mask, mode);
43 bool SkRasterizer::onRasterize(const SkPath& fillPath, const SkMatrix& matrix, argument
48 fillPath.transform(matrix, &devPath);
H A DSkMaskFilter.cpp22 bool SkMaskFilter::filterPath(const SkPath& devPath, const SkMatrix& matrix, argument
27 if (!SkDraw::DrawToMask(devPath, &clip.getBounds(), this, &matrix, &srcM,
33 if (!this->filterMask(&dstM, srcM, matrix, NULL)) {
H A DSkShape.cpp42 void SkShape::drawMatrix(SkCanvas* canvas, const SkMatrix& matrix) { argument
44 canvas->concat(matrix);
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DMatrix3DTransformOperation.h35 static PassRefPtr<Matrix3DTransformOperation> create(const TransformationMatrix& matrix) argument
37 return adoptRef(new Matrix3DTransformOperation(matrix));
40 TransformationMatrix matrix() const {return m_matrix; } function in class:WebCore::Matrix3DTransformOperation
/external/webkit/Source/WebCore/svg/properties/
H A DSVGTransformListPropertyTearOff.h41 PassRefPtr<SVGPropertyTearOff<SVGTransform> > createSVGTransformFromMatrix(SVGPropertyTearOff<SVGMatrix>* matrix, ExceptionCode& ec) argument
43 if (!matrix) {
48 return SVGPropertyTearOff<SVGTransform>::create(values.createSVGTransformFromMatrix(matrix->propertyReference()));
/external/eigen/Eigen/src/Eigen2Support/
H A DCwise.h59 inline Cwise(const ExpressionType& matrix) : m_matrix(matrix) {} argument
/external/eigen/Eigen/src/LU/
H A DDeterminant.h19 (const MatrixBase<Derived>& matrix, int a, int b, int c)
21 return matrix.coeff(0,a)
22 * (matrix.coeff(1,b) * matrix.coeff(2,c) - matrix.coeff(1,c) * matrix.coeff(2,b));
27 (const MatrixBase<Derived>& matrix, int j, int k, int m, int n)
29 return (matrix.coeff(j,0) * matrix.coeff(k,1) - matrix
18 bruteforce_det3_helper(const MatrixBase<Derived>& matrix, int a, int b, int c) argument
26 bruteforce_det4_helper(const MatrixBase<Derived>& matrix, int j, int k, int m, int n) argument
[all...]
/external/eigen/Eigen/src/plugins/
H A DCommonCwiseUnaryOps.h67 /** Overloaded for efficient real matrix times complex scalar value */
76 operator*(const Scalar& scalar, const StorageBaseType& matrix) argument
77 { return matrix*scalar; }
80 operator*(const std::complex<Scalar>& scalar, const StorageBaseType& matrix) argument
81 { return matrix*scalar; }
/external/freetype/src/raster/
H A Dftrend1.c61 const FT_Matrix* matrix,
73 if ( matrix )
74 FT_Outline_Transform( &slot->outline, matrix );
59 ft_raster1_transform( FT_Renderer render, FT_GlyphSlot slot, const FT_Matrix* matrix, const FT_Vector* delta ) argument

Completed in 471 milliseconds

1234567891011