Searched refs:matrix (Results 326 - 350 of 1121) sorted by relevance

<<11121314151617181920>>

/external/pdfium/core/src/reflow/
H A Dreflowedpage.cpp154 void CPDF_ReflowedPage::GetDisplayMatrix(CFX_AffineMatrix& matrix, FX_INT32 xPos, FX_INT32 yPos, FX_INT32 xSize, FX_INT32 ySize, FX_INT32 iRotate, const CFX_AffineMatrix* pPageMatrix) argument
158 matrix.Set(1, 0, 0, -1, 0, 0);
202 matrix.Set(1.0f, 0.0f, 0.0f, -1.0f, 0.0f, 0.0f);
203 matrix.Concat(display_matrix);
210 void CPDF_ReflowedPage::FocusGetData(const CFX_AffineMatrix matrix, FX_INT32 x, FX_INT32 y, CFX_ByteString& str) argument
216 revMatrix.SetReverse(matrix);
269 FX_BOOL CPDF_ReflowedPage::FocusGetPosition(const CFX_AffineMatrix matrix, CFX_ByteString str, FX_INT32& x, FX_INT32& y)
280 matrix.Transform(pData->m_PosX, pData->m_PosY + pData->m_Height, x1, y1);
311 CFX_AffineMatrix matrix;
312 m_pPDFPage->GetDisplayMatrix(matrix,
[all...]
/external/pixman/pixman/
H A Dpixman-conical-gradient.c88 cx = image->common.transform->matrix[0][0] / 65536.;
89 cy = image->common.transform->matrix[1][0] / 65536.;
90 cz = image->common.transform->matrix[2][0] / 65536.;
97 image->common.transform->matrix[2][0] == 0 &&
/external/skia/bench/
H A DPictureRecordBench.cpp81 // set a matrix on the canvas
82 SkMatrix matrix; variable
83 matrix.setRotate(SkIntToScalar(i % 360));
84 canvas->setMatrix(matrix);
96 canvas->drawBitmapMatrix(bitmap, matrix);
/external/skia/include/effects/
H A DSkMagnifierImageFilter.h31 virtual bool asNewEffect(GrEffectRef** effect, GrTexture* texture, const SkMatrix& matrix, const SkIRect& bounds) const SK_OVERRIDE;
/external/skia/include/gpu/
H A DGrPaint.h112 * Helpers for adding color or coverage effects that sample a texture. The matrix is applied
115 void addColorTextureEffect(GrTexture* texture, const SkMatrix& matrix);
116 void addCoverageTextureEffect(GrTexture* texture, const SkMatrix& matrix);
119 const SkMatrix& matrix,
122 const SkMatrix& matrix,
/external/skia/samplecode/
H A DSamplePolyToPoly.cpp16 extern bool SkSetPoly3To3(SkMatrix* matrix, const SkPoint src[3], const SkPoint dst[3]);
87 SkMatrix matrix; local
96 matrix.setPolyToPoly(src, dst, count);
97 canvas->concat(matrix);
/external/skia/src/effects/gradients/
H A DSkLinearGradient.cpp42 static void pts_to_unit_matrix(const SkPoint pts[2], SkMatrix* matrix) { argument
48 matrix->setSinCos(-vec.fY, vec.fX, pts[0].fX, pts[0].fY);
49 matrix->postTranslate(-pts[0].fX, -pts[0].fY);
50 matrix->postScale(inv, inv);
257 SkMatrix* matrix,
262 if (matrix) {
263 matrix->preConcat(fPtsToUnit);
485 const SkMatrix& matrix,
487 AutoEffectUnref effect(SkNEW_ARGS(GrLinearGradient, (ctx, shader, matrix, tm)));
503 const SkMatrix& matrix,
256 asABitmap(SkBitmap* bitmap, SkMatrix* matrix, TileMode xy[]) const argument
483 Create(GrContext* ctx, const SkLinearGradient& shader, const SkMatrix& matrix, SkShader::TileMode tm) argument
501 GrLinearGradient(GrContext* ctx, const SkLinearGradient& shader, const SkMatrix& matrix, SkShader::TileMode tm) argument
559 SkMatrix matrix; local
[all...]
H A DSkRadialGradient.cpp59 SkMatrix* matrix) {
62 matrix->setTranslate(-center.fX, -center.fY);
63 matrix->postScale(inv, inv);
231 SkMatrix* matrix, SkShader::TileMode* xy) const {
235 if (matrix) {
236 matrix->setScale(SkIntToScalar(kCache32Count),
238 matrix->preConcat(fPtsToUnit);
494 const SkMatrix& matrix,
496 AutoEffectUnref effect(SkNEW_ARGS(GrRadialGradient, (ctx, shader, matrix, tm)));
512 const SkMatrix& matrix,
58 rad_to_unit_matrix(const SkPoint& center, SkScalar radius, SkMatrix* matrix) argument
230 asABitmap(SkBitmap* bitmap, SkMatrix* matrix, SkShader::TileMode* xy) const argument
492 Create(GrContext* ctx, const SkRadialGradient& shader, const SkMatrix& matrix, SkShader::TileMode tm) argument
510 GrRadialGradient(GrContext* ctx, const SkRadialGradient& shader, const SkMatrix& matrix, SkShader::TileMode tm) argument
571 SkMatrix matrix; local
[all...]
/external/skia/src/sfnt/
H A DSkOTTable_glyf.h181 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix; member in struct:SkOTTableGlyphData::Composite::Component::Transform::WordValue
187 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix; member in struct:SkOTTableGlyphData::Composite::Component::Transform::ByteValue
193 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix; member in struct:SkOTTableGlyphData::Composite::Component::Transform::WordIndex
199 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix; member in struct:SkOTTableGlyphData::Composite::Component::Transform::ByteIndex
/external/skia/src/utils/
H A DSkCamera.cpp249 void SkCamera3D::patchToMatrix(const SkPatch3D& quilt, SkMatrix* matrix) const {
268 matrix->set(SkMatrix::kMScaleX, SkScalarDotDiv(3, patchPtr, 1, mapPtr, 1, dot));
269 matrix->set(SkMatrix::kMSkewY, SkScalarDotDiv(3, patchPtr, 1, mapPtr+3, 1, dot));
270 matrix->set(SkMatrix::kMPersp0, SkScalarDotDiv(3, patchPtr, 1, mapPtr+6, 1, dot));
273 matrix->set(SkMatrix::kMSkewX, SkScalarDotDiv(3, patchPtr, 1, mapPtr, 1, dot));
274 matrix->set(SkMatrix::kMScaleY, SkScalarDotDiv(3, patchPtr, 1, mapPtr+3, 1, dot));
275 matrix->set(SkMatrix::kMPersp1, SkScalarDotDiv(3, patchPtr, 1, mapPtr+6, 1, dot));
278 matrix->set(SkMatrix::kMTransX, SkScalarDotDiv(3, patchPtr, 1, mapPtr, 1, dot));
279 matrix->set(SkMatrix::kMTransY, SkScalarDotDiv(3, patchPtr, 1, mapPtr+3, 1, dot));
280 matrix
369 SkMatrix matrix; local
[all...]
/external/eigen/Eigen/src/UmfPackSupport/
H A DUmfPackSupport.h114 * using the UmfPack library. The sparse matrix A must be squared and full rank.
117 * \warning The input matrix A should be in a \b compressed and \b column-major form.
118 * Otherwise an expensive copy will be made. You can call the inexpensive makeCompressed() to get a compressed matrix.
119 * \tparam _MatrixType the type of the sparse matrix A, it must be a SparseMatrix<>
141 UmfPackLU(const MatrixType& matrix) argument
144 compute(matrix);
159 * \c NumericalIssue if the matrix.appears to be negative.
191 /** Computes the sparse Cholesky decomposition of \a matrix
192 * Note that the matrix should be column-major, and in compressed format for best performance.
195 void compute(const MatrixType& matrix) argument
233 analyzePattern(const MatrixType& matrix) argument
258 factorize(const MatrixType& matrix) argument
[all...]
/external/pdfium/fpdfsdk/src/
H A Dfpdf_transformpage.cpp79 DLLEXPORT FPDF_BOOL STDCALL FPDFPage_TransFormWithClip(FPDF_PAGE page, FS_MATRIX* matrix, FS_RECTF* clipRect) argument
93 bsMatix.Format("%f %f %f %f %f %f cm ", matrix->a, matrix->b,matrix->c,matrix->d,matrix->e,matrix->f);
179 CFX_AffineMatrix t = *(CFX_AffineMatrix*)matrix;
194 CFX_AffineMatrix matrix((FX_FLOAT)a,(FX_FLOAT)b,(FX_FLOAT)c,(FX_FLOAT)d,(FX_FLOAT)e,(FX_FLOAT)f);
198 pPageObj->TransformClipPath(matrix);
[all...]
/external/ceres-solver/internal/ceres/
H A Dpartitioned_matrix_view.h33 // have access to the two parts of the matrix as linear operators
52 // Given generalized bi-partite matrix A = [E F], with the same block
59 // block structure of the matrix does not satisfy the requirements of
78 // Create and return the block diagonal of the matrix E'E.
81 // Create and return the block diagonal of the matrix F'F. Caller
85 // Compute the block diagonal of the matrix E'E and store it in
86 // block_diagonal. The matrix block_diagonal is expected to have a
93 // Compute the block diagonal of the matrix F'F and store it in
94 // block_diagonal. The matrix block_diagonal is expected to have a
109 const BlockSparseMatrix& matrix);
[all...]
/external/chromium_org/cc/blink/
H A Dweb_filter_operations_impl.cc70 void WebFilterOperationsImpl::appendColorMatrixFilter(SkScalar matrix[20]) { argument
72 cc::FilterOperation::CreateColorMatrixFilter(matrix));
/external/chromium_org/ppapi/c/
H A Dppb_compositor_layer.h158 * applies a transform matrix on the layer first, and then clips the layer
170 * Sets a transform matrix which is used to composite the layer.
174 * param[in] matrix A float array with 16 elements. The matrix is
175 * column major. The default transform matrix is an identity matrix.
179 int32_t (*SetTransform)(PP_Resource layer, const float matrix[16]);
253 int32_t (*SetTransform)(PP_Resource layer, const float matrix[16]);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGTransformList.idl44 SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DProfilingCanvas.cpp200 void ProfilingCanvas::onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path, const SkMatrix* matrix, const SkPaint& paint) argument
203 this->SkCanvas::onDrawTextOnPath(text, byteLength, path, matrix, paint);
242 void ProfilingCanvas::onDrawPicture(const SkPicture* picture, const SkMatrix* matrix, const SkPaint* paint) argument
245 this->SkCanvas::onDrawPicture(picture, matrix, paint);
248 void ProfilingCanvas::didSetMatrix(const SkMatrix& matrix) argument
251 this->SkCanvas::didSetMatrix(matrix);
254 void ProfilingCanvas::didConcat(const SkMatrix& matrix) argument
257 this->SkCanvas::didConcat(matrix);
H A DReplayingCanvas.cpp214 void ReplayingCanvas::onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path, const SkMatrix* matrix, const SkPaint& paint) argument
217 this->SkCanvas::onDrawTextOnPath(text, byteLength, path, matrix, paint);
256 void ReplayingCanvas::onDrawPicture(const SkPicture* picture, const SkMatrix* matrix, const SkPaint* paint) argument
259 this->SkCanvas::onDrawPicture(picture, matrix, paint);
262 void ReplayingCanvas::didSetMatrix(const SkMatrix& matrix) argument
265 this->SkCanvas::didSetMatrix(matrix);
268 void ReplayingCanvas::didConcat(const SkMatrix& matrix) argument
271 this->SkCanvas::didConcat(matrix);
/external/chromium_org/third_party/freetype/include/freetype/
H A Dftrender.h50 const FT_Matrix* matrix,
96 const FT_Matrix* matrix,
/external/chromium_org/third_party/skia/experimental/PdfViewer/
H A DSkPdfUtils.h65 SkRect bBox, SkMatrix matrix, double textSize);
72 void SkTraceMatrix(const SkMatrix& matrix, const char* sz);
/external/chromium_org/third_party/skia/include/utils/
H A DSkLayer.h88 /** Return, in matrix, the matix transfomations that are applied locally
89 when this layer draws (i.e. its position and matrix/anchorPoint).
93 void getLocalTransform(SkMatrix* matrix) const;
95 /** Return, in matrix, the concatenation of transforms that are applied
97 This is the matrix that is applied to the layer during drawing.
99 void localToGlobal(SkMatrix* matrix) const;
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A Dsubfigure.m6 % become the p-th tile in an m-by-n matrix of windows. (The interpretation of
/external/chromium_org/ui/android/java/src/org/chromium/ui/gl/
H A DSurfaceTexturePlatformWrapper.java69 private static void getTransformMatrix(SurfaceTexture surfaceTexture, float[] matrix) { argument
70 surfaceTexture.getTransformMatrix(matrix);
/external/eigen/Eigen/src/Core/
H A DNestByValue.h43 inline NestByValue(const ExpressionType& matrix) : m_expression(matrix) {} argument
/external/freetype/include/
H A Dftrender.h50 const FT_Matrix* matrix,
96 const FT_Matrix* matrix,

Completed in 3481 milliseconds

<<11121314151617181920>>