Home
last modified time | relevance | path

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

/third_party/json/test/thirdparty/Fuzzer/
DFuzzerMutate.cpp286 size_t FromBeg = Rand(FromSize - CopySize + 1); in CopyPartOf() local
287 assert(FromBeg + CopySize <= FromSize); in CopyPartOf()
288 memmove(To + ToBeg, From + FromBeg, CopySize); in CopyPartOf()
301 size_t FromBeg = Rand(FromSize - CopySize + 1); in InsertPartOf() local
302 assert(FromBeg + CopySize <= FromSize); in InsertPartOf()
308 memcpy(MutateInPlaceHere.data(), From + FromBeg, CopySize); in InsertPartOf()
313 memmove(To + ToInsertPos, From + FromBeg, CopySize); in InsertPartOf()