Home
last modified time | relevance | path

Searched refs:childOp (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/gpu/
DGrAuditTrail.cpp71 Op* childOp = consumedOp.fChildren[i]; in opsCombined() local
74 childOp->fOpsTaskID = index; in opsCombined()
75 childOp->fChildID = consumerOp.fChildren.count(); in opsCombined()
76 consumerOp.fChildren.push_back(childOp); in opsCombined()
/external/skqp/src/gpu/
DGrAuditTrail.cpp71 Op* childOp = consumedOp.fChildren[i]; in opsCombined() local
74 childOp->fOpListID = index; in opsCombined()
75 childOp->fChildID = consumerOp.fChildren.count(); in opsCombined()
76 consumerOp.fChildren.push_back(childOp); in opsCombined()
/external/llvm-project/mlir/lib/Transforms/Utils/
DRegionUtils.cpp315 for (Operation &childOp : in deleteDeadness()
318 succeeded(deleteDeadness(childOp.getRegions(), liveMap)); in deleteDeadness()
319 if (!liveMap.wasProvenLive(&childOp)) { in deleteDeadness()
321 childOp.erase(); in deleteDeadness()
/external/llvm-project/mlir/lib/Bindings/Python/
DIRModules.cpp363 MlirOperation childOp = mlirBlockGetFirstOperation(block); in dunderLen() local
364 while (!mlirOperationIsNull(childOp)) { in dunderLen()
366 childOp = mlirOperationGetNextInBlock(childOp); in dunderLen()
377 MlirOperation childOp = mlirBlockGetFirstOperation(block); in dunderGetItem() local
378 while (!mlirOperationIsNull(childOp)) { in dunderGetItem()
380 return PyOperation::forOperation(parentOperation->getContext(), childOp) in dunderGetItem()
383 childOp = mlirOperationGetNextInBlock(childOp); in dunderGetItem()