Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DOpenMPClause.cpp349 void OMPOrderedClause::setLoopNumIterations(unsigned NumLoop, in setLoopNumIterations() argument
351 assert(NumLoop < NumberOfLoops && "out of loops number."); in setLoopNumIterations()
352 getTrailingObjects<Expr *>()[NumLoop] = NumIterations; in setLoopNumIterations()
359 void OMPOrderedClause::setLoopCounter(unsigned NumLoop, Expr *Counter) { in setLoopCounter() argument
360 assert(NumLoop < NumberOfLoops && "out of loops number."); in setLoopCounter()
361 getTrailingObjects<Expr *>()[NumberOfLoops + NumLoop] = Counter; in setLoopCounter()
364 Expr *OMPOrderedClause::getLoopCounter(unsigned NumLoop) { in getLoopCounter() argument
365 assert(NumLoop < NumberOfLoops && "out of loops number."); in getLoopCounter()
366 return getTrailingObjects<Expr *>()[NumberOfLoops + NumLoop]; in getLoopCounter()
369 const Expr *OMPOrderedClause::getLoopCounter(unsigned NumLoop) const { in getLoopCounter()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DOpenMPClause.h1643 void setLoopNumIterations(unsigned NumLoop, Expr *NumIterations);
1648 void setLoopCounter(unsigned NumLoop, Expr *Counter);
1650 Expr *getLoopCounter(unsigned NumLoop);
1651 const Expr *getLoopCounter(unsigned NumLoop) const;
4622 void setLoopData(unsigned NumLoop, Expr *Cnt);
4625 Expr *getLoopData(unsigned NumLoop);
4626 const Expr *getLoopData(unsigned NumLoop) const;