Home
last modified time | relevance | path

Searched refs:FetchPart (Results 1 – 16 of 16) sorted by relevance

/dports/graphics/blend2d/blend2d-592d1ba52672bbf6365aba476bfe26b7bd2dfab8/src/blend2d/pipegen/
H A Dfetchpart.cpp19 FetchPart::FetchPart(PipeCompiler* pc, uint32_t fetchType, uint32_t fetchPayload, uint32_t format) … in FetchPart() function in BLPipeGen::FetchPart
54 void FetchPart::fini() noexcept { in fini()
63 void FetchPart::_initPart(x86::Gp& x, x86::Gp& y) noexcept { in _initPart()
68 void FetchPart::_finiPart() noexcept {} in _finiPart()
75 void FetchPart::advanceY() noexcept { in advanceY()
79 void FetchPart::startAtX(x86::Gp& x) noexcept { in startAtX()
94 void FetchPart::prefetch1() noexcept { in prefetch1()
98 void FetchPart::enterN() noexcept { in enterN()
102 void FetchPart::leaveN() noexcept { in leaveN()
106 void FetchPart::prefetchN() noexcept { in prefetchN()
[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()
66 …BL_INLINE FetchPart* srcPart() const noexcept { return reinterpret_cast<FetchPart*>(_children[kInd… in srcPart()
H A Dfetchpart_p.h23 class FetchPart : public PipePart {
25 BL_NONCOPYABLE(FetchPart)
62 FetchPart(PipeCompiler* pc, uint32_t fetchType, uint32_t fetchPayload, uint32_t format) noexcept;
H A Dfetchsolidpart_p.h23 class FetchSolidPart : public FetchPart {
H A Dfetchpixelptrpart.cpp20 : FetchPart(pc, fetchType, fetchPayload, format) { in FetchPixelPtrPart()
H A Dfetchpixelptrpart_p.h23 class FetchPixelPtrPart : public FetchPart {
H A Dpipegenruntime.cpp195 FetchPart* dstPart = pc.newFetchPart(BL_PIPE_FETCH_TYPE_PIXEL_PTR, 0, sig.dstFormat()); in _compileFillFunc()
196 FetchPart* srcPart = pc.newFetchPart(sig.fetchType(), sig.fetchPayload(), sig.srcFormat()); in _compileFillFunc()
H A Dfetchgradientpart_p.h23 class FetchGradientPart : public FetchPart {
H A Dfetchpatternpart_p.h23 class FetchPatternPart : public FetchPart {
H A Dfetchsolidpart.cpp23 : FetchPart(pc, fetchType, fetchPayload, format) { in FetchSolidPart()
H A Dpipegencore_p.h40 class FetchPart; variable
H A Dpipecompiler.cpp113 FillPart* PipeCompiler::newFillPart(uint32_t fillType, FetchPart* dstPart, CompOpPart* compOpPart) … in newFillPart()
126 FetchPart* PipeCompiler::newFetchPart(uint32_t fetchType, uint32_t fetchPayload, uint32_t format) n… in newFetchPart()
151 CompOpPart* PipeCompiler::newCompOpPart(uint32_t compOp, FetchPart* dstPart, FetchPart* srcPart) no… in newCompOpPart()
H A Dpipecompiler_p.h275 FillPart* newFillPart(uint32_t fillType, FetchPart* dstPart, CompOpPart* compOpPart) noexcept;
276 FetchPart* newFetchPart(uint32_t fetchType, uint32_t fetchPayload, uint32_t format) noexcept;
277 CompOpPart* newCompOpPart(uint32_t compOp, FetchPart* dstPart, FetchPart* srcPart) noexcept;
H A Dfetchgradientpart.cpp24 : FetchPart(pc, fetchType, fetchPayload, format), in FetchGradientPart()
H A Dfetchpatternpart.cpp24 : FetchPart(pc, fetchType, fetchPayload, format), in FetchPatternPart()
1970 FetchPart::fetch8(p, flags); in fetch8()
H A Dcompoppart.cpp25 CompOpPart::CompOpPart(PipeCompiler* pc, uint32_t compOp, FetchPart* dstPart, FetchPart* srcPart) n… in CompOpPart()