/third_party/json/tests/thirdparty/Fuzzer/test/ |
D | FuzzerUnittest.cpp | 147 TestEraseBytes(&MutationDispatcher::Mutate, 2000); in TEST() 183 TestInsertByte(&MutationDispatcher::Mutate, 1 << 17); in TEST() 227 TestInsertRepeatedBytes(&MutationDispatcher::Mutate, 300000); in TEST() 263 TestChangeByte(&MutationDispatcher::Mutate, 1 << 17); in TEST() 299 TestChangeBit(&MutationDispatcher::Mutate, 1 << 18); in TEST() 329 TestShuffleBytes(&MutationDispatcher::Mutate, 1 << 20); in TEST() 377 TestCopyPart(&MutationDispatcher::Mutate, 1 << 13); in TEST() 419 TestAddWordFromDictionary(&MutationDispatcher::Mutate, 1 << 15); in TEST() 448 TestAddWordFromDictionaryWithHint(&MutationDispatcher::Mutate, 1 << 10); in TEST() 480 TestChangeASCIIInteger(&MutationDispatcher::Mutate, 1 << 15); in TEST() [all …]
|
/third_party/vixl/test/ |
D | test-donkey.cc | 52 Instr Mutate(Instr base) { in Mutate() function 206 inst = Mutate(useful_insts.back().inst); in main()
|
/third_party/skia/third_party/externals/tint/fuzzers/tint_ast_fuzzer/ |
D | mutator.h | 91 tint::Program Mutate(tint::Program program,
|
D | fuzzer.cc | 60 program = Mutate(std::move(program), &probability_context, in LLVMFuzzerCustomMutator()
|
D | mutator.cc | 112 tint::Program Mutate(tint::Program program, in Mutate() function
|
/third_party/skia/third_party/externals/tint/fuzzers/tint_spirv_tools_fuzzer/ |
D | mutator.h | 81 virtual Result Mutate() = 0;
|
D | spirv_opt_mutator.h | 52 Result Mutate() override;
|
D | spirv_fuzz_mutator.h | 65 Result Mutate() override;
|
D | mutator_debugger.cc | 73 auto result = mutator->Mutate(); in main()
|
D | spirv_reduce_mutator.h | 60 Result Mutate() override;
|
D | spirv_opt_mutator.cc | 75 SpirvOptMutator::Result SpirvOptMutator::Mutate() { in Mutate() function in tint::fuzzers::spvtools_fuzzer::SpirvOptMutator
|
D | spirv_reduce_mutator.cc | 89 Mutator::Result SpirvReduceMutator::Mutate() { in Mutate() function in tint::fuzzers::spvtools_fuzzer::SpirvReduceMutator
|
D | spirv_fuzz_mutator.cc | 62 Mutator::Result SpirvFuzzMutator::Mutate() { in Mutate() function in tint::fuzzers::spvtools_fuzzer::SpirvFuzzMutator
|
D | fuzzer.cc | 169 auto result = mutator->Mutate(); in LLVMFuzzerCustomMutator()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | TypePromotion.cpp | 140 void Mutate(); 675 void IRPromoter::Mutate() { in Mutate() function in IRPromoter 929 Promoter.Mutate(); in TryToPromote()
|
/third_party/json/tests/thirdparty/Fuzzer/ |
D | FuzzerMutate.h | 75 size_t Mutate(uint8_t *Data, size_t Size, size_t MaxSize);
|
D | FuzzerLoop.cpp | 722 NewSize = MD.Mutate(CurrentUnitData, Size, MaxMutationLen); in MutateAndTestOne() 775 size_t NewSize = MD.Mutate(CurrentUnitData, U.size(), MaxMutationLen); in MinimizeCrashLoop()
|
D | FuzzerMutate.cpp | 474 size_t MutationDispatcher::Mutate(uint8_t *Data, size_t Size, size_t MaxSize) { in Mutate() function in fuzzer::MutationDispatcher
|
/third_party/googletest/docs/ |
D | gmock_cook_book.md | 1966 MOCK_METHOD(void, Mutate, (bool mutate, int* value), (override)); 1971 EXPECT_CALL(mutator, Mutate(true, _)) 1975 In this example, when `mutator.Mutate()` is called, we will assign 5 to the 2018 MOCK_METHOD(void, Mutate, (int* values, int num_values), (override)); 2024 EXPECT_CALL(mutator, Mutate(NotNull(), 5))
|