Home
last modified time | relevance | path

Searched refs:mutate (Results 1 - 25 of 25) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/FuzzMutate/
H A DIRMutator.h30 /// Base class for describing how to mutate a module. mutation functions for
39 /// distinct ways in which this strategy can mutate a unit". This can also be
48 virtual void mutate(Module &M, RandomIRBuilder &IB);
49 virtual void mutate(Function &F, RandomIRBuilder &IB);
50 virtual void mutate(BasicBlock &BB, RandomIRBuilder &IB);
51 virtual void mutate(Instruction &I, RandomIRBuilder &IB) { in mutate() function in llvm::IRMutationStrategy
90 using IRMutationStrategy::mutate;
91 void mutate(Function &F, RandomIRBuilder &IB) override;
92 void mutate(BasicBlock &BB, RandomIRBuilder &IB) override;
100 using IRMutationStrategy::mutate;
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/FuzzMutate/
H A DIRMutator.cpp35 void IRMutationStrategy::mutate(Module &M, RandomIRBuilder &IB) { in mutate() function in IRMutationStrategy
43 mutate(*RS.getSelection(), IB); in mutate()
46 void IRMutationStrategy::mutate(Function &F, RandomIRBuilder &IB) { in mutate() function in IRMutationStrategy
47 mutate(*makeSampler(IB.Rand, make_pointer_range(F)).getSelection(), IB); in mutate()
50 void IRMutationStrategy::mutate(BasicBlock &BB, RandomIRBuilder &IB) { in mutate() function in IRMutationStrategy
51 mutate(*makeSampler(IB.Rand, make_pointer_range(BB)).getSelection(), IB); in mutate()
67 Strategy->mutate(M, IB); in mutateModule()
79 void InjectorIRStrategy::mutate(Function &F, RandomIRBuilder &IB) { in mutate() function in InjectorIRStrategy
80 IRMutationStrategy::mutate(F, IB); in mutate()
106 void InjectorIRStrategy::mutate(BasicBloc function in InjectorIRStrategy
153 void InstDeleterIRStrategy::mutate(Function &F, RandomIRBuilder &IB) { mutate() function in InstDeleterIRStrategy
172 void InstDeleterIRStrategy::mutate(Instruction &Inst, RandomIRBuilder &IB) { mutate() function in InstDeleterIRStrategy
[all...]
/third_party/python/Lib/test/
H A Dtest_iterlen.py73 self.mutate()
106 self.mutate = d.pop
113 self.mutate = d.pop
120 self.mutate = d.popitem
127 self.mutate = d.popitem
134 self.mutate = d.popitem
141 self.mutate = d.pop
143 ## ------- Types that can mutate during iteration -------
H A Dtest_dict.py944 # dd isn't tracked right now, but it may mutate and therefore d
1226 def check_reentrant_insertion(self, mutate):
1232 mutate(d)
1240 def mutate(d): function
1242 self.check_reentrant_insertion(mutate)
1244 def mutate(d): function
1247 self.check_reentrant_insertion(mutate)
1249 def mutate(d): function
1252 self.check_reentrant_insertion(mutate)
H A Dtest_weakref.py1426 # Check that we can explicitly mutate the weak dict without
1789 mutate = False
1797 if mutate:
1820 mutate = True
H A Dtest_io.py2341 def mutate(bufio, pos1, pos2): function
2357 mutate(bufio, i, j)
/third_party/skia/src/core/
H A DSkRecord.h19 // Though an enterprising user may find calling alloc(), append(), visit(), and mutate() enough to
50 auto mutate(int i, F&& f) -> decltype(f((SkRecords::NoOp*)nullptr)) { in decltype()
51 return fRecords[i].mutate(f); in decltype()
83 this->mutate(i, destroyer); in replace()
129 // A typed pointer to some bytes in fAlloc. visit() and mutate() allow polymorphic dispatch.
159 auto mutate(F&& f) -> decltype(f((SkRecords::NoOp*)nullptr)) { in decltype()
H A DSkRecordPattern.h152 if (record->mutate(i, *first)) { in matchFirst()
163 if (!record->mutate(i, *first)) { in matchFirst()
H A DSkRecord.cpp15 this->mutate(i, destroyer); in ~SkRecord()
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/
H A Dscript_mutator.js131 mutate(source) {
133 mutator.mutate(source);
192 normalizerMutator.mutate(input);
204 this.mutate(combinedSource);
212 // 2) Normalize, combine and mutate inputs.
H A Drun.js144 .option('-m, --mutate <path>', 'Mutate a file and output results.')
187 if (program.mutate) {
188 const absPath = path.resolve(program.mutate);
226 console.log(`ERROR: Exception during mutate: ${paths}`);
H A Dtest_db.js53 mutator.mutate(source);
H A Ddifferential_script_mutator.js130 this.differential.forEach(mutator => mutator.mutate(result));
H A Dgen_exceptions.js24 const MUTATE_FAILED_RE = /^ERROR: Exception during mutate: (.*)\n$/;
143 // Skip tests that fail to parse/mutate or are very slow.
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/test/
H A Dtest_mutate_variable_or_object.js28 mutator.mutate(source);
H A Dtest_mutate_function_calls.js29 mutator.mutate(source);
H A Dtest_try_catch.js27 mutator.mutate(source);
H A Dtest_differential_fuzz.js31 mutator.mutate(source);
H A Dtest_mutate_expressions.js32 mutator.mutate(source);
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/mutators/
H A Dmutator.js39 mutate(source) {
/third_party/skia/tests/
H A DRecordTest.cpp51 record->mutate(i, *this); in apply()
/third_party/skia/experimental/sorttoy/
H A DCmds.h154 void mutate(SkIPoint trans) { in mutate() function in ClipCmd
H A DFake.cpp14 clipCmd->mutate(fTrans); in addClip()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h147 /// Allow subclasses to mutate the tag.
609 void mutate(unsigned Tag, unsigned Line, uint64_t SizeInBits, in mutate() function in llvm::DIType
611 assert(isDistinct() && "Only distinct nodes can mutate"); in mutate()
906 void mutate(unsigned Tag, unsigned Line, unsigned RuntimeLang, in mutate() function in llvm::DICompositeType
909 assert(isDistinct() && "Only distinct nodes can mutate"); in mutate()
910 assert(getRawIdentifier() && "Only ODR-uniqued nodes should mutate"); in mutate()
912 DIType::mutate(Tag, Line, SizeInBits, AlignInBits, OffsetInBits, Flags); in mutate()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DDebugInfoMetadata.cpp425 // Only mutate CT if it's a forward declaration and the new operands aren't. in buildODRType()
431 CT->mutate(Tag, Line, RuntimeLang, SizeInBits, AlignInBits, OffsetInBits, in buildODRType()

Completed in 25 milliseconds