Searched refs:OMPSimdDirective (Results 1 – 15 of 15) sorted by relevance
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 629 class OMPSimdDirective : public OMPLoopDirective { 638 OMPSimdDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPSimdDirective() function 648 explicit OMPSimdDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPSimdDirective() function 664 static OMPSimdDirective *Create(const ASTContext &C, SourceLocation StartLoc, 677 static OMPSimdDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
|
D | DataRecursiveASTVisitor.h | 2312 DEF_TRAVERSE_STMT(OMPSimdDirective,
|
D | RecursiveASTVisitor.h | 2342 DEF_TRAVERSE_STMT(OMPSimdDirective,
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 1624 OMPSimdDirective * 1625 OMPSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create() 1629 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPSimdDirective), in Create() 1634 OMPSimdDirective *Dir = new (Mem) in Create() 1635 OMPSimdDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create() 1651 OMPSimdDirective *OMPSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 1655 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPSimdDirective), in CreateEmpty() 1660 return new (Mem) OMPSimdDirective(CollapsedNum, NumClauses); in CreateEmpty()
|
D | StmtProfile.cpp | 445 void StmtProfiler::VisitOMPSimdDirective(const OMPSimdDirective *S) { in VisitOMPSimdDirective()
|
D | StmtPrinter.cpp | 829 void StmtPrinter::VisitOMPSimdDirective(OMPSimdDirective *Node) { in VisitOMPSimdDirective()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 185 def OMPSimdDirective : DStmt<OMPLoopDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 700 void CodeGenFunction::EmitOMPSimdDirective(const OMPSimdDirective &S) { in EmitOMPSimdDirective()
|
D | CGStmt.cpp | 181 EmitOMPSimdDirective(cast<OMPSimdDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2121 void EmitOMPSimdDirective(const OMPSimdDirective &S);
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2102 void ASTStmtReader::VisitOMPSimdDirective(OMPSimdDirective *D) { in VisitOMPSimdDirective() 2708 S = OMPSimdDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 1950 void ASTStmtWriter::VisitOMPSimdDirective(OMPSimdDirective *D) { in VisitOMPSimdDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1867 void VisitOMPSimdDirective(const OMPSimdDirective *D); 2415 void EnqueueVisitor::VisitOMPSimdDirective(const OMPSimdDirective *D) { in VisitOMPSimdDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 3015 return OMPSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPSimdDirective()
|
D | TreeTransform.h | 6716 TreeTransform<Derived>::TransformOMPSimdDirective(OMPSimdDirective *D) { in TransformOMPSimdDirective()
|