Home
last modified time | relevance | path

Searched refs:newDest (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython3/PC/
Dpyshellext.cpp76 STRSAFE_LPSTR newDest; in FilenameListCchCopyA() local
78 hr = StringCchCopyExA(pszDest, cchDest, pszSource, &newDest, &cchDest, 0); in FilenameListCchCopyA()
82 pszSource += (newDest - pszDest) + 1; in FilenameListCchCopyA()
83 pszDest = PathQuoteSpacesA(pszDest) ? newDest + 2 : newDest; in FilenameListCchCopyA()
86 hr = StringCchCopyExA(pszDest, cchDest, pszSeparator, &newDest, &cchDest, 0); in FilenameListCchCopyA()
90 pszDest = newDest; in FilenameListCchCopyA()
103 STRSAFE_LPWSTR newDest; in FilenameListCchCopyW() local
105 hr = StringCchCopyExW(pszDest, cchDest, pszSource, &newDest, &cchDest, 0); in FilenameListCchCopyW()
109 pszSource += (newDest - pszDest) + 1; in FilenameListCchCopyW()
110 pszDest = PathQuoteSpacesW(pszDest) ? newDest + 2 : newDest; in FilenameListCchCopyW()
[all …]
/external/llvm-project/mlir/include/mlir/Transforms/
DInliningUtils.h104 virtual void handleTerminator(Operation *op, Block *newDest) const { in handleTerminator() argument
178 virtual void handleTerminator(Operation *op, Block *newDest) const;
/external/skia/src/gpu/
DGrDirectContextPriv.cpp70 sk_sp<GrRenderTargetProxy> newDest, in createDDLTask() argument
72 fContext->drawingManager()->createDDLTask(std::move(ddl), std::move(newDest), offset); in createDDLTask()
DGrDrawingManager.cpp599 sk_sp<GrRenderTargetProxy> newDest, in createDDLTask() argument
618 newDest->markMSAADirty(nativeRect); in createDDLTask()
620 GrTextureProxy* newTextureProxy = newDest->asTextureProxy(); in createDDLTask()
627 ddl->fLazyProxyData->fReplayDest = newDest.get(); in createDDLTask()
637 std::move(newDest), in createDDLTask()
DGrDrawingManager.h144 sk_sp<GrRenderTargetProxy> newDest,
DGrDirectContextPriv.h134 sk_sp<GrRenderTargetProxy> newDest,
/external/llvm-project/mlir/lib/Transforms/Utils/
DInliningUtils.cpp94 void InlinerInterface::handleTerminator(Operation *op, Block *newDest) const { in handleTerminator()
97 handler->handleTerminator(op, newDest); in handleTerminator()
/external/skqp/src/gpu/
DGrDrawingManager.h83 void copyOpListsFromDDL(const SkDeferredDisplayList*, GrRenderTargetProxy* newDest);
DGrContextPriv.h215 void copyOpListsFromDDL(const SkDeferredDisplayList*, GrRenderTargetProxy* newDest);
DGrDrawingManager.cpp510 GrRenderTargetProxy* newDest) { in copyOpListsFromDDL() argument
524 ddl->fLazyProxyData->fReplayDest = newDest; in copyOpListsFromDDL()
DGrContext.cpp960 GrRenderTargetProxy* newDest) { in copyOpListsFromDDL() argument
961 fContext->fDrawingManager->copyOpListsFromDDL(ddl, newDest); in copyOpListsFromDDL()
/external/llvm-project/mlir/lib/Dialect/SPIRV/
DSPIRVDialect.cpp93 void handleTerminator(Operation *op, Block *newDest) const final { in handleTerminator()
95 OpBuilder(op).create<spirv::BranchOp>(op->getLoc(), newDest); in handleTerminator()
/external/llvm-project/mlir/lib/Dialect/StandardOps/IR/
DOps.cpp66 void handleTerminator(Operation *op, Block *newDest) const final { in handleTerminator()
74 builder.create<BranchOp>(op->getLoc(), newDest, returnOp.getOperands()); in handleTerminator()