Searched refs:dstStrLengthNL (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | CStringChecker.cpp | 1899 std::optional<NonLoc> dstStrLengthNL = dstStrLength.getAs<NonLoc>(); in evalStrcpyCommon() local 1969 if (!dstStrLengthNL) in evalStrcpyCommon() 1974 *dstStrLengthNL, sizeTy); in evalStrcpyCommon() 2020 if (dstStrLengthNL) { in evalStrcpyCommon() 2022 state, BO_Add, *lenValNL, *dstStrLengthNL, sizeTy); in evalStrcpyCommon() 2103 if (appendK == ConcatFnKind::strlcat && dstStrLengthNL && strLengthNL) { in evalStrcpyCommon() 2105 *dstStrLengthNL, sizeTy); in evalStrcpyCommon() 2111 if (amountCopiedNL && dstStrLengthNL) { in evalStrcpyCommon() 2113 state = checkAdditionOverflow(C, state, *amountCopiedNL, *dstStrLengthNL); in evalStrcpyCommon() 2118 *dstStrLengthNL, sizeTy); in evalStrcpyCommon() [all …]
|