Home
last modified time | relevance | path

Searched refs:fuzzed (Results 1 – 18 of 18) sorted by relevance

/external/openssh/regress/unittests/sshkey/
Dtest_fuzz.c103 struct sshbuf *buf, *fuzzed; in sshkey_fuzz_tests() local
116 ASSERT_PTR_NE(fuzzed = sshbuf_new(), NULL); in sshkey_fuzz_tests()
119 r = sshbuf_put(fuzzed, fuzz_ptr(fuzz), fuzz_len(fuzz)); in sshkey_fuzz_tests()
121 if (sshkey_parse_private_fileblob(fuzzed, "", &k1, NULL) == 0) in sshkey_fuzz_tests()
123 sshbuf_reset(fuzzed); in sshkey_fuzz_tests()
125 sshbuf_free(fuzzed); in sshkey_fuzz_tests()
137 ASSERT_PTR_NE(fuzzed = sshbuf_new(), NULL); in sshkey_fuzz_tests()
140 r = sshbuf_put(fuzzed, fuzz_ptr(fuzz), fuzz_len(fuzz)); in sshkey_fuzz_tests()
142 if (sshkey_parse_public_rsa1_fileblob(fuzzed, &k1, NULL) == 0) in sshkey_fuzz_tests()
144 sshbuf_reset(fuzzed); in sshkey_fuzz_tests()
[all …]
/external/openssh/regress/unittests/test_helper/
Dfuzz.c71 u_char *fuzzed; member
254 assert(fuzz->fuzzed != NULL); in fuzz_cleanup()
256 free(fuzz->fuzzed); in fuzz_cleanup()
294 if (fuzz->fuzzed == NULL) { in fuzz_next()
296 fuzz->fuzzed = calloc(fuzz->slen, 1); in fuzz_next()
315 assert(fuzz->fuzzed != NULL); in fuzz_next()
320 memcpy(fuzz->fuzzed, fuzz->seed, fuzz->slen); in fuzz_next()
321 fuzz->fuzzed[fuzz->o1 / 8] ^= 1 << (fuzz->o1 % 8); in fuzz_next()
327 memcpy(fuzz->fuzzed, fuzz->seed, fuzz->slen); in fuzz_next()
328 fuzz->fuzzed[fuzz->o1 / 8] ^= 1 << (fuzz->o1 % 8); in fuzz_next()
[all …]
/external/honggfuzz/examples/terminal-emulators/
DREADME.md14 feedback accumulation) will not be closed by the fuzzed binary (terminal emulator)
23 Add compiler-time instrumentation to your fuzzed terminal emulator. Typically it
/external/openssh/regress/misc/kexfuzz/
DREADME31 fuzzed variants with the same type. It really should allow
/external/skia/modules/sksg/samples/
DSampleSVGPong.cpp267 const SkScalar fuzzed = fabs(spd) + fRand.nextRangeScalar(-kBallSpeedFuzz, kBallSpeedFuzz); in fuzzBallSpeed() local
269 return sign * SkTPin(fuzzed, kBallSpeedMin, kBallSpeedMax); in fuzzBallSpeed()
/external/skqp/modules/sksg/samples/
DSampleSVGPong.cpp267 const SkScalar fuzzed = fabs(spd) + fRand.nextRangeScalar(-kBallSpeedFuzz, kBallSpeedFuzz); in fuzzBallSpeed() local
269 return sign * SkTPin(fuzzed, kBallSpeedMin, kBallSpeedMax); in fuzzBallSpeed()
/external/honggfuzz/
DREADME.md7 … file corpus is automatically shared and improved between the fuzzing threads and fuzzed processes.
10 …rt hijacked/ignored signals from crashes__ (intercepted and potentially hidden by a fuzzed program)
14 …* Supports the __persistent fuzzing mode__ (long-lived process calling a fuzzed API repeatedly) wi…
/external/tcpdump/tests/
DTESTLIST66 # fuzzed pcap
176 # fuzzed pcap
256 # fuzzed pcap
263 # fuzzed pcap
289 # fuzzed pcap
591 # fuzzed pcap
596 # fuzzed pcap
/external/libprotobuf-mutator/
DREADME.md71 // Code which needs to be fuzzed.
/external/flatbuffers/tests/fuzzer/
Dreadme.md5 LibFuzzer is linked with the library under test, and feeds fuzzed inputs to the library via a speci…
/external/honggfuzz/docs/
DUSAGE.md12 fuzzed instances)
20 …* Supports __persistent fuzzing mode__ (long-lived process calling a fuzzed API repeatedly) with l…
DFeedbackDrivenFuzzing.md198 As above, it will try to maximize the number of branches taken by CPU on behalf of the fuzzed proce…
/external/ImageMagick/
DAUTHORS.txt123 Contributed numerous fuzzed-images that revealed program flaws in
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DFuzzingLLVM.rst75 fuzzed __cxa_demangle to death, why not fuzz LLVM's implementation of the same
DLibFuzzer.rst13 LibFuzzer is linked with the library under test, and feeds fuzzed inputs to the
/external/clang/docs/
DSanitizerCoverage.rst401 a fuzzer in the same process as the code being fuzzed (in-process fuzzer).
/external/llvm/docs/
DLibFuzzer.rst19 The fuzzer is linked with the library under test, and feeds fuzzed inputs to the
/external/scapy/doc/scapy/
Dusage.rst260 …ollowing example, the IP layer is normal, and the UDP and NTP layers are fuzzed. The UDP checksum …