Home
last modified time | relevance | path

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

/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DBitwiseShiftChecker.cpp239 const unsigned LeftBitWidth = Ctx.getASTContext().getIntWidth(LHSTy); in checkLeftShiftOverflow() local
240 assert(LeftBitWidth > 0); in checkLeftShiftOverflow()
257 LeftBitWidth - static_cast<unsigned>(ShouldPreserveSignBit); in checkLeftShiftOverflow()
259 assert(LeftBitWidth >= UsedBitsInLeftOperand); in checkLeftShiftOverflow()
/src/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp222 unsigned LeftBitWidth = LeftOp.getBitWidth(); in eval() local
224 unsigned NewBitWidth = std::max(LeftBitWidth, RightBitWidth); in eval()