Searched refs:Mutate (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerMutate.h | 74 size_t Mutate(uint8_t *Data, size_t Size, size_t MaxSize);
|
H A D | FuzzerMutate.cpp | 531 size_t MutationDispatcher::Mutate(uint8_t *Data, size_t Size, size_t MaxSize) { in Mutate() function in fuzzer::MutationDispatcher 581 size_t NewSize = Mutate(T.data(), OneBits, OneBits); in MutateWithMask()
|
H A D | FuzzerLoop.cpp | 750 // If MutateWithMask either failed or wasn't called, call default Mutate. in MutateAndTestOne() 752 NewSize = MD.Mutate(CurrentUnitData, Size, CurrentMaxMutationLen); in MutateAndTestOne() 921 size_t NewSize = MD.Mutate(CurrentUnitData, U.size(), MaxMutationLen); in MinimizeCrashLoop()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | TypePromotion.cpp | 134 void Mutate(); 656 void IRPromoter::Mutate() { in Mutate() function in IRPromoter 911 Promoter.Mutate(); in TryToPromote()
|
/freebsd/contrib/googletest/docs/ |
H A D | gmock_cook_book.md | 1976 MOCK_METHOD(void, Mutate, (bool mutate, int* value), (override)); 1981 EXPECT_CALL(mutator, Mutate(true, _)) 1985 In this example, when `mutator.Mutate()` is called, we will assign 5 to the 2028 MOCK_METHOD(void, Mutate, (int* values, int num_values), (override)); 2034 EXPECT_CALL(mutator, Mutate(NotNull(), 5))
|