Searched refs:NumLoop (Results 1 – 2 of 2) sorted by relevance
366 void OMPOrderedClause::setLoopNumIterations(unsigned NumLoop, in setLoopNumIterations() argument368 assert(NumLoop < NumberOfLoops && "out of loops number."); in setLoopNumIterations()369 getTrailingObjects<Expr *>()[NumLoop] = NumIterations; in setLoopNumIterations()376 void OMPOrderedClause::setLoopCounter(unsigned NumLoop, Expr *Counter) { in setLoopCounter() argument377 assert(NumLoop < NumberOfLoops && "out of loops number."); in setLoopCounter()378 getTrailingObjects<Expr *>()[NumberOfLoops + NumLoop] = Counter; in setLoopCounter()381 Expr *OMPOrderedClause::getLoopCounter(unsigned NumLoop) { in getLoopCounter() argument382 assert(NumLoop < NumberOfLoops && "out of loops number."); in getLoopCounter()383 return getTrailingObjects<Expr *>()[NumberOfLoops + NumLoop]; in getLoopCounter()386 const Expr *OMPOrderedClause::getLoopCounter(unsigned NumLoop) const { in getLoopCounter()[all …]
1891 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;4902 void setLoopData(unsigned NumLoop, Expr *Cnt);4905 Expr *getLoopData(unsigned NumLoop);4906 const Expr *getLoopData(unsigned NumLoop) const;