Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerMutate.cpp320 size_t ToBeg = Rand(ToSize); in CopyPartOf() local
321 size_t CopySize = Rand(ToSize - ToBeg) + 1; in CopyPartOf()
322 assert(ToBeg + CopySize <= ToSize); in CopyPartOf()
326 memmove(To + ToBeg, From + FromBeg, CopySize); in CopyPartOf()