Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp1901 std::optional<NonLoc> dstStrLengthNL = dstStrLength.getAs<NonLoc>(); in evalStrcpyCommon() local
1971 if (!dstStrLengthNL) in evalStrcpyCommon()
1976 *dstStrLengthNL, sizeTy); in evalStrcpyCommon()
2022 if (dstStrLengthNL) { in evalStrcpyCommon()
2024 state, BO_Add, *lenValNL, *dstStrLengthNL, sizeTy); in evalStrcpyCommon()
2105 if (appendK == ConcatFnKind::strlcat && dstStrLengthNL && strLengthNL) { in evalStrcpyCommon()
2107 *dstStrLengthNL, sizeTy); in evalStrcpyCommon()
2113 if (amountCopiedNL && dstStrLengthNL) { in evalStrcpyCommon()
2115 state = checkAdditionOverflow(C, state, *amountCopiedNL, *dstStrLengthNL); in evalStrcpyCommon()
2120 *dstStrLengthNL, sizeTy); in evalStrcpyCommon()
[all …]