Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DLoopUnrolling.cpp263 llvm::APInt InitNum = in shouldCompletelyUnroll() local
266 if (InitNum.getBitWidth() != BoundNum.getBitWidth()) { in shouldCompletelyUnroll()
267 InitNum = InitNum.zextOrSelf(BoundNum.getBitWidth()); in shouldCompletelyUnroll()
268 BoundNum = BoundNum.zextOrSelf(InitNum.getBitWidth()); in shouldCompletelyUnroll()
272 maxStep = (BoundNum - InitNum + 1).abs().getZExtValue(); in shouldCompletelyUnroll()
274 maxStep = (BoundNum - InitNum).abs().getZExtValue(); in shouldCompletelyUnroll()