Searched refs:LHSExprs (Results 1 – 5 of 5) sorted by relevance
/external/clang/lib/AST/ |
D | OpenMPClause.cpp | 457 void OMPReductionClause::setLHSExprs(ArrayRef<Expr *> LHSExprs) { in setLHSExprs() argument 459 LHSExprs.size() == varlist_size() && in setLHSExprs() 461 std::copy(LHSExprs.begin(), LHSExprs.end(), getPrivates().end()); in setLHSExprs() 482 ArrayRef<Expr *> Privates, ArrayRef<Expr *> LHSExprs, in Create() argument 490 Clause->setLHSExprs(LHSExprs); in Create()
|
/external/clang/lib/CodeGen/ |
D | CGOpenMPRuntime.h | 899 ArrayRef<const Expr *> LHSExprs,
|
D | CGOpenMPRuntime.cpp | 4224 ArrayRef<const Expr *> LHSExprs, in emitReductionFunction() argument 4265 auto LHSVar = cast<VarDecl>(cast<DeclRefExpr>(LHSExprs[I])->getDecl()); in emitReductionFunction() 4285 auto ILHS = LHSExprs.begin(); in emitReductionFunction() 4330 ArrayRef<const Expr *> LHSExprs, in emitReduction() argument 4376 auto ILHS = LHSExprs.begin(); in emitReduction() 4429 LHSExprs, RHSExprs, ReductionOps); in emitReduction() 4476 auto &&CodeGen = [&Privates, &LHSExprs, &RHSExprs, &ReductionOps]( in emitReduction() 4479 auto ILHS = LHSExprs.begin(); in emitReduction() 4509 auto &&AtomicCodeGen = [Loc, &Privates, &LHSExprs, &RHSExprs, &ReductionOps]( in emitReduction() 4511 auto ILHS = LHSExprs.begin(); in emitReduction()
|
D | CGStmtOpenMP.cpp | 1142 llvm::SmallVector<const Expr *, 8> LHSExprs; in EmitOMPReductionClauseFinal() local 1149 LHSExprs.append(C->lhs_exprs().begin(), C->lhs_exprs().end()); in EmitOMPReductionClauseFinal() 1157 *this, D.getLocEnd(), Privates, LHSExprs, RHSExprs, ReductionOps, in EmitOMPReductionClauseFinal()
|
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 1732 void setLHSExprs(ArrayRef<Expr *> LHSExprs); 1810 ArrayRef<Expr *> LHSExprs, ArrayRef<Expr *> RHSExprs,
|