Home
last modified time | relevance | path

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

/external/skia/src/core/
DSkMaskFilter.cpp25 SkMask srcM, dstM; in filterPath() local
33 if (!this->filterMask(&dstM, srcM, matrix, NULL)) { in filterPath()
36 SkAutoMaskFreeImage autoDst(dstM.fImage); in filterPath()
42 SkRegion::Cliperator clipper(wrapper.getRgn(), dstM.fBounds); in filterPath()
44 if (!clipper.done() && (bounder == NULL || bounder->doIRect(dstM.fBounds))) { in filterPath()
47 blitter->blitMask(dstM, cr); in filterPath()
60 SkMask srcM, dstM; in computeFastBounds() local
68 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) { in computeFastBounds()
69 dst->set(dstM.fBounds); in computeFastBounds()
DSkRasterizer.cpp25 SkMask srcM, dstM; in rasterize() local
30 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) { in rasterize()
DSkScalerContext.cpp547 SkMask srcM, dstM; in getImage() local
555 if (fMaskFilter->filterMask(&dstM, srcM, matrix, NULL)) { in getImage()
556 int width = SkFastMin32(origGlyph.fWidth, dstM.fBounds.width()); in getImage()
557 int height = SkFastMin32(origGlyph.fHeight, dstM.fBounds.height()); in getImage()
559 int srcRB = dstM.fRowBytes; in getImage()
561 const uint8_t* src = (const uint8_t*)dstM.fImage; in getImage()
564 if (SkMask::k3D_Format == dstM.fFormat) { in getImage()
577 SkMask::FreeImage(dstM.fImage); in getImage()
DSkBitmap.cpp1299 SkMask srcM, dstM; in extractAlpha() local
1311 if (!filter->filterMask(&dstM, srcM, identity, NULL)) { in extractAlpha()
1314 dstM.fRowBytes = SkAlign4(dstM.fBounds.width()); in extractAlpha()
1336 if (!filter->filterMask(&dstM, srcM, identity, NULL)) { in extractAlpha()
1339 SkAutoMaskFreeImage dstCleanup(dstM.fImage); in extractAlpha()
1341 tmpBitmap.setConfig(SkBitmap::kA8_Config, dstM.fBounds.width(), in extractAlpha()
1342 dstM.fBounds.height(), dstM.fRowBytes); in extractAlpha()
1349 memcpy(tmpBitmap.getPixels(), dstM.fImage, dstM.computeImageSize()); in extractAlpha()
1351 offset->set(dstM.fBounds.fLeft, dstM.fBounds.fTop); in extractAlpha()
DSkDraw.cpp808 SkMask dstM; in drawDevMask() local
810 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) { in drawDevMask()
811 mask = &dstM; in drawDevMask()
813 dstM.fImage = NULL; in drawDevMask()
815 SkAutoMaskFreeImage ami(dstM.fImage); in drawDevMask()
2560 SkMask srcM, dstM; in compute_bounds() local
2565 if (!filter->filterMask(&dstM, srcM, *filterMatrix, &margin)) { in compute_bounds()
/external/skia/src/gpu/
DSkGpuDevice.cpp1036 SkMask srcM, dstM; in drawWithMaskFilter() local
1044 if (!filter->filterMask(&dstM, srcM, matrix, NULL)) { in drawWithMaskFilter()
1048 SkAutoMaskFreeImage autoDst(dstM.fImage); in drawWithMaskFilter()
1050 if (clip.quickReject(dstM.fBounds)) { in drawWithMaskFilter()
1053 if (bounder && !bounder->doIRect(dstM.fBounds)) { in drawWithMaskFilter()
1067 dstM.fBounds.width(), in drawWithMaskFilter()
1068 dstM.fBounds.height(), in drawWithMaskFilter()
1080 dstM.fImage, dstM.fRowBytes); in drawWithMaskFilter()
1093 d.setLTRB(GrIntToScalar(dstM.fBounds.fLeft), in drawWithMaskFilter()
1094 GrIntToScalar(dstM.fBounds.fTop), in drawWithMaskFilter()
[all …]
/external/llvm/lib/Linker/
DLinkModules.cpp380 ModuleLinker(Module *dstM, Module *srcM, unsigned mode) in ModuleLinker() argument
381 : DstM(dstM), SrcM(srcM), Mode(mode) { } in ModuleLinker()