Searched refs:OMPReductionClause (Results 1 – 13 of 13) sorted by relevance
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 1385 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);
|
D | DataRecursiveASTVisitor.h | 2600 RecursiveASTVisitor<Derived>::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
|
D | RecursiveASTVisitor.h | 2630 RecursiveASTVisitor<Derived>::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 1514 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()
|
D | StmtProfile.cpp | 363 const OMPReductionClause *C) { in VisitOMPReductionClause()
|
D | StmtPrinter.cpp | 732 void OMPClausePrinter::VisitOMPReductionClause(OMPReductionClause *Node) { in VisitOMPReductionClause()
|
/external/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 108 OPENMP_CLAUSE(reduction, OMPReductionClause)
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 424 auto *C = cast<OMPReductionClause>(*I); in EmitOMPReductionClauseInit() 467 auto *C = cast<OMPReductionClause>(*I); in EmitOMPReductionClauseFinal()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1761 C = OMPReductionClause::CreateEmpty(Context, Record[Idx++]); in readClause() 1920 void OMPClauseReader::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
|
D | ASTWriterStmt.cpp | 1818 void OMPClauseWriter::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 5632 return OMPReductionClause::Create( in ActOnOpenMPReductionClause()
|
D | TreeTransform.h | 7134 TreeTransform<Derived>::TransformOMPReductionClause(OMPReductionClause *C) { in TransformOMPReductionClause()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 2041 void OMPClauseEnqueue::VisitOMPReductionClause(const OMPReductionClause *C) { in VisitOMPReductionClause()
|