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

  /test/vts-testcase/fuzz/iface_fuzzer/include/
ProtoFuzzerMutator.h 60 void Mutate(const IfaceSpec &, ExecSpec *);
64 FuncSpec Mutate(const FuncSpec &);
68 VarInstance Mutate(const VarInstance &);
87 ScalarData Mutate(const ScalarData &, const string &);
93 T Mutate(T);
95 bool Mutate(bool);
96 float Mutate(float);
97 double Mutate(double);
  /test/vts-testcase/fuzz/iface_fuzzer/
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);
102 Mutate(result.scalar_value(), result.scalar_type());
119 *result.mutable_struct_value(idx) = this->Mutate(result.struct_value(idx));
141 *result.mutable_union_value(i) = this->Mutate(result.union_value(i));
160 *result.mutable_vector_value(idx) = this->Mutate(result.vector_value(idx));
197 ScalarData ProtoFuzzerMutator::Mutate(const ScalarData &scalar_value,
202 result.set_bool_t(Mutate(static_cast<bool>(scalar_value.bool_t())));
204 result.set_int8_t(Mutate(scalar_value.int8_t()))
    [all...]
ProtoFuzzerMutator.cpp 96 void ProtoFuzzerMutator::Mutate(const IfaceSpec &iface_spec,
98 // Mutate a randomly chosen function call with probability
105 // Mutate a random function in execution.
108 (*exec_spec->mutable_api(idx)) = Mutate(rand_api);
132 FuncSpec ProtoFuzzerMutator::Mutate(const FuncSpec &func_spec) {
137 VarInstance rand_arg = Mutate(result.arg(rand_arg_idx));
159 VarInstance ProtoFuzzerMutator::Mutate(const VarInstance &var_instance) {
ProtoFuzzerMain.cpp 49 // Used to mutate inputs to hal driver.
95 mutator->Mutate(target_comp_spec.interface(), &exec_spec);
  /external/flatbuffers/include/flatbuffers/
flexbuffers.h 527 // To avoid this, you can construct the values you intend to mutate using
531 return Mutate(data_, i, parent_width_, WidthI(i));
533 return Mutate(Indirect(), i, byte_width_, WidthI(i));
536 return Mutate(data_, u, parent_width_, WidthU(u));
539 return Mutate(Indirect(), u, byte_width_, WidthU(u));
547 return Mutate(data_, u, parent_width_, WidthU(u));
549 return Mutate(Indirect(), u, byte_width_, WidthU(u));
552 return Mutate(data_, i, parent_width_, WidthI(i));
555 return Mutate(Indirect(), i, byte_width_, WidthI(i));
602 template<typename T> bool Mutate(const uint8_t *dest, T t, size_t byte_width
    [all...]
flatbuffers.h 384 void Mutate(uoffset_t i, const T& val) {
    [all...]
  /external/llvm/lib/Fuzzer/test/
FuzzerUnittest.cpp 124 TestEraseByte(&MutationDispatcher::Mutate, 1000);
160 TestInsertByte(&MutationDispatcher::Mutate, 1 << 17);
196 TestChangeByte(&MutationDispatcher::Mutate, 1 << 17);
232 TestChangeBit(&MutationDispatcher::Mutate, 1 << 18);
262 TestShuffleBytes(&MutationDispatcher::Mutate, 1 << 20);
304 TestAddWordFromDictionary(&MutationDispatcher::Mutate, 1 << 15);
333 TestAddWordFromDictionaryWithHint(&MutationDispatcher::Mutate, 1 << 10);
365 TestChangeASCIIInteger(&MutationDispatcher::Mutate, 1 << 15);
  /prebuilts/clang/host/linux-x86/clang-3859424/prebuilt_include/llvm/lib/Fuzzer/
FuzzerMutate.h 75 size_t Mutate(uint8_t *Data, size_t Size, size_t MaxSize);
  /external/llvm/lib/Fuzzer/
FuzzerInternal.h 285 size_t Mutate(uint8_t *Data, size_t Size, size_t MaxSize);
FuzzerMutate.cpp 1 //===- FuzzerMutate.cpp - Mutate a test input -----------------------------===//
9 // Mutate a test input.
193 // Mutate the integer value.
272 size_t MutationDispatcher::Mutate(uint8_t *Data, size_t Size, size_t MaxSize) {
FuzzerLoop.cpp 653 NewSize = MD.Mutate(CurrentUnitData, Size, Options.MaxLen);
667 // Returns an index of random unit from the corpus to mutate.
  /external/flatbuffers/tests/
test.cpp 293 // Mutate structs.
300 // Mutate vectors.
302 inventory->Mutate(9, 100);
304 inventory->Mutate(9, 9);
    [all...]
  /system/chre/external/flatbuffers/include/flatbuffers/
flatbuffers.h 413 void Mutate(uoffset_t i, const T& val) {
    [all...]

Completed in 757 milliseconds