Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DLoopUnrolling.cpp213 llvm::APInt InitNum = in shouldCompletelyUnroll() local
216 if (InitNum.getBitWidth() != BoundNum.getBitWidth()) { in shouldCompletelyUnroll()
217 InitNum = InitNum.zextOrSelf(BoundNum.getBitWidth()); in shouldCompletelyUnroll()
218 BoundNum = BoundNum.zextOrSelf(InitNum.getBitWidth()); in shouldCompletelyUnroll()
222 maxStep = (BoundNum - InitNum + 1).abs().getZExtValue(); in shouldCompletelyUnroll()
224 maxStep = (BoundNum - InitNum).abs().getZExtValue(); in shouldCompletelyUnroll()