Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/
H A DNotNullTerminatedResultCheck.cpp228 int GivenLength = getGivenLength(Result); in isGivenLengthEqualToSrcLength() local
231 if (GivenLength != 0 && SrcLength != 0 && GivenLength == SrcLength) in isGivenLengthEqualToSrcLength()
264 int GivenLength = getGivenLength(Result); in isDestCapacityOverflows() local
266 if (GivenLength != 0 && DestCapacity != 0) in isDestCapacityOverflows()
267 return isGivenLengthEqualToSrcLength(Result) && DestCapacity == GivenLength; in isDestCapacityOverflows()
983 int GivenLength = getGivenLength(Result); in ncmpFix() local
984 if (SrcLength != 0 && GivenLength != 0) in ncmpFix()
985 IsLengthTooLong = GivenLength > SrcLength; in ncmpFix()