HomeSort by: relevance | last modified time | path
    Searched refs:LHSExprs (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
OpenMPClause.cpp 717 void OMPReductionClause::setLHSExprs(ArrayRef<Expr *> LHSExprs) {
719 LHSExprs.size() == varlist_size() &&
721 std::copy(LHSExprs.begin(), LHSExprs.end(), getPrivates().end());
769 ArrayRef<Expr *> Privates, ArrayRef<Expr *> LHSExprs,
780 Clause->setLHSExprs(LHSExprs);
816 void OMPTaskReductionClause::setLHSExprs(ArrayRef<Expr *> LHSExprs) {
818 LHSExprs.size() == varlist_size() &&
820 std::copy(LHSExprs.begin(), LHSExprs.end(), getPrivates().end())
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntimeGPU.h 317 /// \param LHSExprs List of LHS in \a ReductionOps reduction operations.
329 ArrayRef<const Expr *> LHSExprs,
CGOpenMPRuntime.h 1384 /// \param LHSExprs List of LHS in \a ReductionOps reduction operations.
1391 ArrayRef<const Expr *> LHSExprs,
1425 /// <LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i]);
1431 /// Atomic(<LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i]));
1439 /// \param LHSExprs List of LHS in \a ReductionOps reduction operations.
1451 ArrayRef<const Expr *> LHSExprs,
1488 /// \param LHSExprs List of LHS in \a Data.ReductionOps reduction operations.
1494 ArrayRef<const Expr *> LHSExprs,
    [all...]
CGOpenMPRuntimeGPU.cpp 3741 ArrayRef<const Expr *> LHSExprs, ArrayRef<const Expr *> RHSExprs,
3754 CGOpenMPRuntime::emitReduction(CGF, Loc, Privates, LHSExprs, RHSExprs,
3811 LHSExprs, RHSExprs, ReductionOps);
3897 auto &&CodeGen = [Privates, LHSExprs, RHSExprs, ReductionOps,
3900 auto ILHS = LHSExprs.begin();
CGOpenMPRuntime.cpp 5415 ArrayRef<const Expr *> LHSExprs, ArrayRef<const Expr *> RHSExprs,
5460 cast<VarDecl>(cast<DeclRefExpr>(LHSExprs[I])->getDecl());
5480 auto ILHS = LHSExprs.begin();
5527 ArrayRef<const Expr *> LHSExprs,
5554 // <LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i]);
5560 // Atomic(<LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i]));
5569 // <LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i])
    [all...]
CGStmtOpenMP.cpp 1420 llvm::SmallVector<const Expr *, 8> LHSExprs;
1431 LHSExprs.append(C->lhs_exprs().begin(), C->lhs_exprs().end());
1450 *this, D.getEndLoc(), Privates, LHSExprs, RHSExprs, ReductionOps,
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
OpenMPClause.h 2899 void setLHSExprs(ArrayRef<Expr *> LHSExprs);
2986 /// \param LHSExprs List of helper expressions for proper generation of
2997 /// LHSExprs binop RHSExprs;
3005 /// TempExprs = LHSExprs;
3019 ArrayRef<Expr *> LHSExprs, ArrayRef<Expr *> RHSExprs,
3218 void setLHSExprs(ArrayRef<Expr *> LHSExprs);
3268 /// \param LHSExprs List of helper expressions for proper generation of
3279 /// LHSExprs binop RHSExprs;
3294 ArrayRef<Expr *> LHSExprs, ArrayRef<Expr *> RHSExprs,
3449 void setLHSExprs(ArrayRef<Expr *> LHSExprs);
    [all...]

Completed in 111 milliseconds