Searched defs:dstM (Results 1 - 7 of 7) sorted by relevance

/external/skia/src/core/
H A DSkRasterizer.cpp25 SkMask srcM, dstM; local
30 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
H A DSkMaskFilter.cpp25 SkMask srcM, dstM; local
33 if (!this->filterMask(&dstM, srcM, matrix, NULL)) {
36 SkAutoMaskFreeImage autoDst(dstM.fImage);
42 SkRegion::Cliperator clipper(wrapper.getRgn(), dstM.fBounds);
44 if (!clipper.done() && (bounder == NULL || bounder->doIRect(dstM.fBounds))) {
47 blitter->blitMask(dstM, cr);
60 SkMask srcM, dstM; local
68 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
69 dst->set(dstM.fBounds);
H A DSkScalerContext.cpp565 SkMask srcM, dstM; local
573 if (fMaskFilter->filterMask(&dstM, srcM, matrix, NULL)) {
574 int width = SkFastMin32(origGlyph.fWidth, dstM.fBounds.width());
575 int height = SkFastMin32(origGlyph.fHeight, dstM.fBounds.height());
577 int srcRB = dstM.fRowBytes;
579 const uint8_t* src = (const uint8_t*)dstM.fImage;
582 if (SkMask::k3D_Format == dstM.fFormat) {
587 // clean out our glyph, since it may be larger than dstM
595 SkMask::FreeImage(dstM.fImage);
H A DSkBitmap.cpp1299 SkMask srcM, dstM; local
1311 if (!filter->filterMask(&dstM, srcM, identity, NULL)) {
1314 dstM.fRowBytes = SkAlign4(dstM.fBounds.width());
1336 if (!filter->filterMask(&dstM, srcM, identity, NULL)) {
1339 SkAutoMaskFreeImage dstCleanup(dstM.fImage);
1341 tmpBitmap.setConfig(SkBitmap::kA8_Config, dstM.fBounds.width(),
1342 dstM.fBounds.height(), dstM.fRowBytes);
1349 memcpy(tmpBitmap.getPixels(), dstM
[all...]
H A DSkDraw.cpp808 SkMask dstM; local
810 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) {
811 mask = &dstM;
813 dstM.fImage = NULL;
815 SkAutoMaskFreeImage ami(dstM.fImage);
2560 SkMask srcM, dstM; local
2565 if (!filter->filterMask(&dstM, srcM, *filterMatrix, &margin)) {
/external/llvm/lib/Linker/
H A DLinkModules.cpp382 ModuleLinker(Module *dstM, Module *srcM, unsigned mode) argument
383 : DstM(dstM), SrcM(srcM), Mode(mode) { }
/external/skia/src/gpu/
H A DSkGpuDevice.cpp1036 SkMask srcM, dstM; local
1044 if (!filter->filterMask(&dstM, srcM, matrix, NULL)) {
1047 // this will free-up dstM when we're done (allocated in filterMask())
1048 SkAutoMaskFreeImage autoDst(dstM.fImage);
1050 if (clip.quickReject(dstM.fBounds)) {
1053 if (bounder && !bounder->doIRect(dstM.fBounds)) {
1057 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
1067 dstM.fBounds.width(),
1068 dstM.fBounds.height(),
1080 dstM
[all...]

Completed in 100 milliseconds