Home
last modified time | relevance | path

Searched refs:opList (Results 1 – 25 of 25) sorted by relevance

/external/skia/include/private/
DGrOpList.h150 static void Output(GrOpList* opList, int /* index */) { in Output()
151 opList->setFlag(GrOpList::kWasOutput_Flag); in Output()
153 static bool WasOutput(const GrOpList* opList) { in WasOutput()
154 return opList->isSetFlag(GrOpList::kWasOutput_Flag); in WasOutput()
156 static void SetTempMark(GrOpList* opList) { in SetTempMark()
157 opList->setFlag(GrOpList::kTempMark_Flag); in SetTempMark()
159 static void ResetTempMark(GrOpList* opList) { in ResetTempMark()
160 opList->resetFlag(GrOpList::kTempMark_Flag); in ResetTempMark()
162 static bool IsTempMarked(const GrOpList* opList) { in IsTempMarked()
163 return opList->isSetFlag(GrOpList::kTempMark_Flag); in IsTempMarked()
[all …]
DGrSurfaceProxy.h374 void setLastOpList(GrOpList* opList);
/external/skqp/include/private/
DGrOpList.h149 static void Output(GrOpList* opList, int /* index */) { in Output()
150 opList->setFlag(GrOpList::kWasOutput_Flag); in Output()
152 static bool WasOutput(const GrOpList* opList) { in WasOutput()
153 return opList->isSetFlag(GrOpList::kWasOutput_Flag); in WasOutput()
155 static void SetTempMark(GrOpList* opList) { in SetTempMark()
156 opList->setFlag(GrOpList::kTempMark_Flag); in SetTempMark()
158 static void ResetTempMark(GrOpList* opList) { in ResetTempMark()
159 opList->resetFlag(GrOpList::kTempMark_Flag); in ResetTempMark()
161 static bool IsTempMarked(const GrOpList* opList) { in IsTempMarked()
162 return opList->isSetFlag(GrOpList::kTempMark_Flag); in IsTempMarked()
[all …]
DGrSurfaceProxy.h372 void setLastOpList(GrOpList* opList);
/external/skqp/src/gpu/
DGrDrawingManager.cpp80 void GrDrawingManager::OpListDAG::add(sk_sp<GrOpList> opList) { in add() argument
81 fOpLists.emplace_back(std::move(opList)); in add()
289 if (fDAG.opList(i)) { in flush()
290 fDAG.opList(i)->gatherProxyIntervals(&alloc); in flush()
300 if (fDAG.opList(i) && !fDAG.opList(i)->isFullyInstantiated()) { in flush()
304 if (fDAG.opList(i)) { in flush()
305 fDAG.opList(i)->purgeOpsWithUninstantiatedProxies(); in flush()
321 SkASSERT(!fDAG.opList(i) || fDAG.opList(i)->unique()); in flush()
361 if (fDAG.opList(i)) { in executeOpLists()
362 fDAG.opList(i)->dump(true); in executeOpLists()
[all …]
DGrRenderTargetContextPriv.h30 GrRenderTargetOpList* opList = fRenderTargetContext->getRTOpList(); in setLastClip() local
31 opList->fLastClipStackGenID = clipStackGenID; in setLastClip()
32 opList->fLastDevClipBounds = devClipBounds; in setLastClip()
33 opList->fLastClipNumAnalyticFPs = numClipAnalyticFPs; in setLastClip()
40 GrRenderTargetOpList* opList = fRenderTargetContext->getRTOpList(); in mustRenderClip() local
41 return opList->fLastClipStackGenID != clipStackGenID || in mustRenderClip()
42 !opList->fLastDevClipBounds.contains(devClipBounds) || in mustRenderClip()
43 opList->fLastClipNumAnalyticFPs != numClipAnalyticFPs; in mustRenderClip()
DGrOpList.cpp109 GrOpList* opList = dependedOn->getLastOpList(); in addDependency() local
110 if (opList == this) { in addDependency()
113 this->addDependency(opList); in addDependency()
118 opList->makeClosed(caps); in addDependency()
DGrPipeline.cpp77 void GrPipeline::addDependenciesTo(GrOpList* opList, const GrCaps& caps) const { in addDependenciesTo() argument
81 opList->addDependency(sampler->proxy(), caps); in addDependenciesTo()
86 opList->addDependency(fDstTextureProxy.get(), caps); in addDependenciesTo()
DGrDrawingManager.h116 GrOpList* opList(int index) { return fOpLists[index].get(); } in opList() function
117 const GrOpList* opList(int index) const { return fOpLists[index].get(); } in opList() function
DGrSurfaceProxy.cpp282 void GrSurfaceProxy::setLastOpList(GrOpList* opList) { in setLastOpList() argument
290 fLastOpList = opList; in setLastOpList()
DGrRenderTargetContext.cpp1985 auto opList = this->getRTOpList(); in addDrawOp() local
1987 willAddFn(op.get(), opList->uniqueID()); in addDrawOp()
1989 opList->addDrawOp(std::move(op), analysis, std::move(appliedClip), dstProxy, *this->caps()); in addDrawOp()
/external/skia/src/gpu/
DGrDrawingManager.cpp75 void GrDrawingManager::OpListDAG::add(sk_sp<GrOpList> opList) { in add() argument
76 fOpLists.emplace_back(std::move(opList)); in add()
302 if (fDAG.opList(i)) { in flush()
303 fDAG.opList(i)->gatherProxyIntervals(&alloc); in flush()
313 if (fDAG.opList(i) && !fDAG.opList(i)->isFullyInstantiated()) { in flush()
317 if (fDAG.opList(i)) { in flush()
318 fDAG.opList(i)->purgeOpsWithUninstantiatedProxies(); in flush()
334 SkASSERT(!fDAG.opList(i) || fDAG.opList(i)->unique()); in flush()
381 if (fDAG.opList(i)) { in executeOpLists()
382 fDAG.opList(i)->dump(true); in executeOpLists()
[all …]
DGrRenderTargetContextPriv.h30 GrRenderTargetOpList* opList = fRenderTargetContext->getRTOpList(); in setLastClip() local
31 opList->fLastClipStackGenID = clipStackGenID; in setLastClip()
32 opList->fLastDevClipBounds = devClipBounds; in setLastClip()
33 opList->fLastClipNumAnalyticFPs = numClipAnalyticFPs; in setLastClip()
40 GrRenderTargetOpList* opList = fRenderTargetContext->getRTOpList(); in mustRenderClip() local
41 return opList->fLastClipStackGenID != clipStackGenID || in mustRenderClip()
42 !opList->fLastDevClipBounds.contains(devClipBounds) || in mustRenderClip()
43 opList->fLastClipNumAnalyticFPs != numClipAnalyticFPs; in mustRenderClip()
DGrOpList.cpp109 GrOpList* opList = dependedOn->getLastOpList(); in addDependency() local
110 if (opList == this) { in addDependency()
113 this->addDependency(opList); in addDependency()
118 opList->makeClosed(caps); in addDependency()
DGrPipeline.cpp77 void GrPipeline::addDependenciesTo(GrOpList* opList, const GrCaps& caps) const { in addDependenciesTo() argument
81 opList->addDependency(sampler->proxy(), caps); in addDependenciesTo()
86 opList->addDependency(fDstTextureProxy.get(), caps); in addDependenciesTo()
DGrDrawingManager.h123 GrOpList* opList(int index) { return fOpLists[index].get(); } in opList() function
124 const GrOpList* opList(int index) const { return fOpLists[index].get(); } in opList() function
DGrSurfaceProxy.cpp279 void GrSurfaceProxy::setLastOpList(GrOpList* opList) { in setLastOpList() argument
287 fLastOpList = opList; in setLastOpList()
DGrRenderTargetContext.cpp2095 auto opList = this->getRTOpList(); in addDrawOp() local
2097 willAddFn(op.get(), opList->uniqueID()); in addDrawOp()
2099 opList->addDrawOp(std::move(op), analysis, std::move(appliedClip), dstProxy, *this->caps()); in addDrawOp()
/external/skqp/tests/
DOpChainTest.cpp208 GrRenderTargetOpList opList(context->contextPriv().resourceProvider(), variable
225 opList.addOp(std::move(op), *context->contextPriv().caps());
227 opList.makeClosed(*context->contextPriv().caps());
228 opList.prepare(&flushState);
229 opList.execute(&flushState);
230 opList.endFlush();
/external/skia/tests/
DOpChainTest.cpp207 GrRenderTargetOpList opList(context->priv().resourceProvider(), variable
224 opList.addOp(std::move(op), *context->priv().caps());
226 opList.makeClosed(*context->priv().caps());
227 opList.prepare(&flushState);
228 opList.execute(&flushState);
229 opList.endFlush();
/external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/
DTensorFlowTest.java55 byte[] opList = TensorFlow.loadLibrary("tensorflow/java/my_test_op.so"); in loadLibrary()
56 assertTrue(opList.length > 0); in loadLibrary()
/external/swiftshader/src/OpenGL/compiler/
DAnalyzeCallDepth.cpp124 TIntermAggregate* opList = node->getStatementList(); in visitSwitch() local
126 if(!switchValue || !opList) in visitSwitch()
135 TIntermSequence& sequence = opList->getSequence(); in visitSwitch()
DOutputASM.cpp2000 TIntermAggregate* opList = node->getStatementList(); in visitSwitch() local
2002 if(!switchValue || !opList) in visitSwitch()
2011 TIntermSequence& sequence = opList->getSequence(); in visitSwitch()
/external/python/setuptools/setuptools/_vendor/
Dpyparsing.py4995 def infixNotation( baseExpr, opList, lpar=Suppress('('), rpar=Suppress(')') ): argument
5056 for i,operDef in enumerate(opList):
/external/python/setuptools/pkg_resources/_vendor/
Dpyparsing.py4995 def infixNotation( baseExpr, opList, lpar=Suppress('('), rpar=Suppress(')') ): argument
5056 for i,operDef in enumerate(opList):