Home
last modified time | relevance | path

Searched refs:srcExpr (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/CodeGen/
DCGDecl.cpp620 const Expr *srcExpr = castExpr->getSubExpr(); in tryEmitARCCopyWeakInit() local
621 if (srcExpr->getType().getObjCLifetime() != Qualifiers::OCL_Weak) in tryEmitARCCopyWeakInit()
625 LValue srcLV = CGF.EmitLValue(srcExpr); in tryEmitARCCopyWeakInit()
635 if (srcExpr->getValueKind() == VK_LValue) { in tryEmitARCCopyWeakInit()
638 assert(srcExpr->getValueKind() == VK_XValue); in tryEmitARCCopyWeakInit()
/external/clang/lib/StaticAnalyzer/Checkers/
DCStringChecker.cpp1431 const Expr *srcExpr = CE->getArg(1); in evalStrcpyCommon() local
1432 SVal srcVal = state->getSVal(srcExpr, LCtx); in evalStrcpyCommon()
1433 state = checkNonNull(C, state, srcExpr, srcVal); in evalStrcpyCommon()
1438 SVal strLength = getCStringLength(C, state, srcExpr, srcVal); in evalStrcpyCommon()
1714 state = InvalidateBuffer(C, state, srcExpr, srcVal, /*IsSourceBuffer*/true, in evalStrcpyCommon()
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/lib/Dialect/mhlo/transforms/
Dlegalize_to_linalg.cc2205 AffineExpr srcExpr = stride + dim1; in matchAndRewrite() local
2207 srcExprs[lhsIndexMapping[inputSpatialDimensions[i]]] = srcExpr; in matchAndRewrite()
2506 AffineExpr srcExpr = mlir::getAffineDimExpr(i, ctx); in matchAndRewrite() local
2508 if (windowStrides[i] != 1) srcExpr = srcExpr * windowStrides[i]; in matchAndRewrite()
2518 srcExpr = srcExpr + windowExpr; in matchAndRewrite()
2522 srcExprs.push_back(srcExpr); in matchAndRewrite()