Searched refs:NumLoop (Results 1 – 2 of 2) sorted by relevance
369 void OMPOrderedClause::setLoopNumIterations(unsigned NumLoop, in setLoopNumIterations() argument371 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() argument380 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() argument385 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 …]
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;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;