Searched refs:dstStrLengthNL (Results 1 – 1 of 1) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
H A D | CStringChecker.cpp | 1569 Optional<NonLoc> dstStrLengthNL = dstStrLength.getAs<NonLoc>(); in evalStrcpyCommon() local 1638 if (!dstStrLengthNL) in evalStrcpyCommon() 1643 *dstStrLengthNL, sizeTy); in evalStrcpyCommon() 1689 if (dstStrLengthNL) { in evalStrcpyCommon() 1691 state, BO_Add, *lenValNL, *dstStrLengthNL, sizeTy); in evalStrcpyCommon() 1769 if (appendK == ConcatFnKind::strlcat && dstStrLengthNL && strLengthNL) { in evalStrcpyCommon() 1771 *dstStrLengthNL, sizeTy); in evalStrcpyCommon() 1777 if (amountCopiedNL && dstStrLengthNL) { in evalStrcpyCommon() 1779 state = checkAdditionOverflow(C, state, *amountCopiedNL, *dstStrLengthNL); in evalStrcpyCommon() 1784 *dstStrLengthNL, sizeTy); in evalStrcpyCommon() [all …]
|