Home
last modified time | relevance | path

Searched refs:OMPParallelForDirective (Results 1 – 15 of 15) sorted by relevance

/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DStmtOpenMP.h1070 class OMPParallelForDirective : public OMPLoopDirective {
1079 OMPParallelForDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPParallelForDirective() function
1089 explicit OMPParallelForDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPParallelForDirective() function
1105 static OMPParallelForDirective *
1117 static OMPParallelForDirective *CreateEmpty(const ASTContext &C,
H A DDataRecursiveASTVisitor.h2336 DEF_TRAVERSE_STMT(OMPParallelForDirective,
H A DRecursiveASTVisitor.h2358 DEF_TRAVERSE_STMT(OMPParallelForDirective,
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DStmt.cpp1727 OMPParallelForDirective *OMPParallelForDirective::Create( in Create()
1731 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPParallelForDirective), in Create()
1736 OMPParallelForDirective *Dir = new (Mem) in Create()
1737 OMPParallelForDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create()
1760 OMPParallelForDirective *
1761 OMPParallelForDirective::CreateEmpty(const ASTContext &C, unsigned NumClauses, in CreateEmpty()
1763 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPParallelForDirective), in CreateEmpty()
1768 return new (Mem) OMPParallelForDirective(CollapsedNum, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp433 StmtProfiler::VisitOMPParallelForDirective(const OMPParallelForDirective *S) { in VisitOMPParallelForDirective()
H A DStmtPrinter.cpp874 void StmtPrinter::VisitOMPParallelForDirective(OMPParallelForDirective *Node) { in VisitOMPParallelForDirective()
/minix3/external/bsd/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td193 def OMPParallelForDirective : DStmt<OMPLoopDirective>;
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp647 CodeGenFunction::EmitOMPParallelForDirective(const OMPParallelForDirective &) { in EmitOMPParallelForDirective() argument
H A DCGStmt.cpp207 EmitOMPParallelForDirective(cast<OMPParallelForDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h2017 void EmitOMPParallelForDirective(const OMPParallelForDirective &S);
/minix3/external/bsd/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp2079 void ASTStmtReader::VisitOMPParallelForDirective(OMPParallelForDirective *D) { in VisitOMPParallelForDirective()
2685 S = OMPParallelForDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
H A DASTWriterStmt.cpp1960 void ASTStmtWriter::VisitOMPParallelForDirective(OMPParallelForDirective *D) { in VisitOMPParallelForDirective()
/minix3/external/bsd/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp1876 void VisitOMPParallelForDirective(const OMPParallelForDirective *D);
2388 EnqueueVisitor::VisitOMPParallelForDirective(const OMPParallelForDirective *D) { in VisitOMPParallelForDirective()
/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaOpenMP.cpp3108 return OMPParallelForDirective::Create(Context, StartLoc, EndLoc, in ActOnOpenMPParallelForDirective()
H A DTreeTransform.h6771 OMPParallelForDirective *D) { in TransformOMPParallelForDirective()