HomeSort by relevance Sort by last modified time
    Searched full:fuzz (Results 1 - 25 of 644) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/578-bce-visit/
expected.txt 2 FUZZ result = 1001 16
info.txt 0 Fuzz test that exposed bug in bounds check elimination visiting of blocks.
  /external/skia/fuzz/oss_fuzz/
FuzzAPIImageFilter.cpp 8 #include "../Fuzz.h"
10 void fuzz_ImageFilter(Fuzz* f);
13 auto fuzz = Fuzz(SkData::MakeWithoutCopy(data, size)); local
14 fuzz_ImageFilter(&fuzz);
FuzzDrawFunctions.cpp 8 #include "../Fuzz.h"
10 void fuzz_DrawFunctions(Fuzz* f);
13 auto fuzz = Fuzz(SkData::MakeWithoutCopy(data, size)); local
14 fuzz_DrawFunctions(&fuzz);
FuzzGradients.cpp 8 #include "../Fuzz.h"
10 void fuzz_Gradients(Fuzz* f);
14 auto fuzz = Fuzz(SkData::MakeWithoutCopy(data, size)); local
15 fuzz_Gradients(&fuzz);
FuzzRegionSetPath.cpp 8 #include "../Fuzz.h"
15 void FuzzRegionSetPath(Fuzz* fuzz) {
17 fuzz_path(fuzz, &p, 1000);
20 fuzz->next(&initR1);
22 fuzz->next(&r1);
25 fuzz->next(&r2);
42 Fuzz fuzz(bytes);
43 FuzzRegionSetPath(&fuzz);
    [all...]
  /external/skia/fuzz/
FuzzDrawFunctions.cpp 8 #include "Fuzz.h"
23 static void init_string(Fuzz* fuzz, char* str, size_t bufSize) {
25 fuzz->nextRange(&str[i], 0x20, 0x7E); // printable ASCII
31 static void init_paint(Fuzz* fuzz, SkPaint* p) {
33 fuzz->next(&b);
37 fuzz->nextRange(&tmp_u8, 0, (int)SkBlendMode::kLastMode);
41 fuzz->next(&co);
44 fuzz->next(&b)
    [all...]
FuzzParsePath.cpp 8 #include "Fuzz.h"
13 // Most of this is taken from random_parse_path.cpp and adapted to use the Fuzz
37 static void add_white(Fuzz* fuzz, SkString* atom) {
45 fuzz->nextRange(&reps, 0, 2);
48 fuzz->nextRange(&index, 0, (int) SK_ARRAY_COUNT(gWhiteSpace) - 1);
55 static void add_some_white(Fuzz* fuzz, SkString* atom) {
57 add_white(fuzz, atom);
61 static void add_comma(Fuzz* fuzz, SkString* atom)
    [all...]
FuzzCanvas.cpp 8 #include "Fuzz.h"
80 inline void fuzz_enum_range(Fuzz* fuzz, T* value, Min rmin, Max rmax) {
82 fuzz->nextRange((U*)value, (U)rmin, (U)rmax);
89 inline T make_fuzz_t(Fuzz* fuzz) {
91 fuzz->next(&t);
96 inline void Fuzz::next(SkShader::TileMode* m) {
101 inline void Fuzz::next(SkFilterQuality* q) {
107 inline void Fuzz::next(SkMatrix* m)
    [all...]
FuzzCommon.h 8 #include "Fuzz.h"
13 static void fuzz_nice_float(Fuzz* fuzz, float* f) {
15 fuzz->next(&v);
21 inline void fuzz_nice_float(Fuzz* fuzz, float* f, Args... rest) {
22 fuzz_nice_float(fuzz, f);
23 fuzz_nice_float(fuzz, rest...);
26 static void fuzz_path(Fuzz* fuzz, SkPath* path, int maxOps)
    [all...]
FuzzPathop.cpp 8 #include "Fuzz.h"
14 void BuildPath(Fuzz* fuzz,
17 while (!fuzz->exhausted()) {
21 fuzz->next(&operation);
26 fuzz->next(&a, &b);
31 fuzz->next(&a, &b);
36 fuzz->next(&a, &b, &c, &d);
41 fuzz->next(&a, &b, &c, &d, &e);
46 fuzz->next(&a, &b, &c, &d, &e, &f)
    [all...]
FuzzGradients.cpp 8 #include "Fuzz.h"
20 void makeMatrix(Fuzz* fuzz, SkMatrix* m) {
22 fuzz->nextN(mat, 9);
26 void initGradientParams(Fuzz* fuzz, std::vector<SkColor>* colors,
29 fuzz->nextRange(&count, 0, MAX_COUNT);
34 fuzz->nextRange(&m, 0, 2);
42 fuzz->next(&c, &s);
106 void fuzzLinearGradient(Fuzz* fuzz)
    [all...]
  /external/skqp/fuzz/
FuzzDrawFunctions.cpp 8 #include "Fuzz.h"
23 static void init_string(Fuzz* fuzz, char* str, size_t bufSize) {
25 fuzz->nextRange(&str[i], 0x20, 0x7E); // printable ASCII
31 static void init_paint(Fuzz* fuzz, SkPaint* p) {
33 fuzz->next(&b);
37 fuzz->nextRange(&tmp_u8, 0, (int)SkBlendMode::kLastMode);
41 fuzz->next(&co);
44 fuzz->next(&b)
    [all...]
FuzzParsePath.cpp 8 #include "Fuzz.h"
13 // Most of this is taken from random_parse_path.cpp and adapted to use the Fuzz
37 static void add_white(Fuzz* fuzz, SkString* atom) {
45 fuzz->nextRange(&reps, 0, 2);
48 fuzz->nextRange(&index, 0, (int) SK_ARRAY_COUNT(gWhiteSpace) - 1);
55 static void add_some_white(Fuzz* fuzz, SkString* atom) {
57 add_white(fuzz, atom);
61 static void add_comma(Fuzz* fuzz, SkString* atom)
    [all...]
FuzzCanvas.cpp 8 #include "Fuzz.h"
80 inline void fuzz_enum_range(Fuzz* fuzz, T* value, Min rmin, Max rmax) {
82 fuzz->nextRange((U*)value, (U)rmin, (U)rmax);
89 inline T make_fuzz_t(Fuzz* fuzz) {
91 fuzz->next(&t);
96 inline void Fuzz::next(SkShader::TileMode* m) {
101 inline void Fuzz::next(SkFilterQuality* q) {
107 inline void Fuzz::next(SkMatrix* m)
    [all...]
FuzzCommon.h 8 #include "Fuzz.h"
13 static void fuzz_nice_float(Fuzz* fuzz, float* f) {
15 fuzz->next(&v);
21 inline void fuzz_nice_float(Fuzz* fuzz, float* f, Args... rest) {
22 fuzz_nice_float(fuzz, f);
23 fuzz_nice_float(fuzz, rest...);
26 static void fuzz_path(Fuzz* fuzz, SkPath* path, int maxOps)
    [all...]
FuzzScaleToSides.cpp 10 // $ ninja -C out/Debug fuzz
11 // $ afl-fuzz -i fuzz-in -o fuzz-out out/Debug/fuzz -n ScaleToSides -b @@
12 // where you seed fuzz-in/ with one or more small files.
14 #include "Fuzz.h"
18 DEF_FUZZ(ScaleToSides, fuzz) {
20 fuzz->next(&radius1, &radius2, &width);
39 // TODO(mtklein): add fuzz->keepResult(
    [all...]
FuzzPathop.cpp 8 #include "Fuzz.h"
14 void BuildPath(Fuzz* fuzz,
17 while (!fuzz->exhausted()) {
21 fuzz->next(&operation);
26 fuzz->next(&a, &b);
31 fuzz->next(&a, &b);
36 fuzz->next(&a, &b, &c, &d);
41 fuzz->next(&a, &b, &c, &d, &e);
46 fuzz->next(&a, &b, &c, &d, &e, &f)
    [all...]
FuzzGradients.cpp 8 #include "Fuzz.h"
20 void makeMatrix(Fuzz* fuzz, SkMatrix* m) {
22 fuzz->nextN(mat, 9);
26 void initGradientParams(Fuzz* fuzz, std::vector<SkColor>* colors,
29 fuzz->nextRange(&count, 0, MAX_COUNT);
34 fuzz->nextRange(&m, 0, 2);
42 fuzz->next(&c, &s);
106 void fuzzLinearGradient(Fuzz* fuzz)
    [all...]
  /external/skqp/fuzz/oss_fuzz/
FuzzRegionSetPath.cpp 8 #include "../Fuzz.h"
15 void FuzzRegionSetPath(Fuzz* fuzz) {
17 fuzz_path(fuzz, &p, 1000);
20 fuzz->next(&initR1);
22 fuzz->next(&r1);
25 fuzz->next(&r2);
42 Fuzz fuzz(bytes);
43 FuzzRegionSetPath(&fuzz);
    [all...]
  /external/capstone/suite/fuzz/
README 1 This directory contains a fuzz testing harness for Capstone.
  /external/capstone/suite/
fuzz.py 5 # ./suite/fuzz.py --> Fuzz all archs
6 # ./suite/fuzz.py x86 --> Fuzz all X86 (all 16bit, 32bit, 64bit)
7 # ./suite/fuzz.py x86-16 --> Fuzz X86-32 arch only
8 # ./suite/fuzz.py x86-32 --> Fuzz X86-32 arch only
9 # ./suite/fuzz.py x86-64 --> Fuzz X86-64 arch onl
    [all...]
  /test/vti/dashboard/testdata/
test-plan-report-data.json 4 "testPlanName": "vts-serving-staging-fuzz",
  /external/ImageMagick/MagickCore/
color-private.h 39 fuzz; local
41 fuzz=(double) MagickMax(MagickMax(p->fuzz,q->fuzz),(MagickRealType)
43 return(fuzz*fuzz);
  /test/vts-testcase/fuzz/script/
update_configs.py 16 """Updates .bp, .mk, .xml files under test/vts-testcase/fuzz.
20 1. files matching: test/vts-testcase/fuzz/<hal_name>/<hal_version>/func_fuzzer/Android.mk
21 2. files matching: test/vts-testcase/fuzz/<hal_name>/<hal_version>/func_fuzzer/AndroidTest.xml
22 3. files matching: test/vts-testcase/fuzz/<hal_name>/<hal_version>/iface_fuzzer/Android.mk
23 4. files matching: test/vts-testcase/fuzz/<hal_name>/<hal_version>/iface_fuzzer/AndroidTest.xml
27 python test/vts-testcase/fuzz/update_makefiles.py

Completed in 458 milliseconds

1 2 3 4 5 6 7 8 91011>>