Home | History | Annotate | Download | only in Fuzzer

Lines Matching refs:Word

41   void AddWordToDictionary(const uint8_t *Word, size_t Size) {
45 Dictionary.push_back(Unit(Word, Word + Size));
119 const Unit &Word = D[Rand(D.size())];
120 if (Size + Word.size() > MaxSize) return 0;
122 memmove(Data + Idx + Word.size(), Data + Idx, Size - Idx);
123 memcpy(Data + Idx, Word.data(), Word.size());
124 return Size + Word.size();
215 void MutationDispatcher::AddWordToDictionary(const uint8_t *Word, size_t Size) {
216 MDImpl->AddWordToDictionary(Word, Size);