HomeSort by relevance Sort by last modified time
    Searched refs:dstM (Results 1 - 11 of 11) sorted by null

  /frameworks/av/media/libeffects/lvm/lib/Common/src/
From2iToMS_16x16.c 29 LVM_INT16 *dstM,
45 *dstM = (LVM_INT16)temp1;
46 dstM++;
  /external/skia/src/core/
SkRasterizer.cpp 22 SkMask srcM, dstM;
26 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
SkMaskFilter.cpp 263 SkMask srcM, dstM;
272 if (!this->filterMask(&dstM, srcM, matrix, nullptr)) {
275 SkAutoMaskFreeImage autoDst(dstM.fImage);
281 SkRegion::Cliperator clipper(wrapper.getRgn(), dstM.fBounds);
286 blitter->blitMask(dstM, cr);
349 SkMask srcM, dstM;
356 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
357 dst->set(dstM.fBounds);
SkBitmap.cpp 1039 SkMask srcM, dstM;
    [all...]
SkScalerContext.cpp 535 SkMask srcM, dstM;
557 if (fMaskFilter->filterMask(&dstM, srcM, matrix, nullptr)) {
558 int width = SkFastMin32(origGlyph.fWidth, dstM.fBounds.width());
559 int height = SkFastMin32(origGlyph.fHeight, dstM.fBounds.height());
561 int srcRB = dstM.fRowBytes;
563 const uint8_t* src = (const uint8_t*)dstM.fImage;
566 if (SkMask::k3D_Format == dstM.fFormat) {
571 // clean out our glyph, since it may be larger than dstM
579 SkMask::FreeImage(dstM.fImage);
SkDraw.cpp 908 SkMask dstM;
910 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, nullptr)) {
911 mask = &dstM;
913 SkAutoMaskFreeImage ami(dstM.fImage);
    [all...]
  /external/skia/src/gpu/
GrBlurUtils.cpp 58 SkMask srcM, dstM;
66 if (!filter->filterMask(&dstM, srcM, viewMatrix, nullptr)) {
69 // this will free-up dstM when we're done (allocated in filterMask())
70 SkAutoMaskFreeImage autoDst(dstM.fImage);
72 if (clip_bounds_quick_reject(clipBounds, dstM.fBounds)) {
76 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
79 desc.fWidth = dstM.fBounds.width();
80 desc.fHeight = dstM.fBounds.height();
88 dstM.fImage, dstM.fRowBytes)
    [all...]
  /external/skia/src/effects/
SkBlurMaskFilter.cpp 89 bool filterRectMask(SkMask* dstM, const SkRect& r, const SkMatrix& matrix,
91 bool filterRRectMask(SkMask* dstM, const SkRRect& r, const SkMatrix& matrix,
352 SkMask srcM, dstM;
361 filterResult = this->filterRRectMask(&dstM, rrect, matrix, &margin,
366 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
439 patch->fOuterRect = dstM.fBounds;
471 SkMask srcM, dstM;
480 filterResult = this->filterRectMask(&dstM, rects[0], matrix, &margin,
483 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
502 * with our outer-rect (dstM.fBounds
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
VectorArithmetic.h 145 LVM_INT16 *dstM,
  /external/opencv3/modules/features2d/src/
evaluation.cpp 175 Mat_<double> dstM; invert(Aff*invM*Aff.t(), dstM);
177 projection = EllipticKeyPoint( dstCenter, Scalar(dstM(0,0), dstM(0,1), dstM(1,1)) );
  /external/opencv3/modules/imgproc/test/
test_imgwarp.cpp 664 Mat srcM, dstM(3, 3, CV_64F, m);
669 cv::invert(srcM, dstM, CV_SVD);
    [all...]

Completed in 209 milliseconds