/third_party/skia/third_party/externals/tint/fuzzers/tint_ast_fuzzer/ |
D | mutation.cc | 25 Mutation::~Mutation() = default; 27 std::unique_ptr<Mutation> Mutation::FromMessage( in FromMessage() 28 const protobufs::Mutation& message) { in FromMessage() 30 case protobufs::Mutation::kReplaceIdentifier: in FromMessage() 33 case protobufs::Mutation::MUTATION_NOT_SET: in FromMessage()
|
D | mutation.h | 37 class Mutation { 40 virtual ~Mutation(); 70 virtual protobufs::Mutation ToMessage() const = 0; 76 static std::unique_ptr<Mutation> FromMessage( 77 const protobufs::Mutation& message); 80 using MutationList = std::vector<std::unique_ptr<Mutation>>;
|
D | mutator.cc | 57 const Mutation& mutation, in MaybeApplyMutation() 98 auto mutation = Mutation::FromMessage(mutation_message); in Replay()
|
D | mutator.h | 55 const Mutation& mutation,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/ |
D | LegalizerInfo.h | 296 LegalizeMutation Mutation; variable 300 LegalizeMutation Mutation = nullptr) 301 : Predicate(Predicate), Action(Action), Mutation(Mutation) {} in Predicate() 312 if (Mutation) in determineMutation() 313 return Mutation(Query); in determineMutation() 384 LegalizeMutation Mutation) { in actionIf() argument 385 add({Predicate, Action, Mutation}); in actionIf() 399 LegalizeMutation Mutation) { in actionFor() argument 401 return actionIf(Action, typeInSet(typeIdx(0), Types), Mutation); in actionFor() 416 LegalizeMutation Mutation) { in actionFor() argument [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
D | LegalizerInfo.cpp | 103 const std::pair<unsigned, LLT> &Mutation) { in hasNoSimpleLoops() argument 111 return Q.Types[Mutation.first] != Mutation.second; in hasNoSimpleLoops() 119 std::pair<unsigned, LLT> Mutation) { in mutationIsSane() argument 125 const unsigned TypeIdx = Mutation.first; in mutationIsSane() 127 const LLT NewTy = Mutation.second; in mutationIsSane() 192 std::pair<unsigned, LLT> Mutation = Rule.determineMutation(Query); in apply() local 194 << Mutation.first << ", " << Mutation.second << "\n"); in apply() 195 assert(mutationIsSane(Rule, Query, Mutation) && in apply() 197 assert(hasNoSimpleLoops(Rule, Query, Mutation) && "Simple loop detected"); in apply() 198 return {Rule.getAction(), Mutation.first, Mutation.second}; in apply()
|
/third_party/skia/third_party/externals/tint/fuzzers/tint_ast_fuzzer/mutations/ |
D | replace_identifier.h | 27 class MutationReplaceIdentifier : public Mutation { 67 protobufs::Mutation ToMessage() const override;
|
D | replace_identifier.cc | 98 protobufs::Mutation MutationReplaceIdentifier::ToMessage() const { in ToMessage() 99 protobufs::Mutation mutation; in ToMessage()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | DFAPacketizer.cpp | 119 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument 120 Mutations.push_back(std::move(Mutation)); in addMutation() 316 std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument 317 VLIWScheduler->addMutation(std::move(Mutation)); in addMutation()
|
/third_party/skia/third_party/externals/tint/fuzzers/tint_ast_fuzzer/protobufs/ |
D | tint_ast_fuzzer.proto | 19 message Mutation { message 24 repeated Mutation mutation = 1;
|
/third_party/protobuf/objectivec/Tests/ |
D | GPBWellKnownTypesTest.m | 85 // Test Mutation - date. 99 // Test Mutation - timeIntervalSince1970. 140 // Test Mutation.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | DFAPacketizer.h | 188 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation);
|
D | MachineScheduler.h | 314 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument 315 if (Mutation) in addMutation() 316 Mutations.push_back(std::move(Mutation)); in addMutation()
|
D | MachinePipeliner.h | 278 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument 279 Mutations.push_back(std::move(Mutation)); in addMutation()
|
/third_party/protobuf/src/google/protobuf/ |
D | repeated_field_unittest.cc | 1513 TEST_F(RepeatedFieldIteratorTest, Mutation) { in TEST_F() argument 1640 TEST_F(RepeatedPtrFieldIteratorTest, Mutation) { in TEST_F() argument
|