Searched refs:OMPForSimdDirective (Results 1 – 15 of 15) sorted by relevance
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 758 class OMPForSimdDirective : public OMPLoopDirective { 767 OMPForSimdDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPForSimdDirective() function 777 explicit OMPForSimdDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPForSimdDirective() function 793 static OMPForSimdDirective * 805 static OMPForSimdDirective *CreateEmpty(const ASTContext &C,
|
D | DataRecursiveASTVisitor.h | 2318 DEF_TRAVERSE_STMT(OMPForSimdDirective,
|
D | RecursiveASTVisitor.h | 2348 DEF_TRAVERSE_STMT(OMPForSimdDirective,
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 1709 OMPForSimdDirective * 1710 OMPForSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create() 1714 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPForSimdDirective), in Create() 1719 OMPForSimdDirective *Dir = new (Mem) in Create() 1720 OMPForSimdDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create() 1743 OMPForSimdDirective *OMPForSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 1747 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPForSimdDirective), in CreateEmpty() 1752 return new (Mem) OMPForSimdDirective(CollapsedNum, NumClauses); in CreateEmpty()
|
D | StmtProfile.cpp | 453 void StmtProfiler::VisitOMPForSimdDirective(const OMPForSimdDirective *S) { in VisitOMPForSimdDirective()
|
D | StmtPrinter.cpp | 839 void StmtPrinter::VisitOMPForSimdDirective(OMPForSimdDirective *Node) { in VisitOMPForSimdDirective()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 187 def OMPForSimdDirective : DStmt<OMPLoopDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 1097 void CodeGenFunction::EmitOMPForSimdDirective(const OMPForSimdDirective &) { in EmitOMPForSimdDirective() argument
|
D | CGStmt.cpp | 187 EmitOMPForSimdDirective(cast<OMPForSimdDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2123 void EmitOMPForSimdDirective(const OMPForSimdDirective &S);
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2110 void ASTStmtReader::VisitOMPForSimdDirective(OMPForSimdDirective *D) { in VisitOMPForSimdDirective() 2724 S = OMPForSimdDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 1960 void ASTStmtWriter::VisitOMPForSimdDirective(OMPForSimdDirective *D) { in VisitOMPForSimdDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1869 void VisitOMPForSimdDirective(const OMPForSimdDirective *D); 2423 void EnqueueVisitor::VisitOMPForSimdDirective(const OMPForSimdDirective *D) { in VisitOMPForSimdDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 3055 return OMPForSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPForSimdDirective()
|
D | TreeTransform.h | 6738 TreeTransform<Derived>::TransformOMPForSimdDirective(OMPForSimdDirective *D) { in TransformOMPForSimdDirective()
|