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

  /external/skia/src/core/
SkRasterizer.cpp 22 SkMask srcM, dstM;
24 srcM.fFormat = SkMask::kA8_Format;
25 srcM.fBounds.set(0, 0, 1, 1);
26 srcM.fImage = NULL;
27 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
SkMaskFilter.cpp 263 SkMask srcM, dstM;
265 if (!SkDraw::DrawToMask(devPath, &clip.getBounds(), this, &matrix, &srcM,
270 SkAutoMaskFreeImage autoSrc(srcM.fImage);
272 if (!this->filterMask(&dstM, srcM, matrix, NULL)) {
349 SkMask srcM, dstM;
351 srcM.fImage = NULL;
352 srcM.fBounds = src.roundOut();
353 srcM.fRowBytes = 0;
354 srcM.fFormat = SkMask::kA8_Format;
357 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin))
    [all...]
SkScalerContext.cpp 535 SkMask srcM, dstM;
542 glyph->toMask(&srcM);
543 if (SkMask::kARGB32_Format == srcM.fFormat) {
545 // and copy it into a temp buffer, and then point srcM at that temp.
546 srcM.fFormat = SkMask::kA8_Format;
547 srcM.fRowBytes = SkAlign4(srcM.fBounds.width());
548 size_t size = srcM.computeImageSize();
550 srcM.fImage = (uint8_t*)a8storage.get();
551 extract_alpha(srcM,
    [all...]
SkBitmap.cpp     [all...]
SkDraw.cpp 894 void SkDraw::drawDevMask(const SkMask& srcM, const SkPaint& paint) const {
895 if (srcM.fBounds.isEmpty()) {
899 const SkMask* mask = &srcM;
903 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 352 SkMask srcM, dstM;
353 srcM.fBounds = rrect.rect().roundOut();
354 srcM.fImage = NULL;
355 srcM.fFormat = SkMask::kA8_Format;
356 srcM.fRowBytes = 0;
367 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
426 if (!draw_rrect_into_mask(smallRR, &srcM)) {
430 SkAutoMaskFreeImage amf(srcM.fImage);
432 if (!this->filterMask(&patch->fMask, srcM, matrix, &margin)) {
472 SkMask srcM, dstM
    [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 666 SkMask srcM, dstM;
668 if (!SkDraw::DrawToMask(devPath, &clipBounds, filter, &viewMatrix, &srcM,
672 SkAutoMaskFreeImage autoSrc(srcM.fImage);
674 if (!filter->filterMask(&dstM, srcM, viewMatrix, NULL)) {
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 397 Module *DstM, *SrcM;
428 ModuleLinker(Module *dstM, Linker::IdentifiedStructTypeSet &Set, Module *srcM,
430 : DstM(dstM), SrcM(srcM), TypeMap(Set),
673 getComdatLeader(SrcM, ComdatName, SrcGV))
677 const DataLayout &SrcDL = SrcM->getDataLayout();
806 for (GlobalValue &SGV : SrcM->globals()) {
822 for (GlobalValue &SGV : *SrcM) {
827 for (GlobalValue &SGV : SrcM->aliases()) {
836 std::vector<StructType *> Types = SrcM->getIdentifiedStructTypes()
    [all...]
  /external/valgrind/VEX/priv/
guest_arm64_toIR.c     [all...]
guest_arm_toIR.c     [all...]

Completed in 187 milliseconds