HomeSort by relevance Sort by last modified time
    Searched refs:dstM (Results 1 - 17 of 17) 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/chromium_org/third_party/skia/src/core/
SkRasterizer.cpp 24 SkMask srcM, dstM;
29 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
SkMaskFilter.cpp 238 SkMask srcM, dstM;
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;
351 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
352 dst->set(dstM.fBounds);
SkScalerContext.cpp 696 SkMask srcM, dstM;
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);
SkBitmap.cpp     [all...]
SkDraw.cpp 936 SkMask dstM;
938 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) {
939 mask = &dstM;
941 dstM.fImage = NULL;
943 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 259 SkMask srcM, dstM;
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;
378 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
379 dst->set(dstM.fBounds);
SkScalerContext.cpp 696 SkMask srcM, dstM;
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);
SkBitmap.cpp     [all...]
SkDraw.cpp 937 SkMask dstM;
939 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) {
940 mask = &dstM;
942 dstM.fImage = NULL;
944 SkAutoMaskFreeImage ami(dstM.fImage);
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkBlurMaskFilter.cpp 56 bool filterRectMask(SkMask* dstM, const SkRect& r, const SkMatrix& matrix,
239 SkMask srcM, dstM;
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/
SkBlurMaskFilter.cpp 61 bool filterRectMask(SkMask* dstM, const SkRect& r, const SkMatrix& matrix,
293 SkMask srcM, dstM;
299 if (!this->filterMask(&dstM, srcM, matrix, &margin)) {
354 patch->fOuterRect = dstM.fBounds;
388 SkMask srcM, dstM;
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.fBounds.height() - srcM.fBounds.height() + 2
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
VectorArithmetic.h 145 LVM_INT16 *dstM,
  /external/chromium_org/third_party/skia/src/gpu/
SkGpuDevice.cpp 771 SkMask srcM, dstM;
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.fImage, dstM.fRowBytes)
    [all...]
  /external/skia/src/gpu/
SkGpuDevice.cpp 771 SkMask srcM, dstM;
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.fImage, dstM.fRowBytes)
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 365 Module *DstM;
368 ValueMaterializerTy(TypeMapTy &TypeMap, Module *DstM,
370 ValueMaterializer(), TypeMap(TypeMap), DstM(DstM),
380 Module *DstM, *SrcM;
386 /// they are now in DstM. ValueToValueMapTy is a ValueMap, which involves
410 ModuleLinker(Module *dstM, TypeSet &Set, Module *srcM, unsigned mode)
411 : DstM(dstM), SrcM(srcM), TypeMap(Set),
412 ValMaterializer(TypeMap, DstM, LazilyLinkFunctions)
    [all...]

Completed in 788 milliseconds