Searched refs:dstStrLengthNL (Results 1 – 1 of 1) sorted by relevance
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CStringChecker.cpp | 1663 std::optional<NonLoc> dstStrLengthNL = dstStrLength.getAs<NonLoc>(); in evalStrcpyCommon() local 1732 if (!dstStrLengthNL) in evalStrcpyCommon() 1737 *dstStrLengthNL, sizeTy); in evalStrcpyCommon() 1783 if (dstStrLengthNL) { in evalStrcpyCommon() 1785 state, BO_Add, *lenValNL, *dstStrLengthNL, sizeTy); in evalStrcpyCommon() 1863 if (appendK == ConcatFnKind::strlcat && dstStrLengthNL && strLengthNL) { in evalStrcpyCommon() 1865 *dstStrLengthNL, sizeTy); in evalStrcpyCommon() 1871 if (amountCopiedNL && dstStrLengthNL) { in evalStrcpyCommon() 1873 state = checkAdditionOverflow(C, state, *amountCopiedNL, *dstStrLengthNL); in evalStrcpyCommon() 1878 *dstStrLengthNL, sizeTy); in evalStrcpyCommon() [all …]
|