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++;
  /external/skia/src/core/
SkRasterizer.cpp 22 SkMask srcM, dstM;
27 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
SkMaskFilter.cpp 263 SkMask srcM, dstM;
272 if (!this->filterMask(&dstM, srcM, matrix, NULL)) {
275 SkAutoMaskFreeImage autoDst(dstM.fImage);
281 SkRegion::Cliperator clipper(wrapper.getRgn(), dstM.fBounds);
286 blitter->blitMask(dstM, cr);
349 SkMask srcM, dstM;
357 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
358 dst->set(dstM.fBounds);
SkBitmap.cpp     [all...]
SkScalerContext.cpp 535 SkMask srcM, dstM;
557 if (fMaskFilter->filterMask(&dstM, srcM, matrix, NULL)) {
558 int width = SkFastMin32(origGlyph.fWidth, dstM.fBounds.width());
559 int height = SkFastMin32(origGlyph.fHeight, dstM.fBounds.height());
561 int srcRB = dstM.fRowBytes;
563 const uint8_t* src = (const uint8_t*)dstM.fImage;
566 if (SkMask::k3D_Format == dstM.fFormat) {
571 // clean out our glyph, since it may be larger than dstM
579 SkMask::FreeImage(dstM.fImage);
SkDraw.cpp 901 SkMask dstM;
903 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) {
904 mask = &dstM;
906 dstM.fImage = NULL;
908 SkAutoMaskFreeImage ami(dstM.fImage);
    [all...]
  /external/skia/src/effects/
SkBlurMaskFilter.cpp 87 bool filterRectMask(SkMask* dstM, const SkRect& r, const SkMatrix& matrix,
89 bool filterRRectMask(SkMask* dstM, const SkRRect& r, const SkMatrix& matrix,
352 SkMask srcM, dstM;
362 filterResult = this->filterRRectMask(&dstM, rrect, matrix, &margin,
367 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
440 patch->fOuterRect = dstM.fBounds;
472 SkMask srcM, dstM;
482 filterResult = this->filterRectMask(&dstM, rects[0], matrix, &margin,
485 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
504 * with our outer-rect (dstM.fBounds
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
VectorArithmetic.h 145 LVM_INT16 *dstM,
  /external/skia/src/gpu/
SkGpuDevice.cpp 666 SkMask srcM, dstM;
674 if (!filter->filterMask(&dstM, srcM, viewMatrix, NULL)) {
677 // this will free-up dstM when we're done (allocated in filterMask())
678 SkAutoMaskFreeImage autoDst(dstM.fImage);
680 if (clip_bounds_quick_reject(clipBounds, dstM.fBounds)) {
684 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
687 desc.fWidth = dstM.fBounds.width();
688 desc.fHeight = dstM.fBounds.height();
697 dstM.fImage, dstM.fRowBytes)
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 370 Module *DstM;
374 ValueMaterializerTy(TypeMapTy &TypeMap, Module *DstM,
376 : ValueMaterializer(), TypeMap(TypeMap), DstM(DstM),
397 Module *DstM, *SrcM;
403 /// in DstM. ValueToValueMapTy is a ValueMap, which involves some overhead
428 ModuleLinker(Module *dstM, Linker::IdentifiedStructTypeSet &Set, Module *srcM,
430 : DstM(dstM), SrcM(srcM), TypeMap(Set),
431 ValMaterializer(TypeMap, DstM, LazilyLinkGlobalValues)
    [all...]

Completed in 225 milliseconds