Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDOpenMPClause.h1413 class OMPReductionClause : public OMPVarListClause<OMPReductionClause> {
1432 OMPReductionClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPReductionClause() function
1436 : OMPVarListClause<OMPReductionClause>(OMPC_reduction, StartLoc, in OMPReductionClause()
1444 explicit OMPReductionClause(unsigned N) in OMPReductionClause() function
1445 : OMPVarListClause<OMPReductionClause>(OMPC_reduction, SourceLocation(), in OMPReductionClause()
1527 static OMPReductionClause *
1538 static OMPReductionClause *CreateEmpty(const ASTContext &C, unsigned N);
HDDataRecursiveASTVisitor.h2638 RecursiveASTVisitor<Derived>::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
HDRecursiveASTVisitor.h2670 RecursiveASTVisitor<Derived>::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDStmt.cpp1522 void OMPReductionClause::setLHSExprs(ArrayRef<Expr *> LHSExprs) { in setLHSExprs()
1529 void OMPReductionClause::setRHSExprs(ArrayRef<Expr *> RHSExprs) { in setRHSExprs()
1536 void OMPReductionClause::setReductionOps(ArrayRef<Expr *> ReductionOps) { in setReductionOps()
1543 OMPReductionClause *OMPReductionClause::Create( in Create()
1549 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPReductionClause), in Create()
1552 OMPReductionClause *Clause = new (Mem) OMPReductionClause( in Create()
1561 OMPReductionClause *OMPReductionClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
1563 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPReductionClause), in CreateEmpty()
1566 return new (Mem) OMPReductionClause(N); in CreateEmpty()
HDStmtProfile.cpp367 const OMPReductionClause *C) { in VisitOMPReductionClause()
HDStmtPrinter.cpp734 void OMPClausePrinter::VisitOMPReductionClause(OMPReductionClause *Node) { in VisitOMPReductionClause()
/NextBSD/contrib/llvm/tools/clang/include/clang/Basic/
HDOpenMPKinds.def114 OPENMP_CLAUSE(reduction, OMPReductionClause)
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCGStmtOpenMP.cpp409 auto *C = cast<OMPReductionClause>(*I); in EmitOMPReductionClauseInit()
447 auto *C = cast<OMPReductionClause>(*I); in EmitOMPReductionClauseFinal()
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTReaderStmt.cpp1771 C = OMPReductionClause::CreateEmpty(Context, Record[Idx++]); in readClause()
1934 void OMPClauseReader::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
HDASTWriterStmt.cpp1831 void OMPClauseWriter::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaOpenMP.cpp6221 return OMPReductionClause::Create( in ActOnOpenMPReductionClause()
HDTreeTransform.h7351 TreeTransform<Derived>::TransformOMPReductionClause(OMPReductionClause *C) { in TransformOMPReductionClause()