Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DOpenMPClause.h1385 class OMPReductionClause : public OMPVarListClause<OMPReductionClause> {
1404 OMPReductionClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPReductionClause() function
1408 : OMPVarListClause<OMPReductionClause>(OMPC_reduction, StartLoc, in OMPReductionClause()
1416 explicit OMPReductionClause(unsigned N) in OMPReductionClause() function
1417 : OMPVarListClause<OMPReductionClause>(OMPC_reduction, SourceLocation(), in OMPReductionClause()
1499 static OMPReductionClause *
1510 static OMPReductionClause *CreateEmpty(const ASTContext &C, unsigned N);
DDataRecursiveASTVisitor.h2600 RecursiveASTVisitor<Derived>::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
DRecursiveASTVisitor.h2630 RecursiveASTVisitor<Derived>::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
/external/clang/lib/AST/
DStmt.cpp1514 void OMPReductionClause::setLHSExprs(ArrayRef<Expr *> LHSExprs) { in setLHSExprs()
1521 void OMPReductionClause::setRHSExprs(ArrayRef<Expr *> RHSExprs) { in setRHSExprs()
1528 void OMPReductionClause::setReductionOps(ArrayRef<Expr *> ReductionOps) { in setReductionOps()
1535 OMPReductionClause *OMPReductionClause::Create( in Create()
1541 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPReductionClause), in Create()
1544 OMPReductionClause *Clause = new (Mem) OMPReductionClause( in Create()
1553 OMPReductionClause *OMPReductionClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
1555 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPReductionClause), in CreateEmpty()
1558 return new (Mem) OMPReductionClause(N); in CreateEmpty()
DStmtProfile.cpp363 const OMPReductionClause *C) { in VisitOMPReductionClause()
DStmtPrinter.cpp732 void OMPClausePrinter::VisitOMPReductionClause(OMPReductionClause *Node) { in VisitOMPReductionClause()
/external/clang/include/clang/Basic/
DOpenMPKinds.def108 OPENMP_CLAUSE(reduction, OMPReductionClause)
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp424 auto *C = cast<OMPReductionClause>(*I); in EmitOMPReductionClauseInit()
467 auto *C = cast<OMPReductionClause>(*I); in EmitOMPReductionClauseFinal()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1761 C = OMPReductionClause::CreateEmpty(Context, Record[Idx++]); in readClause()
1920 void OMPClauseReader::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
DASTWriterStmt.cpp1818 void OMPClauseWriter::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
/external/clang/lib/Sema/
DSemaOpenMP.cpp5632 return OMPReductionClause::Create( in ActOnOpenMPReductionClause()
DTreeTransform.h7134 TreeTransform<Derived>::TransformOMPReductionClause(OMPReductionClause *C) { in TransformOMPReductionClause()
/external/clang/tools/libclang/
DCIndex.cpp2041 void OMPClauseEnqueue::VisitOMPReductionClause(const OMPReductionClause *C) { in VisitOMPReductionClause()