Lines Matching refs:MutationDispatcher

52   std::unique_ptr<MutationDispatcher> MD(new MutationDispatcher(Rand, {}));  in TEST()
115 typedef size_t (MutationDispatcher::*Mutator)(uint8_t *Data, size_t Size,
140 std::unique_ptr<MutationDispatcher> MD(new MutationDispatcher(Rand, {})); in TestEraseBytes()
166 TestEraseBytes(&MutationDispatcher::Mutate_EraseBytes, 200); in TEST()
169 TestEraseBytes(&MutationDispatcher::Mutate, 2000); in TEST()
176 std::unique_ptr<MutationDispatcher> MD(new MutationDispatcher(Rand, {})); in TestInsertByte()
202 TestInsertByte(&MutationDispatcher::Mutate_InsertByte, 1 << 15); in TEST()
205 TestInsertByte(&MutationDispatcher::Mutate, 1 << 17); in TEST()
212 std::unique_ptr<MutationDispatcher> MD(new MutationDispatcher(Rand, {})); in TestInsertRepeatedBytes()
246 TestInsertRepeatedBytes(&MutationDispatcher::Mutate_InsertRepeatedBytes, in TEST()
250 TestInsertRepeatedBytes(&MutationDispatcher::Mutate, 300000); in TEST()
257 std::unique_ptr<MutationDispatcher> MD(new MutationDispatcher(Rand, {})); in TestChangeByte()
283 TestChangeByte(&MutationDispatcher::Mutate_ChangeByte, 1 << 15); in TEST()
286 TestChangeByte(&MutationDispatcher::Mutate, 1 << 17); in TEST()
293 std::unique_ptr<MutationDispatcher> MD(new MutationDispatcher(Rand, {})); in TestChangeBit()
319 TestChangeBit(&MutationDispatcher::Mutate_ChangeBit, 1 << 16); in TEST()
322 TestChangeBit(&MutationDispatcher::Mutate, 1 << 18); in TEST()
329 std::unique_ptr<MutationDispatcher> MD(new MutationDispatcher(Rand, {})); in TestShuffleBytes()
349 TestShuffleBytes(&MutationDispatcher::Mutate_ShuffleBytes, 1 << 17); in TEST()
352 TestShuffleBytes(&MutationDispatcher::Mutate, 1 << 20); in TEST()
359 std::unique_ptr<MutationDispatcher> MD(new MutationDispatcher(Rand, {})); in TestCopyPart()
397 TestCopyPart(&MutationDispatcher::Mutate_CopyPart, 1 << 10); in TEST()
400 TestCopyPart(&MutationDispatcher::Mutate, 1 << 13); in TEST()
409 std::unique_ptr<MutationDispatcher> MD(new MutationDispatcher(Rand, {})); in TEST()
422 std::unique_ptr<MutationDispatcher> MD(new MutationDispatcher(Rand, {})); in TestAddWordFromDictionary()
453 &MutationDispatcher::Mutate_AddWordFromManualDictionary, 1 << 15); in TEST()
457 TestAddWordFromDictionary(&MutationDispatcher::Mutate, 1 << 15); in TEST()
464 std::unique_ptr<MutationDispatcher> MD(new MutationDispatcher(Rand, {})); in TestChangeASCIIInteger()
484 TestChangeASCIIInteger(&MutationDispatcher::Mutate_ChangeASCIIInteger, in TEST()
489 TestChangeASCIIInteger(&MutationDispatcher::Mutate, 1 << 15); in TEST()
496 std::unique_ptr<MutationDispatcher> MD(new MutationDispatcher(Rand, {})); in TestChangeBinaryInteger()
524 TestChangeBinaryInteger(&MutationDispatcher::Mutate_ChangeBinaryInteger, in TEST()
529 TestChangeBinaryInteger(&MutationDispatcher::Mutate, 1 << 15); in TEST()