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

  /external/freetype/src/tools/ftfuzzer/
ftmutator.cc 16 // that looks like `tar' as multiple files and mutate them separately.
159 Mutate( uint8_t* Data,
167 return fuzzer::UserSuppliedFuzzer::Mutate( Data, Size, MaxSize );
206 return fuzzer::UserSuppliedFuzzer::Mutate( Data,
225 file.resize( fuzzer::UserSuppliedFuzzer::Mutate( file.data(),
  /test/vts-testcase/fuzz/iface_fuzzer/
ProtoFuzzerMutator.cpp 131 void ProtoFuzzerMutator::Mutate(const IfaceDescTbl &tbl, ExecSpec *exec_spec) {
132 // Mutate a randomly chosen function call with probability
139 // Mutate a random function in execution.
142 *exec_spec->mutable_function_call(idx)->mutable_api() = Mutate(rand_api);
171 FuncSpec ProtoFuzzerMutator::Mutate(const FuncSpec &func_spec) {
176 VarInstance rand_arg = Mutate(result.arg(rand_arg_idx));
198 VarInstance ProtoFuzzerMutator::Mutate(const VarInstance &var_instance) {
ProtoFuzzerMutateFns.cpp 58 *result.mutable_vector_value(idx) = this->Mutate(result.vector_value(idx));
73 // Mutate this enum like a scalar with probability
79 scalar_value = Mutate(scalar_value, scalar_type);
103 Mutate(result.scalar_value(), result.scalar_type());
172 *result.mutable_struct_value(idx) = this->Mutate(result.struct_value(idx));
194 *result.mutable_union_value(i) = this->Mutate(result.union_value(i));
213 *result.mutable_vector_value(idx) = this->Mutate(result.vector_value(idx));
250 ScalarData ProtoFuzzerMutator::Mutate(const ScalarData &scalar_value,
255 result.set_bool_t(Mutate(static_cast<bool>(scalar_value.bool_t())));
257 result.set_int8_t(Mutate(scalar_value.int8_t()))
    [all...]
  /external/flatbuffers/include/flatbuffers/
flexbuffers.h 588 // To avoid this, you can construct the values you intend to mutate using
592 return Mutate(data_, i, parent_width_, WidthI(i));
594 return Mutate(Indirect(), i, byte_width_, WidthI(i));
597 return Mutate(data_, u, parent_width_, WidthU(u));
600 return Mutate(Indirect(), u, byte_width_, WidthU(u));
607 return type_ == TYPE_BOOL && Mutate(data_, b, parent_width_, BIT_WIDTH_8);
612 return Mutate(data_, u, parent_width_, WidthU(u));
614 return Mutate(Indirect(), u, byte_width_, WidthU(u));
617 return Mutate(data_, i, parent_width_, WidthI(i));
620 return Mutate(Indirect(), i, byte_width_, WidthI(i))
    [all...]

Completed in 145 milliseconds