/external/skia/fuzz/ |
D | FuzzParsePath.cpp | 37 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 …]
|
D | FuzzScaleToSides.cpp | 18 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/ |
D | FUZZING.md | 3 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… 7 …fuzz 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/ |
D | dfg-inline-arguments-use-from-all-the-places-broken.js | 32 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));
|
D | dfg-inline-arguments-use-from-all-the-places.js | 32 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));
|
D | dfg-inline-arguments-use-from-uninlined-code.js | 32 function fuzz() { function 42 var array2 = fuzz(a,b,c);
|
D | dfg-cfa-prove-put-by-id-simple-when-storing-to-specialized-function.js | 49 function fuzz() { function
|
D | dfg-flush-get-local.js | 32 function fuzz(a, b) { function
|
/external/avahi/tests/ |
D | fuzz-mdns.py | 6 …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/ |
D | fuzz.gyp | 9 'target_name': 'fuzz', 11 'sources': [ '<!@(python find.py ../fuzz "*.cpp")' ],
|
D | most.gyp | 30 'fuzz.gyp:fuzz',
|
/external/bsdiff/ |
D | bsdiff.cc | 210 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/ |
D | pshglob.c | 239 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/ |
D | pshglob.c | 239 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/ |
D | unicodelctest.js | 49 fuzz(); 90 function fuzz() { function
|
D | unicodelctest-no-optimization.js | 50 fuzz(); 91 function fuzz() { function
|
/external/autotest/client/virt/tests/ |
D | iofuzz.py | 57 def fuzz(session, inst_list): function 133 fuzz(session, inst)
|
/external/owasp/sanitizer/src/tests/org/owasp/html/ |
D | HtmlSanitizerFuzzerTest.java | 80 for (int fuzz = 1 + rnd.nextInt(25); --fuzz >= 0;) { in testFuzzHtmlParser()
|
/external/v8/test/cctest/ |
D | test-macro-assembler-arm.cc | 109 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/ |
D | input_device.py | 43 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/ |
D | UPDATING | 7 rm -Rf src/fuzz
|
/external/kernel-headers/original/uapi/linux/ |
D | virtio_input.h | 45 __u32 fuzz; member
|
/external/llvm/lib/Fuzzer/ |
D | FuzzerFlags.def | 43 " 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/ |
D | LibFuzzer.rst | 2 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/ |
D | fuzz-harness.sh | 88 archive=fuzz-results-$(date +%Y%m%d%H%M%S).tar.bz2
|