Searched refs:OMPLastprivateClause (Results 1 – 12 of 12) sorted by relevance
/external/clang/lib/AST/ |
D | OpenMPClause.cpp | 97 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 …]
|
D | StmtProfile.cpp | 367 OMPClauseProfiler::VisitOMPLastprivateClause(const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
|
D | StmtPrinter.cpp | 784 void OMPClausePrinter::VisitOMPLastprivateClause(OMPLastprivateClause *Node) { in VisitOMPLastprivateClause()
|
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 1302 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);
|
D | RecursiveASTVisitor.h | 2614 OMPLastprivateClause *C) {
|
/external/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 144 OPENMP_CLAUSE(lastprivate, OMPLastprivateClause)
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 529 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/ |
D | ASTReaderStmt.cpp | 1824 C = OMPLastprivateClause::CreateEmpty(Context, Record[Idx++]); in readClause() 1998 void OMPClauseReader::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
|
D | ASTWriterStmt.cpp | 1873 void OMPClauseWriter::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 919 if (auto *Clause = dyn_cast<OMPLastprivateClause>(C)) { in EndOpenMPDSABlock() 6861 return OMPLastprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPLastprivateClause()
|
D | TreeTransform.h | 7626 TreeTransform<Derived>::TransformOMPLastprivateClause(OMPLastprivateClause *C) { in TransformOMPLastprivateClause()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 2125 const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
|