Searched refs:OMPReductionClause (Results 1 – 12 of 12) sorted by relevance
/external/clang/lib/AST/ |
D | OpenMPClause.cpp | 48 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()
|
D | StmtProfile.cpp | 405 const OMPReductionClause *C) { in VisitOMPReductionClause()
|
D | StmtPrinter.cpp | 812 void OMPClausePrinter::VisitOMPReductionClause(OMPReductionClause *Node) { in VisitOMPReductionClause()
|
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 1666 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);
|
D | RecursiveASTVisitor.h | 2847 RecursiveASTVisitor<Derived>::VisitOMPReductionClause(OMPReductionClause *C) {
|
/external/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 198 OPENMP_CLAUSE(reduction, OMPReductionClause)
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 939 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/ |
D | ASTReaderStmt.cpp | 1853 C = OMPReductionClause::CreateEmpty(Context, Record[Idx++]); in readClause() 2110 void OMPClauseReader::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
|
D | ASTWriterStmt.cpp | 1931 void OMPClauseWriter::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 2195 void OMPClauseEnqueue::VisitOMPReductionClause(const OMPReductionClause *C) { in VisitOMPReductionClause()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 9539 return OMPReductionClause::Create( in ActOnOpenMPReductionClause()
|
D | TreeTransform.h | 7869 TreeTransform<Derived>::TransformOMPReductionClause(OMPReductionClause *C) { in TransformOMPReductionClause()
|