Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
735 Min(MaxMutationLen, Max(U.size(), TmpMaxMutationLen)); in MutateAndTestOne()
871 TmpMaxMutationLen = in Loop()
891 if (TmpMaxMutationLen < MaxMutationLen && in Loop()
893 Options.LenControl * Log(TmpMaxMutationLen)) { in Loop()
894 TmpMaxMutationLen = in Loop()
895 Min(MaxMutationLen, TmpMaxMutationLen + Log(TmpMaxMutationLen)); in Loop()
899 TmpMaxMutationLen = MaxMutationLen; in Loop()
H A DFuzzerInternal.h146 size_t TmpMaxMutationLen = 0; variable