Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/
H A DTooSmallLoopVariableCheck.cpp99 const QualType &IntExprType) { in calcMagnitudeBits() argument
100 assert(IntExprType->isIntegerType()); in calcMagnitudeBits()
102 return IntExprType->isUnsignedIntegerType() in calcMagnitudeBits()
103 ? Context.getIntWidth(IntExprType) in calcMagnitudeBits()
104 : Context.getIntWidth(IntExprType) - 1; in calcMagnitudeBits()