Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DOpenMPClause.h1140 class OMPLastprivateClause : public OMPVarListClause<OMPLastprivateClause> {
1167 OMPLastprivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPLastprivateClause() function
1169 : OMPVarListClause<OMPLastprivateClause>(OMPC_lastprivate, StartLoc, in OMPLastprivateClause()
1176 explicit OMPLastprivateClause(unsigned N) in OMPLastprivateClause() function
1177 : OMPVarListClause<OMPLastprivateClause>( in OMPLastprivateClause()
1254 static OMPLastprivateClause *
1263 static OMPLastprivateClause *CreateEmpty(const ASTContext &C, unsigned N);
DDataRecursiveASTVisitor.h2520 OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
DRecursiveASTVisitor.h2550 OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
/external/clang/lib/AST/
DStmt.cpp1249 void OMPLastprivateClause::setPrivateCopies(ArrayRef<Expr *> PrivateCopies) { in setPrivateCopies()
1255 void OMPLastprivateClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs()
1262 void OMPLastprivateClause::setDestinationExprs(ArrayRef<Expr *> DstExprs) { in setDestinationExprs()
1269 void OMPLastprivateClause::setAssignmentOps(ArrayRef<Expr *> AssignmentOps) { in setAssignmentOps()
1277 OMPLastprivateClause *OMPLastprivateClause::Create( in Create()
1281 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPLastprivateClause), in Create()
1284 OMPLastprivateClause *Clause = in Create()
1285 new (Mem) OMPLastprivateClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
1293 OMPLastprivateClause *OMPLastprivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
1295 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPLastprivateClause), in CreateEmpty()
[all …]
DStmtProfile.cpp347 OMPClauseProfiler::VisitOMPLastprivateClause(const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
DStmtPrinter.cpp716 void OMPClausePrinter::VisitOMPLastprivateClause(OMPLastprivateClause *Node) { in VisitOMPLastprivateClause()
/external/clang/include/clang/Basic/
DOpenMPKinds.def106 OPENMP_CLAUSE(lastprivate, OMPLastprivateClause)
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp332 auto *C = cast<OMPLastprivateClause>(*I); in EmitOMPLastprivateClauseInit()
390 auto *C = cast<OMPLastprivateClause>(*I); in EmitOMPLastprivateClauseFinal()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1755 C = OMPLastprivateClause::CreateEmpty(Context, Record[Idx++]); in readClause()
1884 void OMPClauseReader::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
DASTWriterStmt.cpp1796 void OMPClauseWriter::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
/external/clang/lib/Sema/
DSemaOpenMP.cpp586 if (auto *Clause = dyn_cast<OMPLastprivateClause>(C)) { in EndOpenMPDSABlock()
5117 return OMPLastprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPLastprivateClause()
DTreeTransform.h7104 TreeTransform<Derived>::TransformOMPLastprivateClause(OMPLastprivateClause *C) { in TransformOMPLastprivateClause()
/external/clang/tools/libclang/
DCIndex.cpp2023 const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()