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

  /frameworks/av/media/libeffects/lvm/lib/Common/src/
From2iToMS_16x16.c 29 LVM_INT16 *dstM,
45 *dstM = (LVM_INT16)temp1;
46 dstM++;
  /external/skia/legacy/src/core/
SkMaskFilter.cpp 25 SkMask srcM, dstM;
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;
68 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
69 dst->set(dstM.fBounds);
SkRasterizer.cpp 25 SkMask srcM, dstM;
30 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
SkBitmap.cpp     [all...]
SkScalerContext.cpp 565 SkMask srcM, dstM;
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);
SkDraw.cpp 808 SkMask dstM;
810 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) {
811 mask = &dstM;
813 dstM.fImage = NULL;
815 SkAutoMaskFreeImage ami(dstM.fImage);
    [all...]
  /external/skia/src/core/
SkRasterizer.cpp 24 SkMask srcM, dstM;
29 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
SkMaskFilter.cpp 224 SkMask srcM, dstM;
233 if (!this->filterMask(&dstM, srcM, matrix, NULL)) {
236 SkAutoMaskFreeImage autoDst(dstM.fImage);
242 SkRegion::Cliperator clipper(wrapper.getRgn(), dstM.fBounds);
244 if (!clipper.done() && (bounder == NULL || bounder->doIRect(dstM.fBounds))) {
247 blitter->blitMask(dstM, cr);
266 SkMask srcM, dstM;
274 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
275 dst->set(dstM.fBounds);
SkBitmap.cpp     [all...]
SkScalerContext.cpp 561 SkMask srcM, dstM;
569 if (fMaskFilter->filterMask(&dstM, srcM, matrix, NULL)) {
570 int width = SkFastMin32(origGlyph.fWidth, dstM.fBounds.width());
571 int height = SkFastMin32(origGlyph.fHeight, dstM.fBounds.height());
573 int srcRB = dstM.fRowBytes;
575 const uint8_t* src = (const uint8_t*)dstM.fImage;
578 if (SkMask::k3D_Format == dstM.fFormat) {
583 // clean out our glyph, since it may be larger than dstM
591 SkMask::FreeImage(dstM.fImage);
SkDraw.cpp 927 SkMask dstM;
929 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) {
930 mask = &dstM;
932 dstM.fImage = NULL;
934 SkAutoMaskFreeImage ami(dstM.fImage);
    [all...]
  /external/skia/src/effects/
SkBlurMaskFilter.cpp 175 SkMask srcM, dstM;
180 if (!this->filterMask(&dstM, srcM, matrix, &margin)) {
196 * with our outer-rect (dstM.fBounds)
202 int smallW = dstM.fBounds.width() - srcM.fBounds.width() + 2;
203 int smallH = dstM.fBounds.height() - srcM.fBounds.height() + 2;
248 patch->fOuterRect = dstM.fBounds;
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
VectorArithmetic.h 145 LVM_INT16 *dstM,
  /external/skia/src/gpu/
SkGpuDevice.cpp 871 SkMask srcM, dstM;
879 if (!filter->filterMask(&dstM, srcM, context->getMatrix(), NULL)) {
882 // this will free-up dstM when we're done (allocated in filterMask())
883 SkAutoMaskFreeImage autoDst(dstM.fImage);
885 if (clip.quickReject(dstM.fBounds)) {
888 if (bounder && !bounder->doIRect(dstM.fBounds)) {
892 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
898 desc.fWidth = dstM.fBounds.width();
899 desc.fHeight = dstM.fBounds.height();
909 dstM.fImage, dstM.fRowBytes)
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 353 Module *DstM, *SrcM;
358 /// they are now in DstM. ValueToValueMapTy is a ValueMap, which involves
382 ModuleLinker(Module *dstM, Module *srcM, unsigned mode)
383 : DstM(dstM), SrcM(srcM), Mode(mode) { }
411 GlobalValue *DGV = DstM->getNamedValue(SrcGV->getName());
598 DstStructTypes.run(*DstM, true);
614 if (StructType *DST = DstM->getTypeByName(ST->getName().substr(0, DotPos)))
754 new GlobalVariable(*DstM, TypeMap.get(SGV->getType()->getElementType()),
807 SF->getLinkage(), SF->getName(), DstM);
    [all...]

Completed in 1129 milliseconds