Home
last modified time | relevance | path

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

12

/external/skia/fuzz/
DFuzzParsePath.cpp37 static void add_white(Fuzz* fuzz, SkString* atom) { in add_white() argument
42 int reps = fuzz->nextRangeU(0, 2); in add_white()
44 int index = fuzz->nextRangeU(0, (int) SK_ARRAY_COUNT(gWhiteSpace) - 1); in add_white()
51 static void add_comma(Fuzz* fuzz, SkString* atom) { in add_comma() argument
57 add_white(fuzz, atom); in add_comma()
58 if (fuzz->nextBool()) { in add_comma()
62 add_white(fuzz, atom); in add_comma()
66 static void add_some_white(Fuzz* fuzz, SkString* atom) { in add_some_white() argument
69 add_white(fuzz, atom); in add_some_white()
73 SkString MakeRandomParsePathPiece(Fuzz* fuzz) { in MakeRandomParsePathPiece() argument
[all …]
DFuzzScaleToSides.cpp18 DEF_FUZZ(ScaleToSides, fuzz) { in DEF_FUZZ() argument
19 float radius1 = fuzz->nextF(), in DEF_FUZZ()
20 radius2 = fuzz->nextF(), in DEF_FUZZ()
21 width = fuzz->nextF(); in DEF_FUZZ()
30 fuzz->signalBoring(); in DEF_FUZZ()
35 fuzz->signalBoring(); in DEF_FUZZ()
/external/boringssl/src/
DFUZZING.md3 Modern fuzz testers are very effective and we wish to use them to ensure that no silly bugs creep i…
5 …http://llvm.org/docs/LibFuzzer.html) for fuzz testing and there are a number of fuzz testing funct…
7fuzz tests you will need at least Clang 3.7. Pass `-DFUZZ=1` on the CMake command line to enable b…
13 In order for the fuzz tests to link, the linker needs to find libFuzzer. This is not commonly provi…
26 ./fuzz/cert -max_len=4000 -jobs=32 -workers=32 ../fuzz/cert_corpus/
29 … to 64 bytes, which is often insufficient for the formats that we wish to fuzz. The arguments to `…
31 There are directories in `fuzz/` for each of the fuzzing tests which contain seed files for fuzzing…
/external/v8/test/webkit/
Ddfg-inline-arguments-use-from-all-the-places-broken.js32 function fuzz(a, b) { function
33 return [foo.arguments, bar.arguments, getter.arguments, fuzz.arguments];
37 return [foo.arguments, bar.arguments, getter.arguments].concat(fuzz(42, 56));
Ddfg-inline-arguments-use-from-all-the-places.js32 function fuzz(a, b) { function
33 return [foo.arguments, bar.arguments, getter.arguments, fuzz.arguments];
37 return [foo.arguments, bar.arguments, getter.arguments].concat(fuzz(42, 56));
Ddfg-inline-arguments-use-from-uninlined-code.js32 function fuzz() { function
42 var array2 = fuzz(a,b,c);
Ddfg-cfa-prove-put-by-id-simple-when-storing-to-specialized-function.js49 function fuzz() { function
Ddfg-flush-get-local.js32 function fuzz(a, b) { function
/external/avahi/tests/
Dfuzz-mdns.py6 …00, dst="ff:ff:ff:ff:ff:ff")/IP(dst="224.0.0.251")/fuzz(UDP(dport = 5353, sport = 5353)/DNS(qd = f…
/external/skia/gyp/
Dfuzz.gyp9 'target_name': 'fuzz',
11 'sources': [ '<!@(python find.py ../fuzz "*.cpp")' ],
Dmost.gyp30 'fuzz.gyp:fuzz',
/external/bsdiff/
Dbsdiff.cc210 const off_t fuzz = 8; in bsdiff() local
211 if (prev_len-fuzz<=len && len<=prev_len && in bsdiff()
212 prev_oldscore-fuzz<=oldscore && in bsdiff()
214 prev_pos<=pos && pos <=prev_pos+fuzz && in bsdiff()
215 oldscore<=len && len<=oldscore+fuzz) in bsdiff()
/external/pdfium/third_party/freetype/src/pshinter/
Dpshglob.c239 FT_Int fuzz, in psh_blues_set_zones() argument
331 zone->org_bottom -= fuzz; in psh_blues_set_zones()
342 if ( delta / 2 < fuzz ) in psh_blues_set_zones()
346 zone[0].org_top = top + fuzz; in psh_blues_set_zones()
347 zone[1].org_bottom = bot - fuzz; in psh_blues_set_zones()
355 zone->org_top = top + fuzz; in psh_blues_set_zones()
/external/freetype/src/pshinter/
Dpshglob.c239 FT_Int fuzz, in psh_blues_set_zones() argument
331 zone->org_bottom -= fuzz; in psh_blues_set_zones()
342 if ( delta < 2 * fuzz ) in psh_blues_set_zones()
346 zone[0].org_top = top + fuzz; in psh_blues_set_zones()
347 zone[1].org_bottom = bot - fuzz; in psh_blues_set_zones()
355 zone->org_top = top + fuzz; in psh_blues_set_zones()
/external/v8/test/mjsunit/
Dunicodelctest.js49 fuzz();
90 function fuzz() { function
Dunicodelctest-no-optimization.js50 fuzz();
91 function fuzz() { function
/external/autotest/client/virt/tests/
Diofuzz.py57 def fuzz(session, inst_list): function
133 fuzz(session, inst)
/external/owasp/sanitizer/src/tests/org/owasp/html/
DHtmlSanitizerFuzzerTest.java80 for (int fuzz = 1 + rnd.nextInt(25); --fuzz >= 0;) { in testFuzzHtmlParser()
/external/v8/test/cctest/
Dtest-macro-assembler-arm.cc109 const int fuzz = 11; in TEST() local
112 for (const byte* src = src_buffer; src < src_buffer + fuzz; src++) { in TEST()
113 for (byte* dest = dest_buffer; dest < dest_buffer + fuzz; dest++) { in TEST()
/external/autotest/client/bin/input/
Dinput_device.py43 def __init__(self, value, min_value, max_value, fuzz, flat, resolution): argument
47 self.fuzz = fuzz
556 if a.fuzz != 0:
557 print ' Fuzz %6d' % a.fuzz
/external/boringssl/
DUPDATING7 rm -Rf src/fuzz
/external/kernel-headers/original/uapi/linux/
Dvirtio_input.h45 __u32 fuzz; member
/external/llvm/lib/Fuzzer/
DFuzzerFlags.def43 " with stdout/stderr redirected to fuzz-JOB.log.")
72 FUZZER_FLAG_INT(drill, 0, "Experimental: fuzz using a single unit as the seed "
/external/llvm/docs/
DLibFuzzer.rst2 LibFuzzer -- a library for coverage-guided fuzz testing.
11 This library is intended primarily for in-process coverage-guided fuzz testing
50 and is used to fuzz various parts of LLVM,
67 …awn this number of jobs in separate worker processes with stdout/stderr redirected to fuzz-JOB.log.
222 cat << EOF > handshake-fuzz.cc
254 clang++ -g handshake-fuzz.cc -fsanitize=address \
313 ./afl-fuzz -i testcase_dir -o findings_dir /path/to/program -r @@
314 ./llvm-fuzz testcase_dir findings_dir # Will write new tests to testcase_dir
321 Once you implement your target function ``LLVMFuzzerTestOneInput`` and fuzz it to death,
372 This tool fuzzes the MC layer. Currently it is only able to fuzz the
/external/v8/tools/
Dfuzz-harness.sh88 archive=fuzz-results-$(date +%Y%m%d%H%M%S).tar.bz2

12