Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/AST/
H A DOpenMPClause.cpp366 void OMPOrderedClause::setLoopNumIterations(unsigned NumLoop, in setLoopNumIterations() argument
368 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() argument
377 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() argument
382 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 …]
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DOpenMPClause.h1891 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;