Searched refs:StInBound (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | UndefResultChecker.cpp | 55 ProgramStateRef StInBound, StOutBound; in isArrayIndexOutOfBounds() local 56 std::tie(StInBound, StOutBound) = state->assumeInBoundDual(Idx, ElementCount); in isArrayIndexOutOfBounds() 57 return StOutBound && !StInBound; in isArrayIndexOutOfBounds()
|
| H A D | ObjCContainersChecker.cpp | 132 ProgramStateRef StInBound, StOutBound; in checkPreStmt() local 133 std::tie(StInBound, StOutBound) = State->assumeInBoundDual(Idx, *Size, T); in checkPreStmt() 134 if (StOutBound && !StInBound) { in checkPreStmt()
|
| H A D | CStringChecker.cpp | 582 auto [StInBound, StOutBound] = state->assumeInBoundDual(*Idx, Size); in CheckLocation() 583 if (StOutBound && !StInBound) { in CheckLocation() 599 return StInBound; in CheckLocation() 1207 ProgramStateRef StInBound = State->assumeInBound(Idx, SizeDV, true); in isFirstBufInBound() local 1209 return static_cast<bool>(StInBound); in isFirstBufInBound()
|