Home
last modified time | relevance | path

Searched refs:NumLoop (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp369 void OMPOrderedClause::setLoopNumIterations(unsigned NumLoop, in setLoopNumIterations() argument
371 assert(NumLoop < NumberOfLoops && "out of loops number."); in setLoopNumIterations()
372 getTrailingObjects<Expr *>()[NumLoop] = NumIterations; in setLoopNumIterations()
379 void OMPOrderedClause::setLoopCounter(unsigned NumLoop, Expr *Counter) { in setLoopCounter() argument
380 assert(NumLoop < NumberOfLoops && "out of loops number."); in setLoopCounter()
381 getTrailingObjects<Expr *>()[NumberOfLoops + NumLoop] = Counter; in setLoopCounter()
384 Expr *OMPOrderedClause::getLoopCounter(unsigned NumLoop) { in getLoopCounter() argument
385 assert(NumLoop < NumberOfLoops && "out of loops number."); in getLoopCounter()
386 return getTrailingObjects<Expr *>()[NumberOfLoops + NumLoop]; in getLoopCounter()
389 const Expr *OMPOrderedClause::getLoopCounter(unsigned NumLoop) const { in getLoopCounter()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h1891 void setLoopNumIterations(unsigned NumLoop, Expr *NumIterations);
1896 void setLoopCounter(unsigned NumLoop, Expr *Counter);
1898 Expr *getLoopCounter(unsigned NumLoop);
1899 const Expr *getLoopCounter(unsigned NumLoop) const;
5038 void setLoopData(unsigned NumLoop, Expr *Cnt);
5041 Expr *getLoopData(unsigned NumLoop);
5042 const Expr *getLoopData(unsigned NumLoop) const;
9283 void setLoopData(unsigned NumLoop, Expr *Cnt);
9286 Expr *getLoopData(unsigned NumLoop);
9287 const Expr *getLoopData(unsigned NumLoop) const;