Searched refs:NumLoop (Results 1 – 2 of 2) sorted by relevance
330 void OMPOrderedClause::setLoopNumIterations(unsigned NumLoop, in setLoopNumIterations() argument332 assert(NumLoop < NumberOfLoops && "out of loops number."); in setLoopNumIterations()333 getTrailingObjects<Expr *>()[NumLoop] = NumIterations; in setLoopNumIterations()340 void OMPOrderedClause::setLoopCounter(unsigned NumLoop, Expr *Counter) { in setLoopCounter() argument341 assert(NumLoop < NumberOfLoops && "out of loops number."); in setLoopCounter()342 getTrailingObjects<Expr *>()[NumberOfLoops + NumLoop] = Counter; in setLoopCounter()345 Expr *OMPOrderedClause::getLoopCounter(unsigned NumLoop) { in getLoopCounter() argument346 assert(NumLoop < NumberOfLoops && "out of loops number."); in getLoopCounter()347 return getTrailingObjects<Expr *>()[NumberOfLoops + NumLoop]; in getLoopCounter()350 const Expr *OMPOrderedClause::getLoopCounter(unsigned NumLoop) const { in getLoopCounter()[all …]
1549 void setLoopNumIterations(unsigned NumLoop, Expr *NumIterations);1554 void setLoopCounter(unsigned NumLoop, Expr *Counter);1556 Expr *getLoopCounter(unsigned NumLoop);1557 const Expr *getLoopCounter(unsigned NumLoop) const;4528 void setLoopData(unsigned NumLoop, Expr *Cnt);4531 Expr *getLoopData(unsigned NumLoop);4532 const Expr *getLoopData(unsigned NumLoop) const;