Home
last modified time | relevance | path

Searched refs:OMPDistributeParallelForSimdDirective (Results 1 – 25 of 28) sorted by relevance

12

/external/clang/lib/AST/
DStmtOpenMP.cpp1109 OMPDistributeParallelForSimdDirective *
1110 OMPDistributeParallelForSimdDirective::Create( in Create()
1114 unsigned Size = llvm::alignTo(sizeof(OMPDistributeParallelForSimdDirective), in Create()
1120 OMPDistributeParallelForSimdDirective *Dir = new (Mem) in Create()
1121 OMPDistributeParallelForSimdDirective(StartLoc, EndLoc, CollapsedNum, in Create()
1151 OMPDistributeParallelForSimdDirective *
1152 OMPDistributeParallelForSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
1156 unsigned Size = llvm::alignTo(sizeof(OMPDistributeParallelForSimdDirective), in CreateEmpty()
1163 OMPDistributeParallelForSimdDirective(CollapsedNum, NumClauses); in CreateEmpty()
DStmtProfile.cpp716 const OMPDistributeParallelForSimdDirective *S) { in VisitOMPDistributeParallelForSimdDirective()
DStmtPrinter.cpp1179 OMPDistributeParallelForSimdDirective *Node) { in VisitOMPDistributeParallelForSimdDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h2897 class OMPDistributeParallelForSimdDirective final : public OMPLoopDirective {
2907 OMPDistributeParallelForSimdDirective(SourceLocation StartLoc, in OMPDistributeParallelForSimdDirective() function
2920 explicit OMPDistributeParallelForSimdDirective(unsigned CollapsedNum, in OMPDistributeParallelForSimdDirective() function
2938 static OMPDistributeParallelForSimdDirective *Create(
2949 static OMPDistributeParallelForSimdDirective *CreateEmpty(
DRecursiveASTVisitor.h2567 DEF_TRAVERSE_STMT(OMPDistributeParallelForSimdDirective,
/external/llvm-project/clang/lib/AST/
DStmtOpenMP.cpp1256 OMPDistributeParallelForSimdDirective *
1257 OMPDistributeParallelForSimdDirective::Create( in Create()
1261 auto *Dir = createDirective<OMPDistributeParallelForSimdDirective>( in Create()
1305 OMPDistributeParallelForSimdDirective *
1306 OMPDistributeParallelForSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
1310 return createEmptyDirective<OMPDistributeParallelForSimdDirective>( in CreateEmpty()
DStmtProfile.cpp1048 const OMPDistributeParallelForSimdDirective *S) { in VisitOMPDistributeParallelForSimdDirective()
DStmtPrinter.cpp881 OMPDistributeParallelForSimdDirective *Node) { in VisitOMPDistributeParallelForSimdDirective()
/external/clang/include/clang/Basic/
DStmtNodes.td232 def OMPDistributeParallelForSimdDirective : DStmt<OMPLoopDirective>;
/external/llvm-project/clang/include/clang/AST/
DStmtOpenMP.h3764 class OMPDistributeParallelForSimdDirective final : public OMPLoopDirective {
3774 OMPDistributeParallelForSimdDirective(SourceLocation StartLoc, in OMPDistributeParallelForSimdDirective() function
3785 explicit OMPDistributeParallelForSimdDirective(unsigned CollapsedNum) in OMPDistributeParallelForSimdDirective() function
3801 static OMPDistributeParallelForSimdDirective *Create(
3812 static OMPDistributeParallelForSimdDirective *CreateEmpty(
DRecursiveASTVisitor.h2907 DEF_TRAVERSE_STMT(OMPDistributeParallelForSimdDirective,
/external/llvm-project/clang/include/clang/Basic/
DStmtNodes.td262 def OMPDistributeParallelForSimdDirective : StmtNode<OMPLoopDirective>;
/external/clang/lib/CodeGen/
DCGStmt.cpp289 cast<OMPDistributeParallelForSimdDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2507 const OMPDistributeParallelForSimdDirective &S);
DCGStmtOpenMP.cpp1881 const OMPDistributeParallelForSimdDirective &S) { in EmitOMPDistributeParallelForSimdDirective()
/external/llvm-project/clang/lib/Serialization/
DASTReaderStmt.cpp2512 OMPDistributeParallelForSimdDirective *D) { in VisitOMPDistributeParallelForSimdDirective()
3382 S = OMPDistributeParallelForSimdDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
DASTWriterStmt.cpp2449 OMPDistributeParallelForSimdDirective *D) { in VisitOMPDistributeParallelForSimdDirective()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2754 OMPDistributeParallelForSimdDirective *D) { in VisitOMPDistributeParallelForSimdDirective()
3454 S = OMPDistributeParallelForSimdDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
DASTWriterStmt.cpp2458 OMPDistributeParallelForSimdDirective *D) { in VisitOMPDistributeParallelForSimdDirective()
/external/llvm-project/clang/lib/CodeGen/
DCGStmt.cpp326 cast<OMPDistributeParallelForSimdDirective>(*S)); in EmitStmt()
DCodeGenFunction.h3439 const OMPDistributeParallelForSimdDirective &S);
DCGStmtOpenMP.cpp2815 const OMPDistributeParallelForSimdDirective &S) { in EmitOMPDistributeParallelForSimdDirective()
/external/clang/tools/libclang/
DCIndex.cpp1975 const OMPDistributeParallelForSimdDirective *D);
2744 const OMPDistributeParallelForSimdDirective *D) { in VisitOMPDistributeParallelForSimdDirective()
/external/llvm-project/clang/tools/libclang/
DCIndex.cpp2089 const OMPDistributeParallelForSimdDirective *D);
3031 const OMPDistributeParallelForSimdDirective *D) { in VisitOMPDistributeParallelForSimdDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp7148 return OMPDistributeParallelForSimdDirective::Create( in ActOnOpenMPDistributeParallelForSimdDirective()

12