Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DStmtOpenMP.cpp347 OMPParallelForDirective *OMPParallelForDirective::Create( in Create()
351 unsigned Size = llvm::alignTo(sizeof(OMPParallelForDirective), in Create()
356 OMPParallelForDirective *Dir = new (Mem) in Create()
357 OMPParallelForDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create()
387 OMPParallelForDirective *
388 OMPParallelForDirective::CreateEmpty(const ASTContext &C, unsigned NumClauses, in CreateEmpty()
390 unsigned Size = llvm::alignTo(sizeof(OMPParallelForDirective), in CreateEmpty()
395 return new (Mem) OMPParallelForDirective(CollapsedNum, NumClauses); in CreateEmpty()
DStmtProfile.cpp595 StmtProfiler::VisitOMPParallelForDirective(const OMPParallelForDirective *S) { in VisitOMPParallelForDirective()
DStmtPrinter.cpp1041 void StmtPrinter::VisitOMPParallelForDirective(OMPParallelForDirective *Node) { in VisitOMPParallelForDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h1302 class OMPParallelForDirective : public OMPLoopDirective {
1315 OMPParallelForDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPParallelForDirective() function
1326 explicit OMPParallelForDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPParallelForDirective() function
1347 static OMPParallelForDirective *
1359 static OMPParallelForDirective *CreateEmpty(const ASTContext &C,
DRecursiveASTVisitor.h2492 DEF_TRAVERSE_STMT(OMPParallelForDirective,
/external/clang/include/clang/Basic/
DStmtNodes.td207 def OMPParallelForDirective : DStmt<OMPLoopDirective>;
/external/clang/lib/CodeGen/
DCGStmt.cpp212 EmitOMPParallelForDirective(cast<OMPParallelForDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2476 void EmitOMPParallelForDirective(const OMPParallelForDirective &S);
DCGStmtOpenMP.cpp2374 const OMPParallelForDirective &S) { in EmitOMPParallelForDirective()
DCGOpenMPRuntime.cpp853 else if (auto *OPFD = dyn_cast<OMPParallelForDirective>(&D)) in emitParallelOrTeamsOutlinedFunction()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2595 void ASTStmtReader::VisitOMPParallelForDirective(OMPParallelForDirective *D) { in VisitOMPParallelForDirective()
3313 S = OMPParallelForDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
DASTWriterStmt.cpp2281 void ASTStmtWriter::VisitOMPParallelForDirective(OMPParallelForDirective *D) { in VisitOMPParallelForDirective()
/external/clang/tools/libclang/
DCIndex.cpp1947 void VisitOMPParallelForDirective(const OMPParallelForDirective *D);
2634 EnqueueVisitor::VisitOMPParallelForDirective(const OMPParallelForDirective *D) { in VisitOMPParallelForDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp5793 return OMPParallelForDirective::Create(Context, StartLoc, EndLoc, in ActOnOpenMPParallelForDirective()
DTreeTransform.h7321 OMPParallelForDirective *D) { in TransformOMPParallelForDirective()