Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp370 void OMPOrderedClause::setLoopNumIterations(unsigned NumLoop, in setLoopNumIterations() argument
372 assert(NumLoop < NumberOfLoops && "out of loops number."); in setLoopNumIterations()
373 getTrailingObjects()[NumLoop] = NumIterations; in setLoopNumIterations()
380 void OMPOrderedClause::setLoopCounter(unsigned NumLoop, Expr *Counter) { in setLoopCounter() argument
381 assert(NumLoop < NumberOfLoops && "out of loops number."); in setLoopCounter()
382 getTrailingObjects()[NumberOfLoops + NumLoop] = Counter; in setLoopCounter()
385 Expr *OMPOrderedClause::getLoopCounter(unsigned NumLoop) { in getLoopCounter() argument
386 assert(NumLoop < NumberOfLoops && "out of loops number."); in getLoopCounter()
387 return getTrailingObjects()[NumberOfLoops + NumLoop]; in getLoopCounter()
390 const Expr *OMPOrderedClause::getLoopCounter(unsigned NumLoop) const { in getLoopCounter()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h2188 void setLoopNumIterations(unsigned NumLoop, Expr *NumIterations);
2193 void setLoopCounter(unsigned NumLoop, Expr *Counter);
2195 Expr *getLoopCounter(unsigned NumLoop);
2196 const Expr *getLoopCounter(unsigned NumLoop) const;
5592 void setLoopData(unsigned NumLoop, Expr *Cnt);
5595 Expr *getLoopData(unsigned NumLoop);
5596 const Expr *getLoopData(unsigned NumLoop) const;
9869 void setLoopData(unsigned NumLoop, Expr *Cnt);
9872 Expr *getLoopData(unsigned NumLoop);
9873 const Expr *getLoopData(unsigned NumLoop) const;