Home
last modified time | relevance | path

Searched refs:fuzz (Results 1 – 25 of 88) sorted by relevance

1234

/netbsd-src/crypto/external/bsd/openssl/dist/fuzz/
H A DREADME.md9 How to fuzz OpenSSL with [libfuzzer](http://llvm.org/docs/LibFuzzer.html),
25 CC=clang ./config enable-fuzz-libfuzzer \
43 fuzz/helper.py $FUZZER
45 where $FUZZER is one of the executables in `fuzz/`.
49 `fuzz/corpora/$FUZZER-crash/`.
62 CC=clang ./config enable-fuzz-libfuzzer \
81 CC=afl-clang-fast ./config enable-fuzz-afl no-shared no-module \
93 afl-fuzz -i fuzz/corpora/$FUZZER -o fuzz/corpora/$FUZZER/out fuzz/$FUZZER
95 Where $FUZZER is one of the executables in `fuzz/`.
101 the fuzz/*-test binaries and the file generated by the fuzzer. They binaries
[all …]
H A Dbuild.info11 IF[{- !$disabled{"fuzz-afl"} || !$disabled{"fuzz-libfuzzer"} -}]
/netbsd-src/external/lgpl3/mpc/dist/tests/
H A Dteta.c68 mpfr_t fuzz; in test_eta() local
76 mpfr_init2 (fuzz, 2*p); in test_eta()
94 mpfr_set_ui (fuzz, 1, MPFR_RNDN); in test_eta()
95 mpfr_div_ui (fuzz, fuzz, 10, MPFR_RNDN); in test_eta()
96 mpfr_add (mpc_realref (j->c), mpc_realref (j->c), fuzz, MPFR_RNDN); in test_eta()
97 mpfr_add (mpc_imagref (j->c), mpc_imagref (j->c), fuzz, MPFR_RNDN); in test_eta()
121 mpfr_add (mpc_realref (j->c), mpc_realref (j->c), fuzz, MPFR_RNDN); in test_eta()
122 mpfr_add (mpc_imagref (j->c), mpc_imagref (j->c), fuzz, MPFR_RNDN); in test_eta()
138 mpfr_clear (fuzz); in test_eta()
/netbsd-src/crypto/external/bsd/openssl.old/dist/fuzz/
H A DREADME.md6 Or, how to fuzz OpenSSL with [libfuzzer](http://llvm.org/docs/LibFuzzer.html).
38 $ CC=clang ./config enable-fuzz-libfuzzer \
50 $ fuzz/helper.py $FUZZER
52 Where $FUZZER is one of the executables in `fuzz/`.
55 `fuzz/corpora/$FUZZER-crash/`.
63 $ CC=afl-clang-fast ./config enable-fuzz-afl no-shared -DPEDANTIC \
74 $ afl-fuzz -i fuzz/corpora/$FUZZER -o fuzz/corpora/$FUZZER/out fuzz/$FUZZER
76 Where $FUZZER is one of the executables in `fuzz/`.
82 the fuzz/*-test binaries and the file generated by the fuzzer. They binaries
84 config with enable-fuzz-* or -fsanitize-coverage, but some of the other options
[all …]
H A Dbuild.info11 IF[{- !$disabled{"fuzz-afl"} || !$disabled{"fuzz-libfuzzer"} -}]
/netbsd-src/external/bsd/libfido2/dist/fuzz/
H A Dsummary.txt3 fuzz/clock.c 24 1 95.83% 4 …
4 fuzz/pcsc.c 59 0 100.00% 8 …
5 fuzz/prng.c 31 0 100.00% 2 …
6 fuzz/udev.c 110 2 98.18% 17 …
7 fuzz/uniform_random.c 7 1 85.71% 1 …
8 fuzz/wrap.c 23 0 100.00% 3 …
55 fuzz/mutator_aux.h 0 0 - 0 …
H A DMakefile27 tar Ccf .. - src fuzz | docker exec -i ${RUNNER} tar Cxf /libfido2 -
32 docker exec ${RUNNER} tar Czxf /libfido2/fuzz /libfido2/fuzz/corpus.tgz
79 fetch-oss-fuzz: ${CORPORA}
90 .PHONY: fetch-oss-fuzz fetch-franz corpus.tgz
H A DDockerfile16 RUN ./fuzz/build-coverage /libcbor /libfido2
/netbsd-src/usr.bin/patch/
H A Dpatch.c157 LINENUM where = 0, newwhere, fuzz, mymaxfuzz; in main() local
256 fuzz = 0; in main()
262 where = locate_hunk(fuzz); in main()
266 if (fuzz == 0) in main()
272 where = locate_hunk(fuzz); in main()
310 ++fuzz <= mymaxfuzz); in main()
339 if (fuzz != 0) in main()
340 say(" with fuzz %ld", fuzz); in main()
654 locate_hunk(LINENUM fuzz) in locate_hunk() argument
663 if (verbose && fuzz == 0 && (diff_type == CONTEXT_DIFF in locate_hunk()
[all …]
/netbsd-src/external/lgpl3/mpc/dist/src/
H A Deta.c282 mpc_t fuzz; in mpc_eta_fund() local
284 mpc_init2 (fuzz, prec); in mpc_eta_fund()
286 mpc_set_ui_ui (fuzz, 0, 1, MPC_RNDNN); in mpc_eta_fund()
287 mpc_div_ui (fuzz, fuzz, 10, MPC_RNDNN); in mpc_eta_fund()
288 mpcb_set_c (fuzzb, fuzz, prec, 0, 1); in mpc_eta_fund()
292 mpc_clear (fuzz); in mpc_eta_fund()
/netbsd-src/external/bsd/libfido2/dist/src/
H A DCMakeLists.txt46 list(APPEND FIDO_SOURCES ../fuzz/clock.c)
47 list(APPEND FIDO_SOURCES ../fuzz/pcsc.c)
48 list(APPEND FIDO_SOURCES ../fuzz/prng.c)
49 list(APPEND FIDO_SOURCES ../fuzz/udev.c)
50 list(APPEND FIDO_SOURCES ../fuzz/uniform_random.c)
51 list(APPEND FIDO_SOURCES ../fuzz/wrap.c)
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DFuzzingLLVM.rst28 __ https://bugs.chromium.org/p/oss-fuzz/issues/list?q=proj-llvm+clang-fuzzer
37 For example, the following command will fuzz clang with a higher optimization
53 __ https://bugs.chromium.org/p/oss-fuzz/issues/list?q=proj-llvm+clang-format-fuzzer
70 __ https://bugs.chromium.org/p/oss-fuzz/issues/list?q=proj-llvm+llvm-dwarfdump-fuzzer
76 fuzzed __cxa_demangle to death, why not fuzz LLVM's implementation of the same
86 the following command would fuzz AArch64 with :doc:`GlobalISel/index`:
136 example, to fuzz the AArch64 assembler you might use the following command:
165 The inputs for a fuzz target are generated via random mutations of a
217 The ``FuzzMutate`` library is used to structurally fuzz backends in
257 .. _OSS Fuzz: https://github.com/google/oss-fuzz
[all …]
H A DLibFuzzer.rst2 libFuzzer – a library for coverage-guided fuzz testing.
43 *fuzz target* -- a function that accepts an array of bytes and
55 Note that this fuzz target does not depend on libFuzzer in any way
59 Some important things to remember about fuzz targets:
61 * The fuzzing engine will execute the fuzz target many times with different inputs in the same proc…
81 …clang -g -O1 -fsanitize=fuzzer mytarget.c # Builds the fuzz target w/o san…
82 …clang -g -O1 -fsanitize=fuzzer,address mytarget.c # Builds the fuzz target with AS…
83 …clang -g -O1 -fsanitize=fuzzer,signed-integer-overflow mytarget.c # Builds the fuzz target with a …
84 …clang -g -O1 -fsanitize=fuzzer,memory mytarget.c # Builds the fuzz target with MS…
305 ``stdout``/``stderr`` redirected to ``fuzz-<JOB>.log``.
[all …]
/netbsd-src/external/mit/libcbor/dist/test/
H A Dfuzz_test.c65 static void fuzz(void **state) { in fuzz() function
85 const struct CMUnitTest tests[] = {cmocka_unit_test(fuzz)}; in main()
/netbsd-src/external/mit/expat/dist/
H A DMakefile.am94 fuzz/xml_parsebuffer_fuzzer.c \
95 fuzz/xml_parse_fuzzer.c \
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
H A Dam3517-som.dtsi135 touchscreen-fuzz-x = <4>;
136 touchscreen-fuzz-y = <7>;
137 touchscreen-fuzz-pressure = <2>;
H A Dlogicpd-som-lv.dtsi115 touchscreen-fuzz-x = <4>;
116 touchscreen-fuzz-y = <7>;
117 touchscreen-fuzz-pressure = <2>;
H A Dlogicpd-torpedo-baseboard.dtsi324 touchscreen-fuzz-x = <4>;
325 touchscreen-fuzz-y = <7>;
326 touchscreen-fuzz-pressure = <2>;
/netbsd-src/external/bsd/unbound/dist/
H A DREADME.md5 …Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/unbound.svg)](https://bu…
/netbsd-src/external/bsd/libfido2/dist/
H A DREADME.adoc7 …:https://oss-fuzz-build-logs.storage.googleapis.com/badges/libfido2.svg["Fuzz Status (oss-fuzz)", …
/netbsd-src/crypto/external/bsd/openssl/dist/test/recipes/
H A Dfuzz.pl22 ok(run(fuzz(["$f-test", $d])), "Fuzzing $f");
/netbsd-src/external/mit/libcbor/dist/oss-fuzz/
H A Dbuild.sh26 ../oss-fuzz/cbor_load_fuzzer.cc -o "$OUT/cbor_load_fuzzer" \
/netbsd-src/external/bsd/libfido2/dist/tools/
H A Dinclude_check.sh17 check fuzz
/netbsd-src/crypto/external/bsd/openssl.old/dist/test/recipes/
H A D99-test_fuzz.t37 ok(run(fuzz(["$f-test", $_])));
/netbsd-src/tests/fs/vfs/
H A Dt_vnops.c719 int fuzz; in symlink_long() local
721 for (fuzz = -1; fuzz <= 1; fuzz++) { in symlink_long()
722 symlink_len(tc, mp, len + fuzz); in symlink_long()

1234