HomeSort by relevance Sort by last modified time
    Searched refs:dstM (Results 1 - 10 of 10) 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++;
58 LVM_FLOAT *dstM,
74 *dstM = (LVM_FLOAT)temp1;
75 dstM++;
  /external/skia/src/core/
SkRasterizer.cpp 22 SkMask srcM, dstM;
26 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
SkMaskFilter.cpp 260 SkMask srcM, dstM;
269 if (!this->filterMask(&dstM, srcM, matrix, nullptr)) {
272 SkAutoMaskFreeImage autoDst(dstM.fImage);
278 SkRegion::Cliperator clipper(wrapper.getRgn(), dstM.fBounds);
283 blitter->blitMask(dstM, cr);
341 SkMask srcM, dstM;
348 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
349 dst->set(dstM.fBounds);
SkBitmap.cpp 568 SkMask srcM, dstM;
579 if (!filter->filterMask(&dstM, srcM, identity, nullptr)) {
582 dstM.fRowBytes = SkAlign4(dstM.fBounds.width());
603 if (!filter->filterMask(&dstM, srcM, identity, nullptr)) {
606 SkAutoMaskFreeImage dstCleanup(dstM.fImage);
608 tmpBitmap.setInfo(SkImageInfo::MakeA8(dstM.fBounds.width(), dstM.fBounds.height()),
609 dstM.fRowBytes);
616 memcpy(tmpBitmap.getPixels(), dstM.fImage, dstM.computeImageSize())
    [all...]
SkScalerContext.cpp 516 SkMask srcM, dstM;
538 if (fMaskFilter->filterMask(&dstM, srcM, matrix, nullptr)) {
539 int width = SkFastMin32(origGlyph.fWidth, dstM.fBounds.width());
540 int height = SkFastMin32(origGlyph.fHeight, dstM.fBounds.height());
542 int srcRB = dstM.fRowBytes;
544 const uint8_t* src = (const uint8_t*)dstM.fImage;
547 if (SkMask::k3D_Format == dstM.fFormat) {
552 // clean out our glyph, since it may be larger than dstM
560 SkMask::FreeImage(dstM.fImage);
SkDraw.cpp 835 SkMask dstM;
837 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, nullptr)) {
838 mask = &dstM;
840 SkAutoMaskFreeImage ami(dstM.fImage);
    [all...]
  /external/skia/src/gpu/
GrBlurUtils.cpp 62 SkMask srcM, dstM;
69 if (!filter->filterMask(&dstM, srcM, viewMatrix, nullptr)) {
72 // this will free-up dstM when we're done (allocated in filterMask())
73 SkAutoMaskFreeImage autoDst(dstM.fImage);
75 if (clip_bounds_quick_reject(clipBounds, dstM.fBounds)) {
79 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
83 desc.fWidth = dstM.fBounds.width();
84 desc.fHeight = dstM.fBounds.height();
96 if (!sContext->writePixels(ii, dstM.fImage, dstM.fRowBytes, 0, 0))
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
VectorArithmetic.h 202 LVM_FLOAT *dstM,
207 LVM_INT16 *dstM,
  /external/skia/src/effects/
SkBlurMaskFilter.cpp 91 bool filterRectMask(SkMask* dstM, const SkRect& r, const SkMatrix& matrix,
93 bool filterRRectMask(SkMask* dstM, const SkRRect& r, const SkMatrix& matrix,
502 SkMask srcM, dstM;
511 filterResult = this->filterRRectMask(&dstM, rrect, matrix, &margin,
516 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
589 patch->fOuterRect = dstM.fBounds;
622 SkMask srcM, dstM;
631 filterResult = this->filterRectMask(&dstM, rects[0], matrix, &margin,
634 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
653 * with our outer-rect (dstM.fBounds
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Linker/
LinkModules.cpp 321 Module *DstM, *SrcM;
326 /// they are now in DstM. ValueToValueMapTy is a ValueMap, which involves
347 ModuleLinker(Module *dstM, Module *srcM, unsigned mode)
348 : DstM(dstM), SrcM(srcM), Mode(mode) { }
374 GlobalValue *DGV = DstM->getNamedValue(SrcGV->getName());
657 new GlobalVariable(*DstM, TypeMap.get(SGV->getType()->getElementType()),
704 SF->getLinkage(), SF->getName(), DstM);
746 /*aliasee*/0, DstM);
    [all...]

Completed in 218 milliseconds