OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MutateInt64
(Results
1 - 6
of
6
) sorted by null
/external/libprotobuf-mutator/src/libfuzzer/
libfuzzer_mutator.h
34
int64_t
MutateInt64
(int64_t value) override;
libfuzzer_mutator.cc
45
int64_t Mutator::
MutateInt64
(int64_t value) { return MutateValue(value); }
/external/libprotobuf-mutator/src/
mutator.h
62
virtual int64_t
MutateInt64
(int64_t value);
mutator.cc
351
RepeatMutate(value, std::bind(&Mutator::
MutateInt64
, mutator_, _1));
617
int64_t Mutator::
MutateInt64
(int64_t value) { return FlipBit(value, random_); }
mutator_test.cc
247
int64_t
MutateInt64
(int64_t value) override { return GetRandomValue(); }
/external/flatbuffers/go/
table.go
351
//
MutateInt64
updates a Int64 at the given offset.
352
func (t *Table)
MutateInt64
(off UOffsetT, n int64) bool {
470
t.
MutateInt64
(t.Pos+UOffsetT(off), n)
Completed in 567 milliseconds