Searched refs:NumLoop (Results 1 – 2 of 2) sorted by relevance
349 void OMPOrderedClause::setLoopNumIterations(unsigned NumLoop, in setLoopNumIterations() argument351 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() argument360 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() argument365 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 …]
1643 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;