Home
last modified time | relevance | path

Searched refs:RHSExprs (Results 1 – 6 of 6) sorted by relevance

/external/clang/lib/AST/
DOpenMPClause.cpp356 void OMPReductionClause::setRHSExprs(ArrayRef<Expr *> RHSExprs) { in setRHSExprs() argument
358 RHSExprs.size() == varlist_size() && in setRHSExprs()
360 std::copy(RHSExprs.begin(), RHSExprs.end(), getLHSExprs().end()); in setRHSExprs()
375 ArrayRef<Expr *> RHSExprs, ArrayRef<Expr *> ReductionOps) { in Create() argument
384 Clause->setRHSExprs(RHSExprs); in Create()
/external/clang/lib/CodeGen/
DCGOpenMPRuntime.cpp2734 ArrayRef<const Expr *> RHSExprs, in emitReductionFunction() argument
2772 auto RHSVar = cast<VarDecl>(cast<DeclRefExpr>(RHSExprs[I])->getDecl()); in emitReductionFunction()
2798 auto IRHS = RHSExprs.begin(); in emitReductionFunction()
2821 ArrayRef<const Expr *> RHSExprs, in emitReduction() argument
2867 auto IRHS = RHSExprs.begin(); in emitReduction()
2885 auto Size = RHSExprs.size(); in emitReduction()
2899 for (unsigned I = 0, E = RHSExprs.size(); I < E; ++I, ++IPriv, ++Idx) { in emitReduction()
2904 CGF.EmitLValue(RHSExprs[I]).getPointer(), CGF.VoidPtrTy), in emitReduction()
2926 LHSExprs, RHSExprs, ReductionOps); in emitReduction()
2944 CGF.Builder.getInt32(RHSExprs.size()), // i32 <n> in emitReduction()
[all …]
DCGOpenMPRuntime.h720 ArrayRef<const Expr *> RHSExprs,
DCGStmtOpenMP.cpp820 llvm::SmallVector<const Expr *, 8> RHSExprs; in EmitOMPReductionClauseFinal() local
827 RHSExprs.append(C->rhs_exprs().begin(), C->rhs_exprs().end()); in EmitOMPReductionClauseFinal()
834 *this, D.getLocEnd(), Privates, LHSExprs, RHSExprs, ReductionOps, in EmitOMPReductionClauseFinal()
/external/clang/include/clang/AST/
DOpenMPClause.h1622 void setRHSExprs(ArrayRef<Expr *> RHSExprs);
1681 ArrayRef<Expr *> LHSExprs, ArrayRef<Expr *> RHSExprs,
/external/clang/lib/Sema/
DSemaExpr.cpp6527 Expr **RHSExprs) { in IsArithmeticBinaryExpr() argument
6537 *RHSExprs = OP->getRHS(); in IsArithmeticBinaryExpr()
6557 *RHSExprs = Call->getArg(1); in IsArithmeticBinaryExpr()