HomeSort by relevance Sort by last modified time
    Searched defs:Mutate (Results 1 - 6 of 6) sorted by null

  /external/syzkaller/pkg/ifuzz/
ifuzz.go 6 // Package ifuzz allows to generate and mutate x86 machine code.
135 func Mutate(cfg *Config, r *rand.Rand, text []byte) []byte {
154 // mutate instruction
  /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/libprotobuf-mutator/src/
mutator_test.cc 311 bool Mutate(const protobuf::Message& from, const protobuf::Message& to) {
317 mutator.Mutate(message.get(), 1000);
393 EXPECT_TRUE(Mutate(*m1_, *m2_));
399 EXPECT_TRUE(Mutate(*m1_, *m2_));
420 mutator.Mutate(m1_.get(), 1000);
427 EXPECT_TRUE(Mutate(*m1_, *m2_));
428 EXPECT_TRUE(Mutate(*m2_, *m1_));
443 EXPECT_TRUE(Mutate(from, to));
448 EXPECT_TRUE(Mutate(from, to));
563 mutator.Mutate(&m, 1000)
    [all...]
mutator.cc 46 Mutate, // Mutates field contents.
195 {{message, current_field}, Mutation::Mutate});
215 {{message, field, random_index}, Mutation::Mutate});
227 {{message, field}, Mutation::Mutate});
346 void Mutate(int32_t* value) const {
350 void Mutate(int64_t* value) const {
354 void Mutate(uint32_t* value) const {
358 void Mutate(uint64_t* value) const {
362 void Mutate(float* value) const {
366 void Mutate(double* value) const
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
ARMCodeGenPrepare.cpp 78 void Mutate(Type *OrigTy,
242 /// Return whether we can safely mutate V's type to ExtTy without having to be
282 void IRPromoter::Mutate(Type *OrigTy,
370 // Then mutate the types of the instructions within the tree. Here we handle
677 Promoter->Mutate(OrigTy, CurrentVisited, Leaves, Roots);
  /external/flatbuffers/include/flatbuffers/
flexbuffers.h 611 // To avoid this, you can construct the values you intend to mutate using
615 return Mutate(data_, i, parent_width_, WidthI(i));
617 return Mutate(Indirect(), i, byte_width_, WidthI(i));
620 return Mutate(data_, u, parent_width_, WidthU(u));
623 return Mutate(Indirect(), u, byte_width_, WidthU(u));
630 return type_ == FBT_BOOL && Mutate(data_, b, parent_width_, BIT_WIDTH_8);
635 return Mutate(data_, u, parent_width_, WidthU(u));
637 return Mutate(Indirect(), u, byte_width_, WidthU(u));
640 return Mutate(data_, i, parent_width_, WidthI(i));
643 return Mutate(Indirect(), i, byte_width_, WidthI(i))
    [all...]

Completed in 562 milliseconds