HomeSort by relevance Sort by last modified time
    Searched refs:srcM (Results 1 - 16 of 16) sorted by null

  /external/skia/legacy/src/core/
SkMaskFilter.cpp 25 SkMask srcM, dstM;
27 if (!SkDraw::DrawToMask(devPath, &clip.getBounds(), this, &matrix, &srcM,
31 SkAutoMaskFreeImage autoSrc(srcM.fImage);
33 if (!this->filterMask(&dstM, srcM, matrix, NULL)) {
60 SkMask srcM, dstM;
62 srcM.fImage = NULL;
63 src.roundOut(&srcM.fBounds);
64 srcM.fRowBytes = 0;
65 srcM.fFormat = SkMask::kA8_Format;
68 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin))
    [all...]
SkRasterizer.cpp 25 SkMask srcM, dstM;
27 srcM.fFormat = SkMask::kA8_Format;
28 srcM.fBounds.set(0, 0, 1, 1);
29 srcM.fImage = NULL;
30 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
SkBitmap.cpp     [all...]
SkDraw.cpp 801 void SkDraw::drawDevMask(const SkMask& srcM, const SkPaint& paint) const {
802 if (srcM.fBounds.isEmpty()) {
806 const SkMask* mask = &srcM;
810 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) {
    [all...]
SkScalerContext.cpp 565 SkMask srcM, dstM;
570 glyph->toMask(&srcM);
573 if (fMaskFilter->filterMask(&dstM, srcM, matrix, NULL)) {
  /external/skia/src/core/
SkRasterizer.cpp 24 SkMask srcM, dstM;
26 srcM.fFormat = SkMask::kA8_Format;
27 srcM.fBounds.set(0, 0, 1, 1);
28 srcM.fImage = NULL;
29 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
SkMaskFilter.cpp 224 SkMask srcM, dstM;
226 if (!SkDraw::DrawToMask(devPath, &clip.getBounds(), this, &matrix, &srcM,
231 SkAutoMaskFreeImage autoSrc(srcM.fImage);
233 if (!this->filterMask(&dstM, srcM, matrix, NULL)) {
266 SkMask srcM, dstM;
268 srcM.fImage = NULL;
269 src.roundOut(&srcM.fBounds);
270 srcM.fRowBytes = 0;
271 srcM.fFormat = SkMask::kA8_Format;
274 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin))
    [all...]
SkBitmap.cpp     [all...]
SkScalerContext.cpp 561 SkMask srcM, dstM;
566 glyph->toMask(&srcM);
569 if (fMaskFilter->filterMask(&dstM, srcM, matrix, NULL)) {
594 applyLUTToA8Mask(srcM, fPreBlendForFilter.fG);
SkDraw.cpp 920 void SkDraw::drawDevMask(const SkMask& srcM, const SkPaint& paint) const {
921 if (srcM.fBounds.isEmpty()) {
925 const SkMask* mask = &srcM;
929 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) {
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
MSTo2i_Sat_16x16.c 28 void MSTo2i_Sat_16x16(const LVM_INT16 *srcM,
39 mVal=(LVM_INT32)*srcM;
40 srcM++;
  /external/skia/src/effects/
SkBlurMaskFilter.cpp 175 SkMask srcM, dstM;
176 rects[0].roundOut(&srcM.fBounds);
177 srcM.fImage = NULL;
178 srcM.fFormat = SkMask::kA8_Format;
179 srcM.fRowBytes = 0;
180 if (!this->filterMask(&dstM, srcM, matrix, &margin)) {
202 int smallW = dstM.fBounds.width() - srcM.fBounds.width() + 2;
203 int smallH = dstM.fBounds.height() - srcM.fBounds.height() + 2;
207 innerIR = srcM.fBounds;
212 center.set(smallW + (innerIR.left() - srcM.fBounds.left())
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
VectorArithmetic.h 139 void MSTo2i_Sat_16x16( const LVM_INT16 *srcM,
  /external/skia/src/gpu/
SkGpuDevice.cpp 871 SkMask srcM, dstM;
873 if (!SkDraw::DrawToMask(devPath, &clip.getBounds(), filter, &context->getMatrix(), &srcM,
877 SkAutoMaskFreeImage autoSrc(srcM.fImage);
879 if (!filter->filterMask(&dstM, srcM, context->getMatrix(), NULL)) {
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 353 Module *DstM, *SrcM;
382 ModuleLinker(Module *dstM, Module *srcM, unsigned mode)
383 : DstM(dstM), SrcM(srcM), Mode(mode) { }
566 for (Module::global_iterator I = SrcM->global_begin(),
567 E = SrcM->global_end(); I != E; ++I) {
583 for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I) {
593 SrcStructTypes.run(*SrcM, true);
    [all...]
  /external/valgrind/main/VEX/priv/
guest_arm_toIR.c     [all...]

Completed in 312 milliseconds