Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerMutate.cpp324 size_t FromBeg = Rand(FromSize - CopySize + 1); in CopyPartOf() local
325 assert(FromBeg + CopySize <= FromSize); in CopyPartOf()
326 memmove(To + ToBeg, From + FromBeg, CopySize); in CopyPartOf()
339 size_t FromBeg = Rand(FromSize - CopySize + 1); in InsertPartOf() local
340 assert(FromBeg + CopySize <= FromSize); in InsertPartOf()
346 memcpy(MutateInPlaceHere.data(), From + FromBeg, CopySize); in InsertPartOf()
351 memmove(To + ToInsertPos, From + FromBeg, CopySize); in InsertPartOf()