Home
last modified time | relevance | path

Searched defs:fuzz (Results 1 – 25 of 1206) sorted by relevance

12345678910>>...49

/aosp_15_r20/external/skia/fuzz/
H A DFuzzCanvas.cpp82 inline T make_fuzz_t(Fuzz* fuzz) { in make_fuzz_t()
92 static sk_sp<SkColorFilter> make_fuzz_colorfilter(Fuzz* fuzz, int depth) { in make_fuzz_colorfilter()
162 static void fuzz_gradient_stops(Fuzz* fuzz, SkScalar* pos, int colorCount) { in fuzz_gradient_stops()
176 static sk_sp<SkShader> make_fuzz_shader(Fuzz* fuzz, int depth) { in make_fuzz_shader()
355 static sk_sp<SkPathEffect> make_fuzz_patheffect(Fuzz* fuzz, int depth) { in make_fuzz_patheffect()
424 static sk_sp<SkMaskFilter> make_fuzz_maskfilter(Fuzz* fuzz) { in make_fuzz_maskfilter()
445 static sk_sp<SkTypeface> make_fuzz_typeface(Fuzz* fuzz) { in make_fuzz_typeface()
461 static sk_sp<SkImageFilter> make_fuzz_lighting_imagefilter(Fuzz* fuzz, int depth) { in make_fuzz_lighting_imagefilter()
523 static SkSamplingOptions next_sampling(Fuzz* fuzz) { in next_sampling()
537 static sk_sp<SkImageFilter> make_fuzz_imageFilter(Fuzz* fuzz, int depth) { in make_fuzz_imageFilter()
[all …]
H A DFuzzPrecompile.cpp45 SkBlendMode random_blend_mode(Fuzz* fuzz) { in random_blend_mode()
51 SkColor random_opaque_skcolor(Fuzz* fuzz) { in random_opaque_skcolor()
57 SkColor4f random_color4f(Fuzz* fuzz) { in random_color4f()
91 const skcms_TransferFunction& random_transfer_function(Fuzz* fuzz) { in random_transfer_function()
107 const skcms_Matrix3x3& random_gamut(Fuzz* fuzz) { in random_gamut()
133 sk_sp<SkColorSpace> create_colorspace(Fuzz* fuzz, ColorSpaceType csType) { in create_colorspace()
148 sk_sp<SkColorSpace> create_random_colorspace(Fuzz* fuzz) { in create_random_colorspace()
172 Fuzz* fuzz) { in create_blend_colorfilter()
206 Fuzz* fuzz, in create_colorfilter()
228 Fuzz* fuzz, in create_random_colorfilter()
[all …]
H A DFuzzDrawFunctions.cpp26 static void init_string(Fuzz* fuzz, char* str, size_t bufSize) { in init_string()
34 static void init_paint(Fuzz* fuzz, SkPaint* p) { in init_paint()
67 static void init_bitmap(Fuzz* fuzz, SkBitmap* bmp) { in init_bitmap()
98 static void init_surface(Fuzz* fuzz, sk_sp<SkSurface>* s) { in init_surface()
111 static void fuzz_drawText(Fuzz* fuzz, sk_sp<SkTypeface> typeface) { in fuzz_drawText()
156 static void fuzz_drawCircle(Fuzz* fuzz) { in fuzz_drawCircle()
167 static void fuzz_drawLine(Fuzz* fuzz) { in fuzz_drawLine()
178 static void fuzz_drawRect(Fuzz* fuzz) { in fuzz_drawRect()
199 static void fuzz_drawPath(Fuzz* fuzz) { in fuzz_drawPath()
250 static void fuzz_drawImage(Fuzz* fuzz) { in fuzz_drawImage()
[all …]
H A DFuzzSkParagraph.cpp115 uint8_t RandomText(T* buffer, Fuzz* fuzz) { in RandomText()
123 void AddASCIIText(ParagraphBuilder* builder,Fuzz* fuzz) { in AddASCIIText()
129 void AddUnicodeText(ParagraphBuilder* builder,Fuzz* fuzz) { in AddUnicodeText()
140 void AddZalgoText(ParagraphBuilder* builder, Fuzz* fuzz) { in AddZalgoText()
169 void AddStyle(ParagraphBuilder* builder, Fuzz* fuzz) { in AddStyle()
196 void RemoveStyle(ParagraphBuilder* builder, Fuzz* fuzz) { in RemoveStyle()
204 void AddStyleAndText(ParagraphBuilder* builder, Fuzz* fuzz) { in AddStyleAndText()
223 ParagraphStyle BuildParagraphStyle(Fuzz* fuzz) { in BuildParagraphStyle()
262 DEF_FUZZ(SkParagraph, fuzz) { in DEF_FUZZ() argument
H A DFuzzCreateDDL.cpp41 static SkSurfaceProps gen_fuzzed_surface_props(Fuzz* fuzz) { in gen_fuzzed_surface_props()
47 static SkPaint gen_fuzzed_skpaint(Fuzz* fuzz) { in gen_fuzzed_skpaint()
57 static SkImageInfo gen_fuzzed_imageinfo(Fuzz* fuzz, SkColorType surfaceType) { in gen_fuzzed_imageinfo()
126 static GrSurfaceCharacterization make_characterization(Fuzz* fuzz, GrDirectContext* dContext, in make_characterization()
166 static sk_sp<GrDeferredDisplayList> make_ddl(Fuzz* fuzz, GrDirectContext* dContext, in make_ddl()
181 static sk_sp<SkSurface> make_surface(Fuzz* fuzz, GrDirectContext* dContext, const SkImageInfo& ii, in make_surface()
196 static SurfaceAndChar create_surface_and_characterization(Fuzz* fuzz, GrDirectContext* dContext, in create_surface_and_characterization()
212 DEF_FUZZ(CreateDDL, fuzz) { in DEF_FUZZ() argument
H A DFuzzCommon.cpp18 static void fuzz_nice_float(Fuzz* fuzz, float* f) { in fuzz_nice_float()
26 static void fuzz_nice_float(Fuzz* fuzz, float* f, Args... rest) { in fuzz_nice_float()
31 static void fuzz_nice_rect(Fuzz* fuzz, SkRect* r) { in fuzz_nice_rect()
37 void FuzzNicePath(Fuzz* fuzz, SkPath* path, int maxOps) { in FuzzNicePath()
237 void FuzzEvilPath(Fuzz* fuzz, SkPath* path, int last_verb) { in FuzzEvilPath()
282 void FuzzNiceRRect(Fuzz* fuzz, SkRRect* rr) { in FuzzNiceRRect()
297 void FuzzNiceMatrix(Fuzz* fuzz, SkMatrix* m) { in FuzzNiceMatrix()
333 void FuzzNiceRegion(Fuzz* fuzz, SkRegion* region, int maxN) { in FuzzNiceRegion()
H A DFuzzGradients.cpp23 void makeMatrix(Fuzz* fuzz, SkMatrix* m) { in makeMatrix()
29 void initGradientParams(Fuzz* fuzz, std::vector<SkColor>* colors, in initGradientParams()
105 void fuzzLinearGradient(Fuzz* fuzz) { in fuzzLinearGradient()
141 void fuzzRadialGradient(Fuzz* fuzz) { in fuzzRadialGradient()
177 void fuzzTwoPointConicalGradient(Fuzz* fuzz) { in fuzzTwoPointConicalGradient()
215 void fuzzSweepGradient(Fuzz* fuzz) { in fuzzSweepGradient()
251 DEF_FUZZ(Gradients, fuzz) { in DEF_FUZZ() argument
H A DFuzzEncoders.cpp27 static SkBitmap make_fuzzed_bitmap(Fuzz* fuzz) { in make_fuzzed_bitmap()
40 DEF_FUZZ(PNGEncoder, fuzz) { in DEF_FUZZ() argument
50 DEF_FUZZ(JPEGEncoder, fuzz) { in DEF_FUZZ() argument
60 DEF_FUZZ(WEBPEncoder, fuzz) { in DEF_FUZZ() argument
79 DEF_FUZZ(_MakeEncoderCorpus, fuzz) { in DEF_FUZZ() argument
H A DFuzzParsePath.cpp38 static void add_white(Fuzz* fuzz, SkString* atom) { in add_white()
56 static void add_some_white(Fuzz* fuzz, SkString* atom) { in add_some_white()
62 static void add_comma(Fuzz* fuzz, SkString* atom) { in add_comma()
76 SkString MakeRandomParsePathPiece(Fuzz* fuzz) { in MakeRandomParsePathPiece()
116 DEF_FUZZ(ParsePath, fuzz) { in DEF_FUZZ() argument
H A DFuzzPathop.cpp16 DEF_FUZZ(Pathop, fuzz) { in DEF_FUZZ() argument
120 void BuildPath(Fuzz* fuzz, SkPath* path) { in BuildPath()
185 DEF_FUZZ(LegacyChromiumPathop, fuzz) { in DEF_FUZZ() argument
H A DFuzzDDLThreading.cpp41 inline T make_fuzz_t(Fuzz* fuzz) { in make_fuzz_t()
128 DDLFuzzer::DDLFuzzer(Fuzz* fuzz, ContextType contextType) : fFuzz(fuzz) { in DDLFuzzer()
301 DEF_FUZZ(DDLThreadingGL, fuzz) { in DEF_FUZZ() argument
H A DFuzzPolyUtils.cpp28 DEF_FUZZ(PolyUtils, fuzz) { in DEF_FUZZ() argument
66 DEF_FUZZ(PolyUtils, fuzz) {} in DEF_FUZZ() argument
H A DFuzzMain.cpp448 Fuzz fuzz(data->bytes(), data->size()); in fuzz_api() local
499 Fuzz fuzz(data->bytes(), data->size()); in fuzz_android_codec() local
796 Fuzz fuzz(data->bytes(), data->size()); in fuzz_region_set_path() local
/aosp_15_r20/external/skia/fuzz/oss_fuzz/
H A DFuzzRegionSetPath.cpp14 void FuzzRegionSetPath(Fuzz* fuzz) { in FuzzRegionSetPath()
43 Fuzz fuzz(data, size); in LLVMFuzzerTestOneInput() local
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/fuzz/
Dworker.go5 package fuzz package
706 func (ws *workerServer) fuzz(ctx context.Context, args fuzzArgs) (resp fuzzResponse) { func
1074 func (wc *workerClient) fuzz(ctx context.Context, entryIn CorpusEntry, args fuzzArgs) (entryOut Cor… func
Dcounters_supported.go7 package fuzz package
Dcounters_unsupported.go13 package fuzz package
/aosp_15_r20/frameworks/native/services/inputflinger/tests/
H A DInputMapperTest.cpp56 int32_t resolution, int32_t flat, int32_t fuzz) { in setupAxis()
235 float max, float flat, float fuzz) { in assertMotionRange()
/aosp_15_r20/frameworks/base/core/java/android/view/
H A DInputDevice.java747 float min, float max, float flat, float fuzz, float resolution) { in addMotionRange()
1201 float min, float max, float flat, float fuzz, float resolution) { in addMotionRange()
1430 private MotionRange(int axis, int source, float min, float max, float flat, float fuzz, in MotionRange()
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/
H A Doverflow_id_source.cpp18 namespace fuzz { namespace
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/source/fuzz/pass_management/
Drepeated_pass_recommender.cpp18 namespace fuzz { namespace
/aosp_15_r20/external/angle/third_party/spirv-tools/src/source/fuzz/
H A Doverflow_id_source.cpp18 namespace fuzz { namespace
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/source/fuzz/
Drandom_generator.cpp18 namespace fuzz { namespace
/aosp_15_r20/external/angle/third_party/spirv-tools/src/source/fuzz/pass_management/
H A Drepeated_pass_recommender.cpp18 namespace fuzz { namespace
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/pass_management/
H A Drepeated_pass_recommender.cpp18 namespace fuzz { namespace

12345678910>>...49