Home
last modified time | relevance | path

Searched refs:curOp (Results 1 – 17 of 17) sorted by relevance

/external/llvm-project/mlir/lib/Conversion/OpenMPToLLVM/
DOpenMPToLLVM.cpp33 auto curOp = cast<OpType>(op); in matchAndRewrite() local
34 auto newOp = rewriter.create<OpType>(curOp.getLoc(), TypeRange(), operands, in matchAndRewrite()
35 curOp.getAttrs()); in matchAndRewrite()
36 rewriter.inlineRegionBefore(curOp.region(), newOp.region(), in matchAndRewrite()
/external/skia/tools/mdbviz/
DModel.cpp81 void Model::setCurOp(int curOp) { in setCurOp() argument
82 SkASSERT(curOp < fOps.count()); in setCurOp()
84 if (curOp == fCurOp) { in setCurOp()
88 fCurOp = curOp; in setCurOp()
DModel.h34 void setCurOp(int curOp);
35 int curOp() const { return fCurOp; } in curOp() function
/external/skqp/tools/mdbviz/
DModel.cpp83 void Model::setCurOp(int curOp) { in setCurOp() argument
84 SkASSERT(curOp < fOps.count()); in setCurOp()
86 if (curOp == fCurOp) { in setCurOp()
90 fCurOp = curOp; in setCurOp()
DModel.h34 void setCurOp(int curOp);
35 int curOp() const { return fCurOp; } in curOp() function
/external/skia/src/gpu/
DGrCopyRenderTask.cpp58 alloc->addInterval(fSrc.get(), alloc->curOp(), alloc->curOp(), in gatherProxyIntervals()
60 alloc->addInterval(this->target(0), alloc->curOp(), alloc->curOp(), in gatherProxyIntervals()
DGrTransferFromRenderTask.cpp18 alloc->addInterval(fSrcProxy.get(), alloc->curOp(), alloc->curOp(), in gatherProxyIntervals()
DGrWritePixelsRenderTask.cpp46 alloc->addInterval(this->target(0), alloc->curOp(), alloc->curOp(), in gatherProxyIntervals()
DGrWaitRenderTask.cpp19 auto fakeOp = alloc->curOp(); in gatherProxyIntervals()
DGrTextureResolveRenderTask.cpp56 auto fakeOp = alloc->curOp(); in gatherProxyIntervals()
DGrOpsTask.cpp922 unsigned int cur = alloc->curOp(); in gatherProxyIntervals()
930 alloc->addInterval(targetProxy, alloc->curOp(), alloc->curOp(), in gatherProxyIntervals()
937 alloc->curOp(), in gatherProxyIntervals()
938 alloc->curOp(), in gatherProxyIntervals()
DGrResourceAllocator.h76 unsigned int curOp() const { return fNumOps; } in curOp() function
/external/llvm-project/mlir/lib/IR/
DSymbolTable.cpp842 Operation *curOp = nullptr; in replaceAllSymbolUsesImpl() local
851 auto oldDict = curOp->getAttrDictionary(); in replaceAllSymbolUsesImpl()
887 if (curOp && symbolUse.getUser() != curOp) { in replaceAllSymbolUsesImpl()
888 updatedAttrDicts.push_back({curOp, generateNewAttrDict()}); in replaceAllSymbolUsesImpl()
893 curOp = symbolUse.getUser(); in replaceAllSymbolUsesImpl()
901 if (curOp) { in replaceAllSymbolUsesImpl()
902 updatedAttrDicts.push_back({curOp, generateNewAttrDict()}); in replaceAllSymbolUsesImpl()
903 curOp = nullptr; in replaceAllSymbolUsesImpl()
/external/skqp/src/core/
DSkRecordDraw.cpp506 for (int curOp = 0; curOp < record.count(); curOp++) { in SkRecordFillBounds() local
507 visitor.setCurrentOp(curOp); in SkRecordFillBounds()
508 record.visit(curOp, visitor); in SkRecordFillBounds()
/external/skqp/src/gpu/
DGrResourceAllocator.cpp46 SkASSERT(fEndOfOpListOpIndices.back() < this->curOp()); in markEndOfOpList()
49 fEndOfOpListOpIndices.push_back(this->curOp()); // This is the first op index of the next opList in markEndOfOpList()
DGrResourceAllocator.h50 unsigned int curOp() const { return fNumOps; } in curOp() function
/external/llvm-project/mlir/lib/Dialect/Affine/IR/
DAffineOps.cpp118 auto *curOp = op; in getAffineScope() local
119 while (auto *parentOp = curOp->getParentOp()) { in getAffineScope()
121 return curOp->getParentRegion(); in getAffineScope()
122 curOp = parentOp; in getAffineScope()