Home
last modified time | relevance | path

Searched refs:dstM (Results 1 – 8 of 8) sorted by relevance

/external/skia/src/core/
DSkMaskFilter.cpp263 SkMask srcM, dstM; in filterPath() local
272 if (!this->filterMask(&dstM, srcM, matrix, NULL)) { in filterPath()
275 SkAutoMaskFreeImage autoDst(dstM.fImage); in filterPath()
281 SkRegion::Cliperator clipper(wrapper.getRgn(), dstM.fBounds); in filterPath()
286 blitter->blitMask(dstM, cr); in filterPath()
349 SkMask srcM, dstM; in computeFastBounds() local
357 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) { in computeFastBounds()
358 dst->set(dstM.fBounds); in computeFastBounds()
DSkRasterizer.cpp22 SkMask srcM, dstM; in rasterize() local
27 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) { in rasterize()
DSkBitmap.cpp1125 SkMask srcM, dstM; in extractAlpha() local
1137 if (!filter->filterMask(&dstM, srcM, identity, NULL)) { in extractAlpha()
1140 dstM.fRowBytes = SkAlign4(dstM.fBounds.width()); in extractAlpha()
1161 if (!filter->filterMask(&dstM, srcM, identity, NULL)) { in extractAlpha()
1164 SkAutoMaskFreeImage dstCleanup(dstM.fImage); in extractAlpha()
1166 tmpBitmap.setInfo(SkImageInfo::MakeA8(dstM.fBounds.width(), dstM.fBounds.height()), in extractAlpha()
1167 dstM.fRowBytes); in extractAlpha()
1174 memcpy(tmpBitmap.getPixels(), dstM.fImage, dstM.computeImageSize()); in extractAlpha()
1176 offset->set(dstM.fBounds.fLeft, dstM.fBounds.fTop); in extractAlpha()
DSkScalerContext.cpp535 SkMask srcM, dstM; in getImage() local
557 if (fMaskFilter->filterMask(&dstM, srcM, matrix, NULL)) { in getImage()
558 int width = SkFastMin32(origGlyph.fWidth, dstM.fBounds.width()); in getImage()
559 int height = SkFastMin32(origGlyph.fHeight, dstM.fBounds.height()); in getImage()
561 int srcRB = dstM.fRowBytes; in getImage()
563 const uint8_t* src = (const uint8_t*)dstM.fImage; in getImage()
566 if (SkMask::k3D_Format == dstM.fFormat) { in getImage()
579 SkMask::FreeImage(dstM.fImage); in getImage()
DSkDraw.cpp901 SkMask dstM; in drawDevMask() local
903 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) { in drawDevMask()
904 mask = &dstM; in drawDevMask()
906 dstM.fImage = NULL; in drawDevMask()
908 SkAutoMaskFreeImage ami(dstM.fImage); in drawDevMask()
2193 SkMask srcM, dstM; in compute_bounds() local
2198 if (!filter->filterMask(&dstM, srcM, *filterMatrix, &margin)) { in compute_bounds()
/external/skia/src/effects/
DSkBlurMaskFilter.cpp87 bool filterRectMask(SkMask* dstM, const SkRect& r, const SkMatrix& matrix,
89 bool filterRRectMask(SkMask* dstM, const SkRRect& r, const SkMatrix& matrix,
352 SkMask srcM, dstM; in filterRRectToNine() local
362 filterResult = this->filterRRectMask(&dstM, rrect, matrix, &margin, in filterRRectToNine()
367 filterResult = this->filterMask(&dstM, srcM, matrix, &margin); in filterRRectToNine()
440 patch->fOuterRect = dstM.fBounds; in filterRRectToNine()
472 SkMask srcM, dstM; in filterRectsToNine() local
482 filterResult = this->filterRectMask(&dstM, rects[0], matrix, &margin, in filterRectsToNine()
485 filterResult = this->filterMask(&dstM, srcM, matrix, &margin); in filterRectsToNine()
510 int smallW = dstM.fBounds.width() - srcM.fBounds.width() + 2; in filterRectsToNine()
[all …]
/external/skia/src/gpu/
DSkGpuDevice.cpp666 SkMask srcM, dstM; in draw_with_mask_filter() local
674 if (!filter->filterMask(&dstM, srcM, viewMatrix, NULL)) { in draw_with_mask_filter()
678 SkAutoMaskFreeImage autoDst(dstM.fImage); in draw_with_mask_filter()
680 if (clip_bounds_quick_reject(clipBounds, dstM.fBounds)) { in draw_with_mask_filter()
687 desc.fWidth = dstM.fBounds.width(); in draw_with_mask_filter()
688 desc.fHeight = dstM.fBounds.height(); in draw_with_mask_filter()
697 dstM.fImage, dstM.fRowBytes); in draw_with_mask_filter()
699 SkRect maskRect = SkRect::Make(dstM.fBounds); in draw_with_mask_filter()
/external/llvm/lib/Linker/
DLinkModules.cpp428 ModuleLinker(Module *dstM, Linker::IdentifiedStructTypeSet &Set, Module *srcM, in ModuleLinker() argument
430 : DstM(dstM), SrcM(srcM), TypeMap(Set), in ModuleLinker()