Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerLoop.cpp157 TmpMaxMutationLen = 0; // Will be set once we load the corpus. in Fuzzer()
348 if (TmpMaxMutationLen) in PrintStats()
349 Printf(" lim: %zd", TmpMaxMutationLen); in PrintStats()
737 Min(MaxMutationLen, Max(U.size(), TmpMaxMutationLen)); in MutateAndTestOne()
873 TmpMaxMutationLen = in Loop()
891 // Update TmpMaxMutationLen in Loop()
893 if (TmpMaxMutationLen < MaxMutationLen && in Loop()
895 Options.LenControl * Log(TmpMaxMutationLen)) { in Loop()
896 TmpMaxMutationLen = in Loop()
897 Min(MaxMutationLen, TmpMaxMutationLen in Loop()
[all...]
H A DFuzzerInternal.h146 size_t TmpMaxMutationLen = 0; variable