Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerLoop.cpp157 TmpMaxMutationLen = 0; // Will be set once we load the corpus. in Fuzzer()
346 if (TmpMaxMutationLen) in PrintStats()
347 Printf(" lim: %zd", TmpMaxMutationLen); in PrintStats()
734 Min(MaxMutationLen, Max(U.size(), TmpMaxMutationLen)); in MutateAndTestOne()
863 TmpMaxMutationLen = in Loop()
883 if (TmpMaxMutationLen < MaxMutationLen && in Loop()
885 Options.LenControl * Log(TmpMaxMutationLen)) { in Loop()
886 TmpMaxMutationLen = in Loop()
887 Min(MaxMutationLen, TmpMaxMutationLen + Log(TmpMaxMutationLen)); in Loop()
891 TmpMaxMutationLen = MaxMutationLen; in Loop()
H A DFuzzerInternal.h142 size_t TmpMaxMutationLen = 0; variable