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

/external/skia/src/core/
H A DSkRasterizer.cpp22 SkMask srcM, dstM; local
27 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
H A DSkMaskFilter.cpp263 SkMask srcM, dstM; local
272 if (!this->filterMask(&dstM, srcM, matrix, NULL)) {
275 SkAutoMaskFreeImage autoDst(dstM.fImage);
281 SkRegion::Cliperator clipper(wrapper.getRgn(), dstM.fBounds);
286 blitter->blitMask(dstM, cr);
349 SkMask srcM, dstM; local
357 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
358 dst->set(dstM.fBounds);
H A DSkBitmap.cpp1125 SkMask srcM, dstM; local
1137 if (!filter->filterMask(&dstM, srcM, identity, NULL)) {
1140 dstM.fRowBytes = SkAlign4(dstM.fBounds.width());
1161 if (!filter->filterMask(&dstM, srcM, identity, NULL)) {
1164 SkAutoMaskFreeImage dstCleanup(dstM.fImage);
1166 tmpBitmap.setInfo(SkImageInfo::MakeA8(dstM.fBounds.width(), dstM.fBounds.height()),
1167 dstM.fRowBytes);
1174 memcpy(tmpBitmap.getPixels(), dstM
[all...]
H A DSkScalerContext.cpp535 SkMask srcM, dstM; local
557 if (fMaskFilter->filterMask(&dstM, srcM, matrix, NULL)) {
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);
H A DSkDraw.cpp901 SkMask dstM; local
903 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) {
904 mask = &dstM;
906 dstM.fImage = NULL;
908 SkAutoMaskFreeImage ami(dstM.fImage);
2193 SkMask srcM, dstM; local
2198 if (!filter->filterMask(&dstM, srcM, *filterMatrix, &margin)) {
/external/skia/src/effects/
H A 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; local
362 filterResult = this->filterRRectMask(&dstM, rrect, matrix, &margin,
367 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
440 patch->fOuterRect = dstM.fBounds;
472 SkMask srcM, dstM; local
482 filterResult = this->filterRectMask(&dstM, rects[0], matrix, &margin,
485 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
504 * with our outer-rect (dstM
[all...]
/external/skia/src/gpu/
H A DSkGpuDevice.cpp666 SkMask srcM, dstM; local
674 if (!filter->filterMask(&dstM, srcM, viewMatrix, NULL)) {
677 // this will free-up dstM when we're done (allocated in filterMask())
678 SkAutoMaskFreeImage autoDst(dstM.fImage);
680 if (clip_bounds_quick_reject(clipBounds, dstM.fBounds)) {
684 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
687 desc.fWidth = dstM.fBounds.width();
688 desc.fHeight = dstM.fBounds.height();
697 dstM.fImage, dstM
[all...]
/external/llvm/lib/Linker/
H A DLinkModules.cpp428 ModuleLinker(Module *dstM, Linker::IdentifiedStructTypeSet &Set, Module *srcM, argument
430 : DstM(dstM), SrcM(srcM), TypeMap(Set),

Completed in 213 milliseconds