Searched refs:StOutBound (Results 1 – 5 of 5) sorted by relevance
| /src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ArrayBoundChecker.cpp | 61 ProgramStateRef StInBound, StOutBound; in checkLocation() local 62 std::tie(StInBound, StOutBound) = state->assumeInBoundDual(Idx, ElementCount); in checkLocation() 63 if (StOutBound && !StInBound) { in checkLocation() 64 ExplodedNode *N = C.generateErrorNode(StOutBound); in checkLocation()
|
| H A D | ReturnPointerRangeChecker.cpp | 73 ProgramStateRef StInBound, StOutBound; in checkPreStmt() local 74 std::tie(StInBound, StOutBound) = state->assumeInBoundDual(Idx, ElementCount); in checkPreStmt() 75 if (StOutBound && !StInBound) { in checkPreStmt() 76 ExplodedNode *N = C.generateErrorNode(StOutBound); in checkPreStmt()
|
| 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() 135 ExplodedNode *N = C.generateErrorNode(StOutBound); in checkPreStmt()
|
| H A D | UndefResultChecker.cpp | 56 ProgramStateRef StInBound, StOutBound; in isArrayIndexOutOfBounds() local 57 std::tie(StInBound, StOutBound) = state->assumeInBoundDual(Idx, ElementCount); in isArrayIndexOutOfBounds() 58 return StOutBound && !StInBound; in isArrayIndexOutOfBounds()
|
| H A D | CStringChecker.cpp | 577 auto [StInBound, StOutBound] = state->assumeInBoundDual(*Idx, Size); in CheckLocation() 578 if (StOutBound && !StInBound) { in CheckLocation() 588 emitOutOfBoundsBug(C, StOutBound, Buffer.Expression, Message); in CheckLocation()
|