Home
last modified time | relevance | path

Searched refs:Owner (Results 1 - 25 of 106) sorted by relevance

12345

/third_party/skia/src/gpu/ops/
H A DOpsTask.h76 void addOp(GrDrawingManager*, GrOp::Owner, GrTextureResolveManager, const GrCaps&);
78 void addDrawOp(GrDrawingManager*, GrOp::Owner, bool usesMSAA, const GrProcessorSet::Analysis&,
139 void recordOp(GrOp::Owner, bool usesMSAA, GrProcessorSet::Analysis, GrAppliedClip*,
164 OpChain(GrOp::Owner, GrProcessorSet::Analysis, GrAppliedClip*, const GrDstProxyView*);
194 GrOp::Owner appendOp(GrOp::Owner op, GrProcessorSet::Analysis, const GrDstProxyView*,
206 List(GrOp::Owner);
214 GrOp::Owner popHead();
215 GrOp::Owner removeOp(GrOp* op);
216 void pushHead(GrOp::Owner o
[all...]
H A DGrOvalOpFactory.h30 static GrOp::Owner MakeCircleOp(GrRecordingContext*,
37 static GrOp::Owner MakeOvalOp(GrRecordingContext*,
44 static GrOp::Owner MakeCircularRRectOp(GrRecordingContext*,
51 static GrOp::Owner MakeRRectOp(GrRecordingContext*,
58 static GrOp::Owner MakeArcOp(GrRecordingContext*,
H A DGrOp.h72 using Owner = std::unique_ptr<GrOp>;
75 static Owner Make(GrRecordingContext* context, Args&&... args) { in Make()
76 return Owner{new Op(std::forward<Args>(args)...)}; in Make()
80 static Owner MakeWithProcessorSet(
85 static Owner MakeWithExtraMemory( in MakeWithExtraMemory()
88 return Owner{new (bytes) Op(std::forward<Args>(args)...)}; in MakeWithExtraMemory()
238 void chainConcat(GrOp::Owner);
251 GrOp::Owner cutChain();
353 Owner fNextInChain{nullptr};
H A DFillRectOp.h39 static GrOp::Owner Make(GrRecordingContext*,
49 static GrOp::Owner MakeNonAARect(GrRecordingContext*,
74 static GrOp::Owner MakeOp(GrRecordingContext*,
H A DStrokeRectOp.h28 GrOp::Owner Make(GrRecordingContext*,
38 GrOp::Owner MakeNested(GrRecordingContext*,
H A DGrSimpleMeshDrawOpHelper.h37 static GrOp::Owner FactoryHelper(GrRecordingContext*, GrPaint&&, OpArgs&&...);
198 GrOp::Owner GrOp::MakeWithProcessorSet( in MakeWithProcessorSet()
204 return Owner{new (bytes) Op(processorSet, color, std::forward<Args>(args)...)}; in MakeWithProcessorSet()
208 GrOp::Owner GrSimpleMeshDrawOpHelper::FactoryHelper(GrRecordingContext* context, in FactoryHelper()
H A DGrOp.cpp31 void GrOp::chainConcat(GrOp::Owner next) { in chainConcat()
40 GrOp::Owner GrOp::cutChain() { in cutChain()
H A DClearOp.h25 static GrOp::Owner MakeColor(GrRecordingContext* context,
29 static GrOp::Owner MakeStencilClip(GrRecordingContext* context,
H A DOpsTask.cpp78 inline OpsTask::OpChain::List::List(GrOp::Owner op) in List()
93 inline GrOp::Owner OpsTask::OpChain::List::popHead() { in popHead()
104 inline GrOp::Owner OpsTask::OpChain::List::removeOp(GrOp* op) { in removeOp()
126 inline void OpsTask::OpChain::List::pushHead(GrOp::Owner op) { in pushHead()
139 inline void OpsTask::OpChain::List::pushTail(GrOp::Owner op) { in pushTail()
156 OpsTask::OpChain::OpChain(GrOp::Owner op, GrProcessorSet::Analysis processorAnalysis, in OpChain()
185 // Since the value goes out of scope immediately, the GrOp::Owner deletes the op. in deleteOps()
229 // The GrOp::Owner releases the op. in DoConcat()
238 GrOp::Owner detachedA = chainA.removeOp(a); in DoConcat()
239 // The GrOp::Owner release in DoConcat()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceStringPool.h82 /// unique integral ID from the Owner.
83 static StringID createWithoutString(const typename Traits::OwnerType *Owner) { in createWithoutString() argument
84 return StringID(Owner); in createWithoutString()
87 /// adding the string from the Owner's pool.
88 static StringID createWithString(const typename Traits::OwnerType *Owner, in createWithString() argument
90 return StringID(Owner, Value); in createWithString()
133 explicit StringID(const typename Traits::OwnerType *Owner) in StringID() argument
134 : ID(Traits::getStrings(Owner)->getNewID()) {} in StringID()
135 StringID(const typename Traits::OwnerType *Owner, const std::string &Value) in StringID() argument
136 : ID(Traits::getStrings(Owner) in StringID()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Option/
H A DOption.h78 const OptTable *Owner; member in llvm::opt::Option
81 Option(const OptTable::Info *Info, const OptTable *Owner);
105 assert(Owner && "Must have a valid owner!"); in getGroup()
106 return Owner->getOption(Info->GroupID); in getGroup()
111 assert(Owner && "Must have a valid owner!"); in getAlias()
112 return Owner->getOption(Info->AliasID); in getAlias()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/
H A DBitReader.cpp82 std::unique_ptr<MemoryBuffer> Owner(unwrap(MemBuf)); in LLVMGetBitcodeModuleInContext()
84 getOwningLazyBitcodeModule(std::move(Owner), Ctx); in LLVMGetBitcodeModuleInContext()
87 (void)Owner.release(); in LLVMGetBitcodeModuleInContext()
109 std::unique_ptr<MemoryBuffer> Owner(unwrap(MemBuf)); in LLVMGetBitcodeModuleInContext2()
112 Ctx, getOwningLazyBitcodeModule(std::move(Owner), Ctx)); in LLVMGetBitcodeModuleInContext2()
113 Owner.release(); in LLVMGetBitcodeModuleInContext2()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DLockFileManager.cpp68 auto Owner = std::make_pair(std::string(Hostname), PID); in readLockFile() local
69 if (processStillExecuting(Owner.first, Owner.second)) in readLockFile()
70 return Owner; in readLockFile()
170 if ((Owner = readLockFile(LockFileName))) in LockFileManager()
236 if ((Owner = readLockFile(LockFileName))) { in LockFileManager()
260 if (Owner) in getState()
325 if (!processStillExecuting((*Owner).first, (*Owner).second)) in waitForUnlock()
/third_party/skia/tools/gpu/
H A DTestOps.h26 GrOp::Owner MakeRect(GrRecordingContext*,
36 GrOp::Owner MakeRect(GrRecordingContext*,
46 GrOp::Owner MakeRect(GrRecordingContext*, GrPaint&&, const SkRect& rect);
H A DTestOps.cpp87 static GrOp::Owner Make(GrRecordingContext*,
145 GrOp::Owner TestRectOp::Make(GrRecordingContext* context, in Make()
226 GrOp::Owner MakeRect(GrRecordingContext* context, in MakeRect()
234 GrOp::Owner MakeRect(GrRecordingContext* context, in MakeRect()
244 GrOp::Owner MakeRect(GrRecordingContext* context, in MakeRect()
H A DGrTest.cpp37 extern GrOp::Owner Op##__Test(GrPaint&&, \
69 using MakeDrawOpFn = GrOp::Owner (GrPaint&&, in GrDrawRandomOp()
/third_party/skia/tests/
H A DTextureOpTest.cpp52 static GrOp::Owner create_op(GrDirectContext* dContext, SkRect rect, in create_op()
104 GrOp::Owner opA = create_op(dContext, kOpARect, proxyViewA, false); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
105 GrOp::Owner opB = create_op(dContext, kOpBRect, proxyViewB, false); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
117 GrOp::Owner opC = create_op(dContext, kOpCRect, proxyViewC, true); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
118 GrOp::Owner opD = create_op(dContext, kOpDRect, proxyViewA, true); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
H A DObjectFile.h58 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
89 SectionRef(DataRefImpl SectionP, const ObjectFile *Owner);
176 SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
374 inline SymbolRef::SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner) in SymbolRef() argument
375 : BasicSymbolRef(SymbolP, Owner) {} in SymbolRef()
412 const ObjectFile *Owner) in SectionRef()
414 , OwningObject(Owner) {} in SectionRef()
520 const ObjectFile *Owner) in RelocationRef()
522 , OwningObject(Owner) {} in RelocationRef()
411 SectionRef(DataRefImpl SectionP, const ObjectFile *Owner) SectionRef() argument
519 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner) RelocationRef() argument
H A DSymbolicFile.h122 BasicSymbolRef(DataRefImpl SymbolP, const SymbolicFile *Owner);
180 const SymbolicFile *Owner) in BasicSymbolRef()
181 : SymbolPimpl(SymbolP), OwningObject(Owner) {} in BasicSymbolRef()
179 BasicSymbolRef(DataRefImpl SymbolP, const SymbolicFile *Owner) BasicSymbolRef() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DSymbolTableListTraitsImpl.h65 ItemParentClass *Owner = getListOwner(); in addNodeToList() local
66 V->setParent(Owner); in addNodeToList()
68 if (ValueSymbolTable *ST = getSymTab(Owner)) in addNodeToList()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DRDFRegisters.h191 const RegisterAggr *Owner; member
207 assert(Owner == I.Owner); in operator ==()
208 (void)Owner; in operator ==()
/third_party/skia/src/gpu/v1/
H A DSurfaceFillContext_v1.h68 void addOp(GrOp::Owner);
90 void addDrawOp(GrOp::Owner);
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/mesh_shader/
H A DvktMeshShaderInOutTestsEXT.cpp76 enum class Owner class
123 IfaceVar (Owner owner_, DataType dataType_, BitWidth bitWidth_, DataDim dataDim_, Interpolation interpolation_, uint32_t index_) in IfaceVar()
132 DE_ASSERT(!(owner == Owner::PRIMITIVE && interpolation == Interpolation::NORMAL)); in IfaceVar()
140 : owner (Owner::VERTEX)
149 Owner owner;
163 << ((owner == Owner::VERTEX) ? "vert" : "prim") << "_"
202 decl << "[" << ((owner == Owner::PRIMITIVE) ? IfaceVar::kNumPrimitives : IfaceVar::kNumVertices) << "]";
214 << ((owner == Owner::PRIMITIVE) ? "perprimitiveEXT " : "")
227 return ((owner == Owner::PRIMITIVE) ? "ppd" : "pvd") + ("." + getName());
245 if (owner == Owner
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/mesh_shader/
H A DvktMeshShaderInOutTestsEXT.cpp76 enum class Owner class
123 IfaceVar (Owner owner_, DataType dataType_, BitWidth bitWidth_, DataDim dataDim_, Interpolation interpolation_, uint32_t index_) in IfaceVar()
132 DE_ASSERT(!(owner == Owner::PRIMITIVE && interpolation == Interpolation::NORMAL)); in IfaceVar()
140 : owner (Owner::VERTEX)
149 Owner owner;
163 << ((owner == Owner::VERTEX) ? "vert" : "prim") << "_"
202 decl << "[" << ((owner == Owner::PRIMITIVE) ? IfaceVar::kNumPrimitives : IfaceVar::kNumVertices) << "]";
214 << ((owner == Owner::PRIMITIVE) ? "perprimitiveEXT " : "")
227 return ((owner == Owner::PRIMITIVE) ? "ppd" : "pvd") + ("." + getName());
245 if (owner == Owner
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
H A DMetadata.h227 /// As \a track(Metadata*&), but with support for calling back to \c Owner to
228 /// tell it that its operand changed. This could trigger \c Owner being
230 static bool track(void *Ref, Metadata &MD, Metadata &Owner) { in track() argument
231 return track(Ref, MD, &Owner); in track()
236 /// As \a track(Metadata*&), but with support for calling back to \c Owner to
237 /// tell it that its operand changed. This could trigger \c Owner being
239 static bool track(void *Ref, Metadata &MD, MetadataAsValue &Owner) { in track() argument
240 return track(Ref, MD, &Owner); in track()
271 static bool track(void *Ref, Metadata &MD, OwnerTy Owner);
312 void addRef(void *Ref, OwnerTy Owner);
739 reset(Metadata *MD, Metadata *Owner) reset() argument
746 track(Metadata *Owner) track() argument
[all...]

Completed in 14 milliseconds

12345