Home
last modified time | relevance | path

Searched refs:NumForLoops (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h1017 Stmt *NumForLoops = nullptr; variable
1020 void setNumForLoops(Expr *Num) { NumForLoops = Num; } in setNumForLoops()
1032 LParenLoc(LParenLoc), NumForLoops(Num) {} in OMPCollapseClause()
1046 Expr *getNumForLoops() const { return cast_or_null<Expr>(NumForLoops); } in getNumForLoops()
1048 child_range children() { return child_range(&NumForLoops, &NumForLoops + 1); } in children()
1051 return const_child_range(&NumForLoops, &NumForLoops + 1); in children()
1700 Stmt *NumForLoops = nullptr; variable
1715 LParenLoc(LParenLoc), NumForLoops(Num), NumberOfLoops(NumLoops) {} in OMPOrderedClause()
1723 void setNumForLoops(Expr *Num) { NumForLoops = Num; } in setNumForLoops()
1761 child_range children() { return child_range(&NumForLoops, &NumForLoops + 1); } in children()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp14354 OMPClause *Sema::ActOnOpenMPCollapseClause(Expr *NumForLoops, in ActOnOpenMPCollapseClause() argument
14364 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_collapse); in ActOnOpenMPCollapseClause()
14374 Expr *NumForLoops) { in ActOnOpenMPOrderedClause() argument
14380 if (NumForLoops && LParenLoc.isValid()) { in ActOnOpenMPOrderedClause()
14382 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_ordered); in ActOnOpenMPOrderedClause()
14385 NumForLoops = NumForLoopsResult.get(); in ActOnOpenMPOrderedClause()
14387 NumForLoops = nullptr; in ActOnOpenMPOrderedClause()
14390 Context, NumForLoops, NumForLoops ? DSAStack->getAssociatedLoops() : 0, in ActOnOpenMPOrderedClause()
14392 DSAStack->setOrderedRegion(/*IsOrdered=*/true, NumForLoops, Clause); in ActOnOpenMPOrderedClause()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h10963 OMPClause *ActOnOpenMPCollapseClause(Expr *NumForLoops,
10971 Expr *NumForLoops = nullptr);