/external/clang/lib/AST/ |
D | OpenMPClause.cpp | 50 return static_cast<const OMPLinearClause *>(C); in get() 112 return static_cast<const OMPLinearClause *>(C); in get() 291 void OMPLinearClause::setPrivates(ArrayRef<Expr *> PL) { in setPrivates() 297 void OMPLinearClause::setInits(ArrayRef<Expr *> IL) { in setInits() 303 void OMPLinearClause::setUpdates(ArrayRef<Expr *> UL) { in setUpdates() 309 void OMPLinearClause::setFinals(ArrayRef<Expr *> FL) { in setFinals() 315 OMPLinearClause *OMPLinearClause::Create( in Create() 324 OMPLinearClause *Clause = new (Mem) OMPLinearClause( in Create() 342 OMPLinearClause *OMPLinearClause::CreateEmpty(const ASTContext &C, in CreateEmpty() 347 return new (Mem) OMPLinearClause(NumVars); in CreateEmpty()
|
D | StmtProfile.cpp | 428 void OMPClauseProfiler::VisitOMPLinearClause(const OMPLinearClause *C) { in VisitOMPLinearClause()
|
D | StmtPrinter.cpp | 834 void OMPClausePrinter::VisitOMPLinearClause(OMPLinearClause *Node) { in VisitOMPLinearClause()
|
/external/llvm-project/clang/lib/AST/ |
D | OpenMPClause.cpp | 83 return static_cast<const OMPLinearClause *>(C); in get() 183 return static_cast<const OMPLinearClause *>(C); in get() 515 void OMPLinearClause::setPrivates(ArrayRef<Expr *> PL) { in setPrivates() 521 void OMPLinearClause::setInits(ArrayRef<Expr *> IL) { in setInits() 527 void OMPLinearClause::setUpdates(ArrayRef<Expr *> UL) { in setUpdates() 533 void OMPLinearClause::setFinals(ArrayRef<Expr *> FL) { in setFinals() 539 void OMPLinearClause::setUsedExprs(ArrayRef<Expr *> UE) { in setUsedExprs() 546 OMPLinearClause *OMPLinearClause::Create( in Create() 556 OMPLinearClause *Clause = new (Mem) OMPLinearClause( in Create() 576 OMPLinearClause *OMPLinearClause::CreateEmpty(const ASTContext &C, in CreateEmpty() [all …]
|
D | StmtProfile.cpp | 679 void OMPClauseProfiler::VisitOMPLinearClause(const OMPLinearClause *C) { in VisitOMPLinearClause()
|
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 1878 class OMPLinearClause final 1879 : public OMPVarListClause<OMPLinearClause>, 1881 private llvm::TrailingObjects<OMPLinearClause, Expr *> { 1906 OMPLinearClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPLinearClause() function 1910 : OMPVarListClause<OMPLinearClause>(OMPC_linear, StartLoc, LParenLoc, in OMPLinearClause() 1919 explicit OMPLinearClause(unsigned NumVars) in OMPLinearClause() function 1920 : OMPVarListClause<OMPLinearClause>(OMPC_linear, SourceLocation(), in OMPLinearClause() 1997 static OMPLinearClause * 2009 static OMPLinearClause *CreateEmpty(const ASTContext &C, unsigned NumVars);
|
D | RecursiveASTVisitor.h | 2787 bool RecursiveASTVisitor<Derived>::VisitOMPLinearClause(OMPLinearClause *C) {
|
/external/llvm-project/clang/include/clang/AST/ |
D | OpenMPClause.h | 3543 class OMPLinearClause final 3544 : public OMPVarListClause<OMPLinearClause>, 3546 private llvm::TrailingObjects<OMPLinearClause, Expr *> { 3573 OMPLinearClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPLinearClause() function 3577 : OMPVarListClause<OMPLinearClause>(llvm::omp::OMPC_linear, StartLoc, in OMPLinearClause() 3585 explicit OMPLinearClause(unsigned NumVars) in OMPLinearClause() function 3586 : OMPVarListClause<OMPLinearClause>(llvm::omp::OMPC_linear, in OMPLinearClause() 3669 static OMPLinearClause * 3680 static OMPLinearClause *CreateEmpty(const ASTContext &C, unsigned NumVars); 3796 auto Children = const_cast<OMPLinearClause *>(this)->children(); in children() [all …]
|
D | RecursiveASTVisitor.h | 3244 bool RecursiveASTVisitor<Derived>::VisitOMPLinearClause(OMPLinearClause *C) {
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 1110 static bool FinishOpenMPLinearClause(OMPLinearClause &Clause, DeclRefExpr *IV, 1791 SmallVector<OMPLinearClause *, 4> LCs; in ActOnOpenMPRegionEnd() 1827 LCs.push_back(cast<OMPLinearClause>(Clause)); in ActOnOpenMPRegionEnd() 5476 if (auto LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPSimdDirective() 5530 if (auto LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPForDirective() 5567 if (auto LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPForSimdDirective() 5784 if (auto LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPParallelForDirective() 5826 if (auto LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPParallelForSimdDirective() 6802 if (auto LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPTargetParallelForDirective() 7041 if (auto LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPTaskLoopSimdDirective() [all …]
|
D | TreeTransform.h | 7916 TreeTransform<Derived>::TransformOMPLinearClause(OMPLinearClause *C) { in TransformOMPLinearClause()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 2723 static bool FinishOpenMPLinearClause(OMPLinearClause &Clause, DeclRefExpr *IV, 4358 SmallVector<const OMPLinearClause *, 4> LCs; in ActOnOpenMPRegionEnd() 4399 LCs.push_back(cast<OMPLinearClause>(Clause)); in ActOnOpenMPRegionEnd() 4428 for (const OMPLinearClause *C : LCs) { in ActOnOpenMPRegionEnd() 4954 auto *PC = cast<OMPLinearClause>(Cl); in checkAllocateClauses() 8928 if (auto *LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPSimdDirective() 8967 if (auto *LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPForDirective() 9004 if (auto *LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPForSimdDirective() 9201 if (auto *LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPParallelForDirective() 9242 if (auto *LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPParallelForSimdDirective() [all …]
|
D | TreeTransform.h | 9452 TreeTransform<Derived>::TransformOMPLinearClause(OMPLinearClause *C) { in TransformOMPLinearClause()
|
/external/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 199 OPENMP_CLAUSE(linear, OMPLinearClause)
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 1259 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { in EmitOMPLoopBody() 1325 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { in EmitOMPLinearClauseInit() 1360 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { in EmitOMPLinearClauseFinal() 1486 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { in EmitOMPLinearClause()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 1495 for (const auto *C : S.getClausesOfKind<OMPLinearClause>()) { in checkForLastprivateConditionalUpdate() 1803 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { in EmitOMPLoopBody() 1926 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { in EmitOMPLinearClauseInit() 1965 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { in EmitOMPLinearClauseFinal() 2131 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { in EmitOMPLinearClause()
|
D | CGOpenMPRuntime.cpp | 12018 for (const auto *C : S.getClausesOfKind<OMPLinearClause>()) { in tryToDisableInnerAnalysis()
|
/external/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
D | OMP.td | 87 let clangClass = "OMPLinearClause";
|
D | OMPKinds.def | 60 __OMP_CLAUSE(linear, OMPLinearClause)
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1856 C = OMPLinearClause::CreateEmpty(Context, Record[Idx++]); in readClause() 2145 void OMPClauseReader::VisitOMPLinearClause(OMPLinearClause *C) { in VisitOMPLinearClause()
|
D | ASTWriterStmt.cpp | 1950 void OMPClauseWriter::VisitOMPLinearClause(OMPLinearClause *C) { in VisitOMPLinearClause()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReader.cpp | 11957 C = OMPLinearClause::CreateEmpty(Context, Record.readInt()); in readClause() 12445 void OMPClauseReader::VisitOMPLinearClause(OMPLinearClause *C) { in VisitOMPLinearClause()
|
D | ASTWriter.cpp | 6484 void OMPClauseWriter::VisitOMPLinearClause(OMPLinearClause *C) { in VisitOMPLinearClause()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 2211 void OMPClauseEnqueue::VisitOMPLinearClause(const OMPLinearClause *C) { in VisitOMPLinearClause()
|
/external/llvm-project/clang/tools/libclang/ |
D | CIndex.cpp | 2435 void OMPClauseEnqueue::VisitOMPLinearClause(const OMPLinearClause *C) { in VisitOMPLinearClause()
|