Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/AST/
DOpenMPClause.cpp330 void OMPOrderedClause::setLoopNumIterations(unsigned NumLoop, in setLoopNumIterations() argument
332 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() argument
341 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() argument
346 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 …]
/external/llvm-project/clang/include/clang/AST/
DOpenMPClause.h1549 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;