Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCastSizeChecker.cpp118 const llvm::APSInt *SizeInt = svalBuilder.getKnownValue(state, Size); in checkPreStmt() local
119 if (!SizeInt) in checkPreStmt()
122 CharUnits regionSize = CharUnits::fromQuantity(SizeInt->getZExtValue()); in checkPreStmt()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp967 std::optional<uint64_t> SizeInt = ConstSize->tryZExtValue(); in mayLoopAccessLocation() local
969 if (BEInt && SizeInt) in mayLoopAccessLocation()
970 AccessSize = LocationSize::precise((*BEInt + 1) * *SizeInt); in mayLoopAccessLocation()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DUnsafeBufferUsage.cpp519 llvm::APSInt SizeInt = ER.Val.getInt(); in isPtrBufferSafe() local
522 SizeInt, llvm::APSInt(CAT->getSize(), true)) == 0; in isPtrBufferSafe()