Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DOpenMPClause.cpp97 void OMPLastprivateClause::setPrivateCopies(ArrayRef<Expr *> PrivateCopies) { in setPrivateCopies()
103 void OMPLastprivateClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs()
110 void OMPLastprivateClause::setDestinationExprs(ArrayRef<Expr *> DstExprs) { in setDestinationExprs()
117 void OMPLastprivateClause::setAssignmentOps(ArrayRef<Expr *> AssignmentOps) { in setAssignmentOps()
125 OMPLastprivateClause *OMPLastprivateClause::Create( in Create()
129 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPLastprivateClause), in Create()
132 OMPLastprivateClause *Clause = in Create()
133 new (Mem) OMPLastprivateClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
141 OMPLastprivateClause *OMPLastprivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
143 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPLastprivateClause), in CreateEmpty()
[all …]
DStmtProfile.cpp367 OMPClauseProfiler::VisitOMPLastprivateClause(const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
DStmtPrinter.cpp784 void OMPClausePrinter::VisitOMPLastprivateClause(OMPLastprivateClause *Node) { in VisitOMPLastprivateClause()
/external/clang/include/clang/AST/
DOpenMPClause.h1302 class OMPLastprivateClause : public OMPVarListClause<OMPLastprivateClause> {
1329 OMPLastprivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPLastprivateClause() function
1331 : OMPVarListClause<OMPLastprivateClause>(OMPC_lastprivate, StartLoc, in OMPLastprivateClause()
1338 explicit OMPLastprivateClause(unsigned N) in OMPLastprivateClause() function
1339 : OMPVarListClause<OMPLastprivateClause>( in OMPLastprivateClause()
1416 static OMPLastprivateClause *
1425 static OMPLastprivateClause *CreateEmpty(const ASTContext &C, unsigned N);
DRecursiveASTVisitor.h2614 OMPLastprivateClause *C) {
/external/clang/include/clang/Basic/
DOpenMPKinds.def144 OPENMP_CLAUSE(lastprivate, OMPLastprivateClause)
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp529 for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPLastprivateClauseInit()
610 for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPLastprivateClauseFinal()
1757 bool HasLastprivates = S.hasClausesOfKind<OMPLastprivateClause>(); in EmitSections()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1824 C = OMPLastprivateClause::CreateEmpty(Context, Record[Idx++]); in readClause()
1998 void OMPClauseReader::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
DASTWriterStmt.cpp1873 void OMPClauseWriter::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
/external/clang/lib/Sema/
DSemaOpenMP.cpp919 if (auto *Clause = dyn_cast<OMPLastprivateClause>(C)) { in EndOpenMPDSABlock()
6861 return OMPLastprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPLastprivateClause()
DTreeTransform.h7626 TreeTransform<Derived>::TransformOMPLastprivateClause(OMPLastprivateClause *C) { in TransformOMPLastprivateClause()
/external/clang/tools/libclang/
DCIndex.cpp2125 const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()