HomeSort by: relevance | last modified time | path
    Searched refs:OMPOrderedClause (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
OpenMPClause.cpp 323 OMPOrderedClause *OMPOrderedClause::Create(const ASTContext &C, Expr *Num,
330 new (Mem) OMPOrderedClause(Num, NumLoops, StartLoc, LParenLoc, EndLoc);
338 OMPOrderedClause *OMPOrderedClause::CreateEmpty(const ASTContext &C,
341 auto *Clause = new (Mem) OMPOrderedClause(NumLoops);
349 void OMPOrderedClause::setLoopNumIterations(unsigned NumLoop,
355 ArrayRef<Expr *> OMPOrderedClause::getLoopNumIterations() const {
359 void OMPOrderedClause::setLoopCounter(unsigned NumLoop, Expr *Counter) {
364 Expr *OMPOrderedClause::getLoopCounter(unsigned NumLoop)
    [all...]
StmtProfile.cpp 523 void OMPClauseProfiler::VisitOMPOrderedClause(const OMPOrderedClause *C) {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
OpenMPClause.h 1582 class OMPOrderedClause final
1584 private llvm::TrailingObjects<OMPOrderedClause, Expr *> {
1604 OMPOrderedClause(Expr *Num, unsigned NumLoops, SourceLocation StartLoc,
1610 explicit OMPOrderedClause(unsigned NumLoops)
1625 static OMPOrderedClause *Create(const ASTContext &C, Expr *Num,
1631 static OMPOrderedClause* CreateEmpty(const ASTContext &C, unsigned NumLoops);
RecursiveASTVisitor.h 3140 bool RecursiveASTVisitor<Derived>::VisitOMPOrderedClause(OMPOrderedClause *C) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaOpenMP.cpp 172 llvm::Optional<std::pair<const Expr *, OMPOrderedClause *>> OrderedRegion;
798 OMPOrderedClause *Clause) {
812 std::pair<const Expr *, OMPOrderedClause *> getOrderedRegionParam() const {
826 std::pair<const Expr *, OMPOrderedClause *>
4427 const OMPOrderedClause *Ordered = nullptr;
4432 Ordered = cast<OMPOrderedClause>(Clause);
4474 OMPOrderedClause *OC = nullptr;
4519 OC = cast<OMPOrderedClause>(Clause);
9576 OMPExecutableDirective::getClausesOfKind<OMPOrderedClause>(Clauses);
14035 auto *Clause = OMPOrderedClause::Create
    [all...]
TreeTransform.h 9257 TreeTransform<Derived>::TransformOMPOrderedClause(OMPOrderedClause *C) {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmtOpenMP.cpp 2232 for (const auto *C : S.getClausesOfKind<OMPOrderedClause>()) {
3087 if (const auto *OrderedClause = S.getSingleClause<OMPOrderedClause>()) {
7128 for (const auto *C : D.getClausesOfKind<OMPOrderedClause>()) {
CGOpenMPRuntimeGPU.cpp 813 return !D.hasClausesOfKind<OMPOrderedClause>() &&
CGOpenMPRuntime.cpp 2552 S.getClausesOfKind<OMPOrderedClause>(),
2553 [](const OMPOrderedClause *C) { return C->getNumForLoops(); })) {
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriter.cpp 6100 void OMPClauseWriter::VisitOMPOrderedClause(OMPOrderedClause *C) {
ASTReader.cpp 11739 C = OMPOrderedClause::CreateEmpty(Context, Record.readInt());
12073 void OMPClauseReader::VisitOMPOrderedClause(OMPOrderedClause *C) {
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndex.cpp 2243 void OMPClauseEnqueue::VisitOMPOrderedClause(const OMPOrderedClause *C) {

Completed in 170 milliseconds