Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDStmtOpenMP.h1102 class OMPParallelForDirective : public OMPLoopDirective {
1111 OMPParallelForDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPParallelForDirective() function
1121 explicit OMPParallelForDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPParallelForDirective() function
1137 static OMPParallelForDirective *
1149 static OMPParallelForDirective *CreateEmpty(const ASTContext &C,
HDDataRecursiveASTVisitor.h2366 DEF_TRAVERSE_STMT(OMPParallelForDirective,
HDRecursiveASTVisitor.h2398 DEF_TRAVERSE_STMT(OMPParallelForDirective,
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDStmt.cpp1897 OMPParallelForDirective *OMPParallelForDirective::Create( in Create()
1901 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPParallelForDirective), in Create()
1906 OMPParallelForDirective *Dir = new (Mem) in Create()
1907 OMPParallelForDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create()
1931 OMPParallelForDirective *
1932 OMPParallelForDirective::CreateEmpty(const ASTContext &C, unsigned NumClauses, in CreateEmpty()
1934 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPParallelForDirective), in CreateEmpty()
1939 return new (Mem) OMPParallelForDirective(CollapsedNum, NumClauses); in CreateEmpty()
HDStmtProfile.cpp486 StmtProfiler::VisitOMPParallelForDirective(const OMPParallelForDirective *S) { in VisitOMPParallelForDirective()
HDStmtPrinter.cpp887 void StmtPrinter::VisitOMPParallelForDirective(OMPParallelForDirective *Node) { in VisitOMPParallelForDirective()
/NextBSD/contrib/llvm/tools/clang/include/clang/Basic/
HDStmtNodes.td195 def OMPParallelForDirective : DStmt<OMPLoopDirective>;
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTReaderStmt.cpp2173 void ASTStmtReader::VisitOMPParallelForDirective(OMPParallelForDirective *D) { in VisitOMPParallelForDirective()
2809 S = OMPParallelForDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
HDASTWriterStmt.cpp2023 void ASTStmtWriter::VisitOMPParallelForDirective(OMPParallelForDirective *D) { in VisitOMPParallelForDirective()
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCGStmt.cpp205 EmitOMPParallelForDirective(cast<OMPParallelForDirective>(*S)); in EmitStmt()
HDCGStmtOpenMP.cpp1440 const OMPParallelForDirective &S) { in EmitOMPParallelForDirective()
HDCodeGenFunction.h2204 void EmitOMPParallelForDirective(const OMPParallelForDirective &S);
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaOpenMP.cpp3679 return OMPParallelForDirective::Create(Context, StartLoc, EndLoc, in ActOnOpenMPParallelForDirective()
HDTreeTransform.h6987 OMPParallelForDirective *D) { in TransformOMPParallelForDirective()