Searched refs:OMPLinearClause (Results 1 – 12 of 12) sorted by relevance
/external/clang/lib/AST/ |
D | OpenMPClause.cpp | 170 void OMPLinearClause::setPrivates(ArrayRef<Expr *> PL) { in setPrivates() 176 void OMPLinearClause::setInits(ArrayRef<Expr *> IL) { in setInits() 182 void OMPLinearClause::setUpdates(ArrayRef<Expr *> UL) { in setUpdates() 188 void OMPLinearClause::setFinals(ArrayRef<Expr *> FL) { in setFinals() 194 OMPLinearClause *OMPLinearClause::Create( in Create() 201 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPLinearClause), in Create() 204 OMPLinearClause *Clause = new (Mem) OMPLinearClause( in Create() 220 OMPLinearClause *OMPLinearClause::CreateEmpty(const ASTContext &C, in CreateEmpty() 224 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPLinearClause), in CreateEmpty() 227 return new (Mem) OMPLinearClause(NumVars); in CreateEmpty()
|
D | StmtProfile.cpp | 401 void OMPClauseProfiler::VisitOMPLinearClause(const OMPLinearClause *C) { in VisitOMPLinearClause()
|
D | StmtPrinter.cpp | 822 void OMPClausePrinter::VisitOMPLinearClause(OMPLinearClause *Node) { in VisitOMPLinearClause()
|
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 1749 class OMPLinearClause : public OMPVarListClause<OMPLinearClause> { 1772 OMPLinearClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPLinearClause() function 1776 : OMPVarListClause<OMPLinearClause>(OMPC_linear, StartLoc, LParenLoc, in OMPLinearClause() 1784 explicit OMPLinearClause(unsigned NumVars) in OMPLinearClause() function 1785 : OMPVarListClause<OMPLinearClause>(OMPC_linear, SourceLocation(), in OMPLinearClause() 1857 static OMPLinearClause * 1868 static OMPLinearClause *CreateEmpty(const ASTContext &C, unsigned NumVars);
|
D | RecursiveASTVisitor.h | 2638 bool RecursiveASTVisitor<Derived>::VisitOMPLinearClause(OMPLinearClause *C) {
|
/external/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 147 OPENMP_CLAUSE(linear, OMPLinearClause)
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 908 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { in EmitOMPLoopBody() 979 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { in EmitOMPLinearClauseInit() 1010 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { in emitLinearClauseFinal() 1108 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { in emitPrivateLinearVars()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 962 static bool FinishOpenMPLinearClause(OMPLinearClause &Clause, DeclRefExpr *IV, 4103 if (auto LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPSimdDirective() 4156 if (auto LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPForDirective() 4192 if (auto LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPForSimdDirective() 4408 if (auto LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPParallelForDirective() 4449 if (auto LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPParallelForSimdDirective() 7622 return OMPLinearClause::Create(Context, StartLoc, LParenLoc, LinKind, LinLoc, in ActOnOpenMPLinearClause() 7627 static bool FinishOpenMPLinearClause(OMPLinearClause &Clause, DeclRefExpr *IV, in FinishOpenMPLinearClause()
|
D | TreeTransform.h | 7681 TreeTransform<Derived>::TransformOMPLinearClause(OMPLinearClause *C) { in TransformOMPLinearClause()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1833 C = OMPLinearClause::CreateEmpty(Context, Record[Idx++]); in readClause() 2068 void OMPClauseReader::VisitOMPLinearClause(OMPLinearClause *C) { in VisitOMPLinearClause()
|
D | ASTWriterStmt.cpp | 1913 void OMPClauseWriter::VisitOMPLinearClause(OMPLinearClause *C) { in VisitOMPLinearClause()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 2158 void OMPClauseEnqueue::VisitOMPLinearClause(const OMPLinearClause *C) { in VisitOMPLinearClause()
|