Home
last modified time | relevance | path

Searched refs:OMPReductionClause (Results 1 – 12 of 12) sorted by relevance

/external/clang/lib/AST/
DOpenMPClause.cpp48 return static_cast<const OMPReductionClause *>(C); in get()
110 return static_cast<const OMPReductionClause *>(C); in get()
451 void OMPReductionClause::setPrivates(ArrayRef<Expr *> Privates) { in setPrivates()
457 void OMPReductionClause::setLHSExprs(ArrayRef<Expr *> LHSExprs) { in setLHSExprs()
464 void OMPReductionClause::setRHSExprs(ArrayRef<Expr *> RHSExprs) { in setRHSExprs()
471 void OMPReductionClause::setReductionOps(ArrayRef<Expr *> ReductionOps) { in setReductionOps()
478 OMPReductionClause *OMPReductionClause::Create( in Create()
486 OMPReductionClause *Clause = new (Mem) OMPReductionClause( in Create()
498 OMPReductionClause *OMPReductionClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
501 return new (Mem) OMPReductionClause(N); in CreateEmpty()
DStmtProfile.cpp405 const OMPReductionClause *C) { in VisitOMPReductionClause()
DStmtPrinter.cpp812 void OMPClausePrinter::VisitOMPReductionClause(OMPReductionClause *Node) { in VisitOMPReductionClause()
/external/clang/include/clang/AST/
DOpenMPClause.h1666 class OMPReductionClause final
1667 : public OMPVarListClause<OMPReductionClause>,
1669 private llvm::TrailingObjects<OMPReductionClause, Expr *> {
1690 OMPReductionClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPReductionClause() function
1694 : OMPVarListClause<OMPReductionClause>(OMPC_reduction, StartLoc, in OMPReductionClause()
1703 explicit OMPReductionClause(unsigned N) in OMPReductionClause() function
1704 : OMPVarListClause<OMPReductionClause>(OMPC_reduction, SourceLocation(), in OMPReductionClause()
1805 static OMPReductionClause *
1817 static OMPReductionClause *CreateEmpty(const ASTContext &C, unsigned N);
DRecursiveASTVisitor.h2847 RecursiveASTVisitor<Derived>::VisitOMPReductionClause(OMPReductionClause *C) {
/external/clang/include/clang/Basic/
DOpenMPKinds.def198 OPENMP_CLAUSE(reduction, OMPReductionClause)
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp939 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in EmitOMPReductionClauseInit()
1146 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in EmitOMPReductionClauseFinal()
1171 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in emitPostUpdateForReductionClause()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1853 C = OMPReductionClause::CreateEmpty(Context, Record[Idx++]); in readClause()
2110 void OMPClauseReader::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
DASTWriterStmt.cpp1931 void OMPClauseWriter::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
/external/clang/tools/libclang/
DCIndex.cpp2195 void OMPClauseEnqueue::VisitOMPReductionClause(const OMPReductionClause *C) { in VisitOMPReductionClause()
/external/clang/lib/Sema/
DSemaOpenMP.cpp9539 return OMPReductionClause::Create( in ActOnOpenMPReductionClause()
DTreeTransform.h7869 TreeTransform<Derived>::TransformOMPReductionClause(OMPReductionClause *C) { in TransformOMPReductionClause()