Home
last modified time | relevance | path

Searched refs:dstPart (Results 1 – 8 of 8) sorted by relevance

/dports/graphics/blend2d/blend2d-592d1ba52672bbf6365aba476bfe26b7bd2dfab8/src/blend2d/pipegen/
H A Dfillpart_p.h37 …FillPart(PipeCompiler* pc, uint32_t fillType, FetchPixelPtrPart* dstPart, CompOpPart* compOpPart) …
39 inline FetchPixelPtrPart* dstPart() const noexcept { in dstPart() function
80 …FillBoxAAPart(PipeCompiler* pc, uint32_t fillType, FetchPixelPtrPart* dstPart, CompOpPart* compOpP…
99 …FillBoxAUPart(PipeCompiler* pc, uint32_t fillType, FetchPixelPtrPart* dstPart, CompOpPart* compOpP…
118 …FillAnalyticPart(PipeCompiler* pc, uint32_t fillType, FetchPixelPtrPart* dstPart, CompOpPart* comp…
H A Dfillpart.cpp23 FillPart::FillPart(PipeCompiler* pc, uint32_t fillType, FetchPixelPtrPart* dstPart, CompOpPart* com… in FillPart() argument
29 _children[kIndexDstPart] = dstPart; in FillPart()
39 : FillPart(pc, fillType, dstPart, compOpPart) { in FillBoxAAPart()
66 int dstBpp = int(dstPart()->bpp()); in compile()
79 dstPart()->initPtr(dstPtr); in compile()
177 : FillPart(pc, fillType, dstPart, compOpPart) { in FillBoxAUPart()
216 int dstBpp = int(dstPart()->bpp()); in compile()
231 dstPart()->initPtr(dstPtr); in compile()
345 : FillPart(pc, fillType, dstPart, compOpPart) { in FillAnalyticPart()
417 int dstBpp = int(dstPart()->bpp()); in compile()
[all …]
H A Dcompoppart_p.h63 CompOpPart(PipeCompiler* pc, uint32_t compOp, FetchPart* dstPart, FetchPart* srcPart) noexcept;
65 …BL_INLINE FetchPart* dstPart() const noexcept { return reinterpret_cast<FetchPart*>(_children[kInd… in dstPart() function
97 …BL_INLINE uint32_t maxPixelsOfChildren() const noexcept { return blMin(dstPart()->maxPixels(), src… in maxPixelsOfChildren()
H A Dcompoppart.cpp34 _hasDa(dstPart->hasAlpha()), in CompOpPart()
41 _children[kIndexDstPart] = dstPart; in CompOpPart()
130 dstPart()->fini(); in fini()
175 dstPart()->startAtX(x); in startAtX()
180 dstPart()->advanceX(x, diff); in advanceX()
185 dstPart()->advanceY(); in advanceY()
194 dstPart()->prefetch1(); in prefetch1()
199 dstPart()->enterN(); in enterN()
204 dstPart()->leaveN(); in leaveN()
209 dstPart()->prefetchN(); in prefetchN()
[all …]
H A Dpipegenruntime.cpp195 FetchPart* dstPart = pc.newFetchPart(BL_PIPE_FETCH_TYPE_PIXEL_PTR, 0, sig.dstFormat()); in _compileFillFunc() local
198 CompOpPart* compOpPart = pc.newCompOpPart(sig.compOp(), dstPart, srcPart); in _compileFillFunc()
199 FillPart* fillPart = pc.newFillPart(sig.fillType(), dstPart, compOpPart); in _compileFillFunc()
H A Dpipecompiler.cpp113 FillPart* PipeCompiler::newFillPart(uint32_t fillType, FetchPart* dstPart, CompOpPart* compOpPart) … in newFillPart() argument
115 return newPartT<FillBoxAAPart>(fillType, dstPart->as<FetchPixelPtrPart>(), compOpPart); in newFillPart()
118 return newPartT<FillBoxAUPart>(fillType, dstPart->as<FetchPixelPtrPart>(), compOpPart); in newFillPart()
121 return newPartT<FillAnalyticPart>(fillType, dstPart->as<FetchPixelPtrPart>(), compOpPart); in newFillPart()
151 CompOpPart* PipeCompiler::newCompOpPart(uint32_t compOp, FetchPart* dstPart, FetchPart* srcPart) no… in newCompOpPart() argument
152 return newPartT<CompOpPart>(compOp, dstPart, srcPart); in newCompOpPart()
H A Dpipecompiler_p.h275 FillPart* newFillPart(uint32_t fillType, FetchPart* dstPart, CompOpPart* compOpPart) noexcept;
277 CompOpPart* newCompOpPart(uint32_t compOp, FetchPart* dstPart, FetchPart* srcPart) noexcept;
/dports/devel/spark/spark-2.1.1/mllib/src/main/scala/org/apache/spark/ml/recommendation/
H A DALS.scala925 dstPart: Partitioner): RDD[((Int, Int), RatingBlock[ID])] = {
937 val numPartitions = srcPart.numPartitions * dstPart.numPartitions
942 val dstBlockId = dstPart.getPartition(r.item)
1180 dstPart: Partitioner,
1213 new UncompressedInBlockBuilder[ID](new LocalIndexEncoder(dstPart.numPartitions))
1221 val encoder = new LocalIndexEncoder(dstPart.numPartitions)
1222 val activeIds = Array.fill(dstPart.numPartitions)(mutable.ArrayBuilder.make[Int])
1224 val seen = new Array[Boolean](dstPart.numPartitions)