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

  /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++;
81 void MSTo2i_Sat_Float(const LVM_FLOAT *srcM,
92 mVal = (LVM_FLOAT)*srcM;
93 srcM++;
  /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 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
SkMaskFilter.cpp 260 SkMask srcM, dstM;
262 if (!SkDraw::DrawToMask(devPath, &clip.getBounds(), this, &matrix, &srcM,
267 SkAutoMaskFreeImage autoSrc(srcM.fImage);
269 if (!this->filterMask(&dstM, srcM, matrix, nullptr)) {
341 SkMask srcM, dstM;
343 srcM.fBounds = src.roundOut();
344 srcM.fRowBytes = 0;
345 srcM.fFormat = SkMask::kA8_Format;
348 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
351 dst->set(srcM.fBounds)
    [all...]
SkBitmap.cpp 568 SkMask srcM, dstM;
570 srcM.fBounds.set(0, 0, this->width(), this->height());
571 srcM.fRowBytes = SkAlign4(this->width());
572 srcM.fFormat = SkMask::kA8_Format;
579 if (!filter->filterMask(&dstM, srcM, identity, nullptr)) {
585 tmpBitmap.setInfo(SkImageInfo::MakeA8(this->width(), this->height()), srcM.fRowBytes);
592 GetBitmapAlpha(*this, tmpBitmap.getAddr8(0, 0), srcM.fRowBytes);
599 srcM.fImage = SkMask::AllocImage(srcM.computeImageSize());
600 SkAutoMaskFreeImage srcCleanup(srcM.fImage)
    [all...]
SkScalerContext.cpp 516 SkMask srcM, dstM;
523 glyph->toMask(&srcM);
524 if (SkMask::kARGB32_Format == srcM.fFormat) {
526 // and copy it into a temp buffer, and then point srcM at that temp.
527 srcM.fFormat = SkMask::kA8_Format;
528 srcM.fRowBytes = SkAlign4(srcM.fBounds.width());
529 size_t size = srcM.computeImageSize();
531 srcM.fImage = (uint8_t*)a8storage.get();
532 extract_alpha(srcM,
    [all...]
SkDraw.cpp 828 void SkDraw::drawDevMask(const SkMask& srcM, const SkPaint& paint) const {
829 if (srcM.fBounds.isEmpty()) {
833 const SkMask* mask = &srcM;
837 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, nullptr)) {
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
VectorArithmetic.h 190 void MSTo2i_Sat_Float( const LVM_FLOAT *srcM,
195 void MSTo2i_Sat_16x16( const LVM_INT16 *srcM,
  /external/skia/src/gpu/
GrBlurUtils.cpp 62 SkMask srcM, dstM;
63 if (!SkDraw::DrawToMask(devPath, &clipBounds, filter, &viewMatrix, &srcM,
67 SkAutoMaskFreeImage autoSrc(srcM.fImage);
69 if (!filter->filterMask(&dstM, srcM, viewMatrix, nullptr)) {
  /external/skia/src/effects/
SkBlurMaskFilter.cpp 502 SkMask srcM, dstM;
503 srcM.fBounds = rrect.rect().roundOut();
504 srcM.fFormat = SkMask::kA8_Format;
505 srcM.fRowBytes = 0;
516 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
575 if (!draw_rrect_into_mask(smallRR, &srcM)) {
579 SkAutoMaskFreeImage amf(srcM.fImage);
581 if (!this->filterMask(&patch->fMask, srcM, matrix, &margin)) {
622 SkMask srcM, dstM;
623 srcM.fBounds = rects[0].roundOut()
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Linker/
LinkModules.cpp 321 Module *DstM, *SrcM;
347 ModuleLinker(Module *dstM, Module *srcM, unsigned mode)
348 : DstM(dstM), SrcM(srcM), Mode(mode) { }
521 for (Module::global_iterator I = SrcM->global_begin(),
522 E = SrcM->global_end(); I != E; ++I) {
538 for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I) {
791 for (Module::const_global_iterator I = SrcM->global_begin(),
792 E = SrcM->global_end(); I != E; ++I)
    [all...]
  /external/valgrind/VEX/priv/
guest_arm64_toIR.c     [all...]
guest_arm_toIR.c     [all...]

Completed in 350 milliseconds