HomeSort by relevance Sort by last modified time
    Searched refs:mutate (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /art/test/068-classloader/src-ex/
Mutator.java 22 public static void mutate(int v) { method in class:Mutator
  /external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
MutationPolicy.java 20 * Algorithm used to mutate a chrommosome.
28 * Mutate the given chromosome.
32 Chromosome mutate(Chromosome original); method in interface:MutationPolicy
BinaryMutation.java 31 * Mutate the given chromosome. Randomly changes one gene.
35 public Chromosome mutate(Chromosome original) { method in class:BinaryMutation
RandomKeyMutation.java 40 public Chromosome mutate(Chromosome original) { method in class:RandomKeyMutation
GeneticAlgorithm.java 161 getMutationPolicy().mutate(pair.getFirst()),
162 getMutationPolicy().mutate(pair.getSecond()));
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/FuzzMutate/
IRMutator.h 31 /// Base class for describing how to mutate a module. mutation functions for
40 /// distinct ways in which this strategy can mutate a unit". This can also be
49 virtual void mutate(Module &M, RandomIRBuilder &IB);
50 virtual void mutate(Function &F, RandomIRBuilder &IB);
51 virtual void mutate(BasicBlock &BB, RandomIRBuilder &IB);
52 virtual void mutate(Instruction &I, RandomIRBuilder &IB) { function in class:llvm::IRMutationStrategy
91 using IRMutationStrategy::mutate;
92 void mutate(Function &F, RandomIRBuilder &IB) override;
93 void mutate(BasicBlock &BB, RandomIRBuilder &IB) override;
101 using IRMutationStrategy::mutate;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/FuzzMutate/
IRMutator.cpp 36 void IRMutationStrategy::mutate(Module &M, RandomIRBuilder &IB) { function in class:IRMutationStrategy
44 mutate(*RS.getSelection(), IB);
47 void IRMutationStrategy::mutate(Function &F, RandomIRBuilder &IB) { function in class:IRMutationStrategy
48 mutate(*makeSampler(IB.Rand, make_pointer_range(F)).getSelection(), IB);
51 void IRMutationStrategy::mutate(BasicBlock &BB, RandomIRBuilder &IB) { function in class:IRMutationStrategy
52 mutate(*makeSampler(IB.Rand, make_pointer_range(BB)).getSelection(), IB);
68 Strategy->mutate(M, IB);
79 void InjectorIRStrategy::mutate(Function &F, RandomIRBuilder &IB) { function in class:InjectorIRStrategy
80 IRMutationStrategy::mutate(F, IB);
106 void InjectorIRStrategy::mutate(BasicBlock &BB, RandomIRBuilder &IB) function in class:InjectorIRStrategy
153 void InstDeleterIRStrategy::mutate(Function &F, RandomIRBuilder &IB) { function in class:InstDeleterIRStrategy
172 void InstDeleterIRStrategy::mutate(Instruction &Inst, RandomIRBuilder &IB) { function in class:InstDeleterIRStrategy
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ProxyDrawable.java 94 public Drawable mutate() { method in class:ProxyDrawable
95 if (mProxy != null && !mMutated && super.mutate() == this) {
96 mProxy.mutate();
  /external/honggfuzz/
input.c 56 if (sz > run->global->mutate.maxFileSz) {
57 PLOG_F("Too large size requested: %zu > maxSize: %zu", sz, run->global->mutate.maxFileSz);
101 if (hfuzz->mutate.maxFileSz != 0UL && st.st_size > (off_t)hfuzz->mutate.maxFileSz) {
103 fname, (int64_t)st.st_size, (int64_t)hfuzz->mutate.maxFileSz);
112 if (hfuzz->mutate.maxFileSz == 0U) {
114 hfuzz->mutate.maxFileSz = 8192;
116 hfuzz->mutate.maxFileSz = _HF_INPUT_MAX_SIZE;
118 hfuzz->mutate.maxFileSz = maxSize;
127 hfuzz->mutate.maxFileSz, hfuzz->io.fileCnt)
    [all...]
report.c 107 localtmstr, run->global->mutate.mutationsPerRun,
116 run->global->mutate.dictionaryFile == NULL ? "NULL" : run->global->mutate.dictionaryFile);
display.c 151 if (hfuzz->mutate.mutationsMax > 0 && curr_exec_cnt > hfuzz->mutate.mutationsMax) {
152 curr_exec_cnt = hfuzz->mutate.mutationsMax;
155 if (hfuzz->mutate.mutationsMax > 0) {
156 exeProgress = (curr_exec_cnt * 100) / hfuzz->mutate.mutationsMax;
169 if (hfuzz->mutate.mutationsMax) {
171 hfuzz->mutate.mutationsMax, exeProgress);
220 hfuzz->io.dynfileqCnt, hfuzz->mutate.maxFileSz, ATOMIC_GET(hfuzz->io.fileCnt));
mangle.c 73 if (run->dynamicFileSz >= run->global->mutate.maxFileSz) {
76 if (len > (run->global->mutate.maxFileSz - run->dynamicFileSz)) {
77 len = run->global->mutate.maxFileSz - run->dynamicFileSz;
133 uint64_t choice = util_rndGet(0, run->global->mutate.dictionaryCnt - 1);
134 struct strings_t* str = TAILQ_FIRST(&run->global->mutate.dictq);
146 if (run->global->mutate.dictionaryCnt == 0) {
154 if (run->global->mutate.dictionaryCnt == 0) {
164 uint64_t choice = util_rndGet(0, run->global->mutate.dictionaryCnt - 1);
165 struct strings_t* str = TAILQ_FIRST(&run->global->mutate.dictq);
174 if (run->global->mutate.dictionaryCnt == 0)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_mutants.py 11 # code to do containee comparisons can call back into Python and mutate
30 # The dicts are global to make it easy to mutate tham from within functions.
40 mutate = 0 variable
42 # If global mutate is true, consider mutating a dict. May or may not
43 # mutate a dict even if mutate is true. If it does decide to mutate a
48 global mutate
49 if not mutate:
61 mutate = 0 # disable mutation until key inserted
    [all...]
test_iterlen.py 84 self.mutate()
121 self.mutate = d.pop
128 self.mutate = d.pop
135 self.mutate = d.popitem
142 self.mutate = d.popitem
149 self.mutate = d.popitem
156 self.mutate = d.pop
158 ## ------- Types that can mutate during iteration -------
  /external/python/cpython2/Lib/test/
test_mutants.py 11 # code to do containee comparisons can call back into Python and mutate
30 # The dicts are global to make it easy to mutate tham from within functions.
40 mutate = 0 variable
42 # If global mutate is true, consider mutating a dict. May or may not
43 # mutate a dict even if mutate is true. If it does decide to mutate a
48 global mutate
49 if not mutate:
61 mutate = 0 # disable mutation until key inserte
    [all...]
test_iterlen.py 84 self.mutate()
121 self.mutate = d.pop
128 self.mutate = d.pop
135 self.mutate = d.popitem
142 self.mutate = d.popitem
149 self.mutate = d.popitem
156 self.mutate = d.pop
158 ## ------- Types that can mutate during iteration -------
  /external/skia/src/core/
SkRecord.cpp 15 this->mutate(i, destroyer);
SkRecord.h 19 // Though an enterprising user may find calling alloc(), append(), visit(), and mutate() enough to
45 // Mutate the i-th canvas command with a functor matching this interface:
50 auto mutate(int i, F&& f) -> decltype(f((SkRecords::NoOp*)nullptr)) {
51 return fRecords[i].mutate(f);
83 this->mutate(i, destroyer);
142 // A typed pointer to some bytes in fAlloc. visit() and mutate() allow polymorphic dispatch.
170 // Mutate this record with functor F (see public API above).
172 auto mutate(F&& f) -> decltype(f((SkRecords::NoOp*)nullptr)) {
  /external/skqp/src/core/
SkRecord.cpp 15 this->mutate(i, destroyer);
SkRecord.h 19 // Though an enterprising user may find calling alloc(), append(), visit(), and mutate() enough to
45 // Mutate the i-th canvas command with a functor matching this interface:
50 auto mutate(int i, F&& f) -> decltype(f((SkRecords::NoOp*)nullptr)) {
51 return fRecords[i].mutate(f);
83 this->mutate(i, destroyer);
142 // A typed pointer to some bytes in fAlloc. visit() and mutate() allow polymorphic dispatch.
172 // Mutate this record with functor F (see public API above).
174 auto mutate(F&& f) -> decltype(f((SkRecords::NoOp*)nullptr)) {
  /external/python/cpython3/Lib/test/
test_iterlen.py 73 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 -------
  /developers/build/prebuilts/gradle/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/util/
MenuTinter.java 42 drawable.mutate();
  /developers/samples/android/deprecated/wearable/wear/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/util/
MenuTinter.java 42 drawable.mutate();
  /external/syzkaller/prog/
mutation.go 14 func (p *Prog) Mutate(rs rand.Source, ncalls int, ct *ChoiceTable, corpus []*Prog) {
172 calls, retry, preserve := arg.Type().mutate(r, s, arg, ctx)
213 func (t *IntType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve bool) { func
217 func (t *FlagsType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve bool) { func
221 func (t *LenType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve bool) { func
230 func (t *ResourceType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve bool) { func
234 func (t *VmaType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve bool) { func
238 func (t *ProcType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve bool) { func
242 func (t *BufferType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve bool) { func
274 func (t *ArrayType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve bool) func
309 func (t *PtrType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve bool) { func
316 func (t *StructType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve bool) { func
330 func (t *UnionType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve bool) { func
360 func (t *CsumType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve bool) { func
364 func (t *ConstType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve bool) { func
    [all...]
  /external/syzkaller/
Makefile 84 execprog mutate prog2c stress repro upgrade db \
100 $(MAKE) manager runtest repro mutate prog2c db upgrade
134 mutate:
135 GOOS=$(HOSTOS) GOARCH=$(HOSTARCH) $(HOSTGO) build $(GOHOSTFLAGS) -o ./bin/syz-mutate github.com/google/syzkaller/tools/syz-mutate

Completed in 1257 milliseconds

1 2 3 4 5