Searched refs:CXXLoopBound (Results 1 – 2 of 2) sorted by relevance
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/altera/ |
| H A D | UnrollLoopsCheck.cpp | 42 const auto *CXXLoopBound = in check() local 55 if (hasKnownBounds(Loop, CXXLoopBound, Context)) { in check() 56 if (hasLargeNumIterations(Loop, CXXLoopBound, Context)) { in check() 114 const IntegerLiteral *CXXLoopBound, in hasKnownBounds() argument 117 return CXXLoopBound != nullptr; in hasKnownBounds() 165 const IntegerLiteral *CXXLoopBound, in hasLargeNumIterations() argument 170 assert(CXXLoopBound && "CXX ranged for loop has no loop bound"); in hasLargeNumIterations() 171 return exprHasLargeNumIterations(CXXLoopBound, Context); in hasLargeNumIterations()
|
| H A D | UnrollLoopsCheck.h | 55 const IntegerLiteral *CXXLoopBound, 69 bool hasKnownBounds(const Stmt *Statement, const IntegerLiteral *CXXLoopBound,
|