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

/external/chromium_org/third_party/skia/src/core/
H A DSkRasterizer.cpp24 SkMask srcM, dstM; local
29 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
H A DSkMaskFilter.cpp238 SkMask srcM, dstM; local
247 if (!this->filterMask(&dstM, srcM, matrix, NULL)) {
250 SkAutoMaskFreeImage autoDst(dstM.fImage);
256 SkRegion::Cliperator clipper(wrapper.getRgn(), dstM.fBounds);
258 if (!clipper.done() && (bounder == NULL || bounder->doIRect(dstM.fBounds))) {
261 blitter->blitMask(dstM, cr);
343 SkMask srcM, dstM; local
351 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
352 dst->set(dstM.fBounds);
H A DSkScalerContext.cpp696 SkMask srcM, dstM; local
718 if (fMaskFilter->filterMask(&dstM, srcM, matrix, NULL)) {
719 int width = SkFastMin32(origGlyph.fWidth, dstM.fBounds.width());
720 int height = SkFastMin32(origGlyph.fHeight, dstM.fBounds.height());
722 int srcRB = dstM.fRowBytes;
724 const uint8_t* src = (const uint8_t*)dstM.fImage;
727 if (SkMask::k3D_Format == dstM.fFormat) {
732 // clean out our glyph, since it may be larger than dstM
740 SkMask::FreeImage(dstM.fImage);
H A DSkBitmap.cpp1516 SkMask srcM, dstM; local
1528 if (!filter->filterMask(&dstM, srcM, identity, NULL)) {
1531 dstM.fRowBytes = SkAlign4(dstM.fBounds.width());
1553 if (!filter->filterMask(&dstM, srcM, identity, NULL)) {
1556 SkAutoMaskFreeImage dstCleanup(dstM.fImage);
1558 tmpBitmap.setConfig(SkBitmap::kA8_Config, dstM.fBounds.width(),
1559 dstM.fBounds.height(), dstM.fRowBytes);
1566 memcpy(tmpBitmap.getPixels(), dstM
[all...]
H A DSkDraw.cpp936 SkMask dstM; local
938 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) {
939 mask = &dstM;
941 dstM.fImage = NULL;
943 SkAutoMaskFreeImage ami(dstM.fImage);
2753 SkMask srcM, dstM; local
2758 if (!filter->filterMask(&dstM, srcM, *filterMatrix, &margin)) {
/external/skia/src/core/
H A DSkRasterizer.cpp24 SkMask srcM, dstM; local
29 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
H A DSkMaskFilter.cpp259 SkMask srcM, dstM; local
268 if (!this->filterMask(&dstM, srcM, matrix, NULL)) {
271 SkAutoMaskFreeImage autoDst(dstM.fImage);
277 SkRegion::Cliperator clipper(wrapper.getRgn(), dstM.fBounds);
279 if (!clipper.done() && (bounder == NULL || bounder->doIRect(dstM.fBounds))) {
282 blitter->blitMask(dstM, cr);
370 SkMask srcM, dstM; local
378 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
379 dst->set(dstM.fBounds);
H A DSkScalerContext.cpp696 SkMask srcM, dstM; local
718 if (fMaskFilter->filterMask(&dstM, srcM, matrix, NULL)) {
719 int width = SkFastMin32(origGlyph.fWidth, dstM.fBounds.width());
720 int height = SkFastMin32(origGlyph.fHeight, dstM.fBounds.height());
722 int srcRB = dstM.fRowBytes;
724 const uint8_t* src = (const uint8_t*)dstM.fImage;
727 if (SkMask::k3D_Format == dstM.fFormat) {
732 // clean out our glyph, since it may be larger than dstM
740 SkMask::FreeImage(dstM.fImage);
H A DSkBitmap.cpp1516 SkMask srcM, dstM; local
1528 if (!filter->filterMask(&dstM, srcM, identity, NULL)) {
1531 dstM.fRowBytes = SkAlign4(dstM.fBounds.width());
1553 if (!filter->filterMask(&dstM, srcM, identity, NULL)) {
1556 SkAutoMaskFreeImage dstCleanup(dstM.fImage);
1558 tmpBitmap.setConfig(SkBitmap::kA8_Config, dstM.fBounds.width(),
1559 dstM.fBounds.height(), dstM.fRowBytes);
1566 memcpy(tmpBitmap.getPixels(), dstM
[all...]
H A DSkDraw.cpp937 SkMask dstM; local
939 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) {
940 mask = &dstM;
942 dstM.fImage = NULL;
944 SkAutoMaskFreeImage ami(dstM.fImage);
2799 SkMask srcM, dstM; local
2804 if (!filter->filterMask(&dstM, srcM, *filterMatrix, &margin)) {
/external/chromium_org/third_party/skia/src/effects/
H A DSkBlurMaskFilter.cpp56 bool filterRectMask(SkMask* dstM, const SkRect& r, const SkMatrix& matrix,
239 SkMask srcM, dstM; local
249 filterResult = this->filterRectMask(&dstM, rects[0], matrix, &margin,
252 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
271 * with our outer-rect (dstM.fBounds)
277 int smallW = dstM.fBounds.width() - srcM.fBounds.width() + 2;
278 int smallH = dstM.fBounds.height() - srcM.fBounds.height() + 2;
330 patch->fOuterRect = dstM.fBounds;
/external/skia/src/effects/
H A DSkBlurMaskFilter.cpp61 bool filterRectMask(SkMask* dstM, const SkRect& r, const SkMatrix& matrix,
293 SkMask srcM, dstM; local
299 if (!this->filterMask(&dstM, srcM, matrix, &margin)) {
354 patch->fOuterRect = dstM.fBounds;
388 SkMask srcM, dstM; local
398 filterResult = this->filterRectMask(&dstM, rects[0], matrix, &margin,
401 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
420 * with our outer-rect (dstM.fBounds)
426 int smallW = dstM.fBounds.width() - srcM.fBounds.width() + 2;
427 int smallH = dstM
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DSkGpuDevice.cpp771 SkMask srcM, dstM; local
779 if (!filter->filterMask(&dstM, srcM, context->getMatrix(), NULL)) {
782 // this will free-up dstM when we're done (allocated in filterMask())
783 SkAutoMaskFreeImage autoDst(dstM.fImage);
785 if (clip.quickReject(dstM.fBounds)) {
788 if (bounder && !bounder->doIRect(dstM.fBounds)) {
792 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
795 desc.fWidth = dstM.fBounds.width();
796 desc.fHeight = dstM.fBounds.height();
806 dstM
[all...]
/external/skia/src/gpu/
H A DSkGpuDevice.cpp771 SkMask srcM, dstM; local
779 if (!filter->filterMask(&dstM, srcM, context->getMatrix(), NULL)) {
782 // this will free-up dstM when we're done (allocated in filterMask())
783 SkAutoMaskFreeImage autoDst(dstM.fImage);
785 if (clip.quickReject(dstM.fBounds)) {
788 if (bounder && !bounder->doIRect(dstM.fBounds)) {
792 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
795 desc.fWidth = dstM.fBounds.width();
796 desc.fHeight = dstM.fBounds.height();
806 dstM
[all...]
/external/llvm/lib/Linker/
H A DLinkModules.cpp410 ModuleLinker(Module *dstM, TypeSet &Set, Module *srcM, unsigned mode) argument
411 : DstM(dstM), SrcM(srcM), TypeMap(Set),

Completed in 2268 milliseconds