/external/llvm-project/mlir/lib/Conversion/OpenMPToLLVM/ |
D | OpenMPToLLVM.cpp | 33 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/ |
D | Model.cpp | 81 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()
|
D | Model.h | 34 void setCurOp(int curOp); 35 int curOp() const { return fCurOp; } in curOp() function
|
/external/skqp/tools/mdbviz/ |
D | Model.cpp | 83 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()
|
D | Model.h | 34 void setCurOp(int curOp); 35 int curOp() const { return fCurOp; } in curOp() function
|
/external/skia/src/gpu/ |
D | GrCopyRenderTask.cpp | 58 alloc->addInterval(fSrc.get(), alloc->curOp(), alloc->curOp(), in gatherProxyIntervals() 60 alloc->addInterval(this->target(0), alloc->curOp(), alloc->curOp(), in gatherProxyIntervals()
|
D | GrTransferFromRenderTask.cpp | 18 alloc->addInterval(fSrcProxy.get(), alloc->curOp(), alloc->curOp(), in gatherProxyIntervals()
|
D | GrWritePixelsRenderTask.cpp | 46 alloc->addInterval(this->target(0), alloc->curOp(), alloc->curOp(), in gatherProxyIntervals()
|
D | GrWaitRenderTask.cpp | 19 auto fakeOp = alloc->curOp(); in gatherProxyIntervals()
|
D | GrTextureResolveRenderTask.cpp | 56 auto fakeOp = alloc->curOp(); in gatherProxyIntervals()
|
D | GrOpsTask.cpp | 922 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()
|
D | GrResourceAllocator.h | 76 unsigned int curOp() const { return fNumOps; } in curOp() function
|
/external/llvm-project/mlir/lib/IR/ |
D | SymbolTable.cpp | 842 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/ |
D | SkRecordDraw.cpp | 506 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/ |
D | GrResourceAllocator.cpp | 46 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()
|
D | GrResourceAllocator.h | 50 unsigned int curOp() const { return fNumOps; } in curOp() function
|
/external/llvm-project/mlir/lib/Dialect/Affine/IR/ |
D | AffineOps.cpp | 118 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()
|