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

/external/chromium_org/third_party/skia/src/core/
H A DSkRasterizer.cpp22 SkMask srcM, dstM; local
27 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
H A DSkMaskFilter.cpp257 SkMask srcM, dstM; local
266 if (!this->filterMask(&dstM, srcM, matrix, NULL)) {
269 SkAutoMaskFreeImage autoDst(dstM.fImage);
275 SkRegion::Cliperator clipper(wrapper.getRgn(), dstM.fBounds);
280 blitter->blitMask(dstM, cr);
337 SkMask srcM, dstM; local
345 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
346 dst->set(dstM.fBounds);
H A DSkScalerContext.cpp570 SkMask srcM, dstM; local
592 if (fMaskFilter->filterMask(&dstM, srcM, matrix, NULL)) {
593 int width = SkFastMin32(origGlyph.fWidth, dstM.fBounds.width());
594 int height = SkFastMin32(origGlyph.fHeight, dstM.fBounds.height());
596 int srcRB = dstM.fRowBytes;
598 const uint8_t* src = (const uint8_t*)dstM.fImage;
601 if (SkMask::k3D_Format == dstM.fFormat) {
606 // clean out our glyph, since it may be larger than dstM
614 SkMask::FreeImage(dstM.fImage);
H A DSkBitmap.cpp1097 SkMask srcM, dstM; local
1109 if (!filter->filterMask(&dstM, srcM, identity, NULL)) {
1112 dstM.fRowBytes = SkAlign4(dstM.fBounds.width());
1133 if (!filter->filterMask(&dstM, srcM, identity, NULL)) {
1136 SkAutoMaskFreeImage dstCleanup(dstM.fImage);
1138 tmpBitmap.setInfo(SkImageInfo::MakeA8(dstM.fBounds.width(), dstM.fBounds.height()),
1139 dstM.fRowBytes);
1146 memcpy(tmpBitmap.getPixels(), dstM
[all...]
H A DSkDraw.cpp881 SkMask dstM; local
883 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) {
884 mask = &dstM;
886 dstM.fImage = NULL;
888 SkAutoMaskFreeImage ami(dstM.fImage);
2306 SkMask srcM, dstM; local
2311 if (!filter->filterMask(&dstM, srcM, *filterMatrix, &margin)) {
/external/skia/src/core/
H A DSkRasterizer.cpp22 SkMask srcM, dstM; local
27 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
H A DSkMaskFilter.cpp257 SkMask srcM, dstM; local
266 if (!this->filterMask(&dstM, srcM, matrix, NULL)) {
269 SkAutoMaskFreeImage autoDst(dstM.fImage);
275 SkRegion::Cliperator clipper(wrapper.getRgn(), dstM.fBounds);
280 blitter->blitMask(dstM, cr);
337 SkMask srcM, dstM; local
345 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
346 dst->set(dstM.fBounds);
H A DSkBitmap.cpp1152 SkMask srcM, dstM; local
1164 if (!filter->filterMask(&dstM, srcM, identity, NULL)) {
1167 dstM.fRowBytes = SkAlign4(dstM.fBounds.width());
1188 if (!filter->filterMask(&dstM, srcM, identity, NULL)) {
1191 SkAutoMaskFreeImage dstCleanup(dstM.fImage);
1193 tmpBitmap.setInfo(SkImageInfo::MakeA8(dstM.fBounds.width(), dstM.fBounds.height()),
1194 dstM.fRowBytes);
1201 memcpy(tmpBitmap.getPixels(), dstM
[all...]
H A DSkScalerContext.cpp744 SkMask srcM, dstM; local
766 if (fMaskFilter->filterMask(&dstM, srcM, matrix, NULL)) {
767 int width = SkFastMin32(origGlyph.fWidth, dstM.fBounds.width());
768 int height = SkFastMin32(origGlyph.fHeight, dstM.fBounds.height());
770 int srcRB = dstM.fRowBytes;
772 const uint8_t* src = (const uint8_t*)dstM.fImage;
775 if (SkMask::k3D_Format == dstM.fFormat) {
780 // clean out our glyph, since it may be larger than dstM
788 SkMask::FreeImage(dstM.fImage);
H A DSkDraw.cpp875 SkMask dstM; local
877 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) {
878 mask = &dstM;
880 dstM.fImage = NULL;
882 SkAutoMaskFreeImage ami(dstM.fImage);
2295 SkMask srcM, dstM; local
2300 if (!filter->filterMask(&dstM, srcM, *filterMatrix, &margin)) {
/external/chromium_org/third_party/skia/src/gpu/
H A DSkGpuDevice.cpp599 SkMask srcM, dstM; local
607 if (!filter->filterMask(&dstM, srcM, context->getMatrix(), NULL)) {
610 // this will free-up dstM when we're done (allocated in filterMask())
611 SkAutoMaskFreeImage autoDst(dstM.fImage);
613 if (clip.quickReject(dstM.fBounds)) {
617 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
620 desc.fWidth = dstM.fBounds.width();
621 desc.fHeight = dstM.fBounds.height();
631 dstM.fImage, dstM
[all...]
/external/skia/src/gpu/
H A DSkGpuDevice.cpp631 SkMask srcM, dstM; local
639 if (!filter->filterMask(&dstM, srcM, context->getMatrix(), NULL)) {
642 // this will free-up dstM when we're done (allocated in filterMask())
643 SkAutoMaskFreeImage autoDst(dstM.fImage);
645 if (clip.quickReject(dstM.fBounds)) {
649 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
652 desc.fWidth = dstM.fBounds.width();
653 desc.fHeight = dstM.fBounds.height();
663 dstM.fImage, dstM
[all...]
/external/chromium_org/third_party/skia/src/effects/
H A DSkBlurMaskFilter.cpp81 bool filterRectMask(SkMask* dstM, const SkRect& r, const SkMatrix& matrix,
83 bool filterRRectMask(SkMask* dstM, const SkRRect& r, const SkMatrix& matrix,
309 SkMask srcM, dstM; local
319 filterResult = this->filterRRectMask(&dstM, rrect, matrix, &margin,
324 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
391 patch->fOuterRect = dstM.fBounds;
421 SkMask srcM, dstM; local
431 filterResult = this->filterRectMask(&dstM, rects[0], matrix, &margin,
434 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
453 * with our outer-rect (dstM
[all...]
/external/llvm/lib/Linker/
H A DLinkModules.cpp414 ModuleLinker(Module *dstM, TypeSet &Set, Module *srcM, unsigned mode, argument
416 : DstM(dstM), SrcM(srcM), TypeMap(Set),
/external/skia/src/effects/
H A DSkBlurMaskFilter.cpp80 bool filterRectMask(SkMask* dstM, const SkRect& r, const SkMatrix& matrix,
82 bool filterRRectMask(SkMask* dstM, const SkRRect& r, const SkMatrix& matrix,
306 SkMask srcM, dstM; local
316 filterResult = this->filterRRectMask(&dstM, rrect, matrix, &margin,
321 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
388 patch->fOuterRect = dstM.fBounds;
418 SkMask srcM, dstM; local
428 filterResult = this->filterRectMask(&dstM, rects[0], matrix, &margin,
431 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
450 * with our outer-rect (dstM
[all...]

Completed in 1527 milliseconds