/third_party/skia/fuzz/ |
H A D | FuzzCanvas.cpp | 8 #include "fuzz/Fuzz.h" 9 #include "fuzz/FuzzCommon.h" 77 inline T make_fuzz_t(Fuzz* fuzz) { in make_fuzz_t() argument 79 fuzz->next(&t); in make_fuzz_t() 87 static sk_sp<SkColorFilter> make_fuzz_colorfilter(Fuzz* fuzz, int depth) { in make_fuzz_colorfilter() argument 92 fuzz->nextRange(&colorFilterType, 0, 8); in make_fuzz_colorfilter() 99 fuzz->next(&color); in make_fuzz_colorfilter() 100 fuzz->nextEnum(&mode, SkBlendMode::kLastMode); in make_fuzz_colorfilter() 104 sk_sp<SkColorFilter> outer = make_fuzz_colorfilter(fuzz, depth - 1); in make_fuzz_colorfilter() 108 sk_sp<SkColorFilter> inner = make_fuzz_colorfilter(fuzz, dept in make_fuzz_colorfilter() 157 fuzz_gradient_stops(Fuzz* fuzz, SkScalar* pos, int colorCount) fuzz_gradient_stops() argument 171 make_fuzz_shader(Fuzz* fuzz, int depth) make_fuzz_shader() argument 346 make_fuzz_patheffect(Fuzz* fuzz, int depth) make_fuzz_patheffect() argument 415 make_fuzz_maskfilter(Fuzz* fuzz) make_fuzz_maskfilter() argument 436 make_fuzz_typeface(Fuzz* fuzz) make_fuzz_typeface() argument 453 make_fuzz_lighting_imagefilter(Fuzz* fuzz, int depth) make_fuzz_lighting_imagefilter() argument 515 next_sampling(Fuzz* fuzz) next_sampling() argument 529 make_fuzz_imageFilter(Fuzz* fuzz, int depth) make_fuzz_imageFilter() argument 809 make_fuzz_image(Fuzz* fuzz) make_fuzz_image() argument [all...] |
H A D | FuzzCommon.cpp | 8 #include "fuzz/Fuzz.h" 9 #include "fuzz/FuzzCommon.h" 12 static void fuzz_nice_float(Fuzz* fuzz, float* f) { in fuzz_nice_float() argument 14 fuzz->next(&v); in fuzz_nice_float() 20 static void fuzz_nice_float(Fuzz* fuzz, float* f, Args... rest) { in fuzz_nice_float() argument 21 fuzz_nice_float(fuzz, f); in fuzz_nice_float() 22 fuzz_nice_float(fuzz, rest...); in fuzz_nice_float() 25 static void fuzz_nice_rect(Fuzz* fuzz, SkRect* r) { in fuzz_nice_rect() argument 26 fuzz_nice_float(fuzz, &r->fLeft, &r->fTop, &r->fRight, &r->fBottom); in fuzz_nice_rect() 31 void FuzzNicePath(Fuzz* fuzz, SkPat argument 225 FuzzEvilPath(Fuzz* fuzz, SkPath* path, int last_verb) FuzzEvilPath() argument 270 FuzzNiceRRect(Fuzz* fuzz, SkRRect* rr) FuzzNiceRRect() argument 285 FuzzNiceMatrix(Fuzz* fuzz, SkMatrix* m) FuzzNiceMatrix() argument 321 FuzzNiceRegion(Fuzz* fuzz, SkRegion* region, int maxN) FuzzNiceRegion() argument [all...] |
H A D | FuzzDrawFunctions.cpp | 8 #include "fuzz/Fuzz.h" 25 static void init_string(Fuzz* fuzz, char* str, size_t bufSize) { in init_string() argument 27 fuzz->nextRange(&str[i], 0x20, 0x7E); // printable ASCII in init_string() 33 static void init_paint(Fuzz* fuzz, SkPaint* p) { in init_paint() argument 35 fuzz->next(&b); in init_paint() 39 fuzz->nextRange(&tmp_u8, 0, (int)SkBlendMode::kLastMode); in init_paint() 43 fuzz->next(&co); in init_paint() 46 fuzz->next(&b); in init_paint() 49 fuzz->nextRange(&tmp_u8, 0, (int)SkPaint::kLast_Cap); in init_paint() 52 fuzz in init_paint() 66 init_bitmap(Fuzz* fuzz, SkBitmap* bmp) init_bitmap() argument 97 init_surface(Fuzz* fuzz, sk_sp<SkSurface>* s) init_surface() argument 110 fuzz_drawText(Fuzz* fuzz, sk_sp<SkTypeface> typeface) fuzz_drawText() argument 155 fuzz_drawCircle(Fuzz* fuzz) fuzz_drawCircle() argument 166 fuzz_drawLine(Fuzz* fuzz) fuzz_drawLine() argument 177 fuzz_drawRect(Fuzz* fuzz) fuzz_drawRect() argument 198 fuzz_drawPath(Fuzz* fuzz) fuzz_drawPath() argument 249 fuzz_drawImage(Fuzz* fuzz) fuzz_drawImage() argument 277 fuzz_drawPaint(Fuzz* fuzz) fuzz_drawPaint() argument [all...] |
H A D | FuzzPathop.cpp | 8 #include "fuzz/Fuzz.h" 9 #include "fuzz/FuzzCommon.h" 16 DEF_FUZZ(Pathop, fuzz) { in DEF_FUZZ() 19 fuzz->nextRange(&choice, 0, 4); in DEF_FUZZ() 23 fuzz->nextRange(&ops, 0, MAX_OPS); in DEF_FUZZ() 25 for (uint8_t i = 0; i < ops && !fuzz->exhausted(); i++) { in DEF_FUZZ() 27 FuzzEvilPath(fuzz, &path, SkPath::Verb::kDone_Verb); in DEF_FUZZ() 29 fuzz->nextRange(&ft, 0, (int)SkPathFillType::kInverseEvenOdd); in DEF_FUZZ() 33 fuzz->nextRange(&op, 0, SkPathOp::kReverseDifference_SkPathOp); in DEF_FUZZ() 43 FuzzEvilPath(fuzz, in DEF_FUZZ() 120 BuildPath(Fuzz* fuzz, SkPath* path) BuildPath() argument [all...] |
H A D | FuzzParsePath.cpp | 8 #include "fuzz/Fuzz.h" 38 static void add_white(Fuzz* fuzz, SkString* atom) { in add_white() argument 46 fuzz->nextRange(&reps, 0, 2); in add_white() 49 fuzz->nextRange(&index, 0, (int) SK_ARRAY_COUNT(gWhiteSpace) - 1); in add_white() 56 static void add_some_white(Fuzz* fuzz, SkString* atom) { in add_some_white() argument 58 add_white(fuzz, atom); in add_some_white() 62 static void add_comma(Fuzz* fuzz, SkString* atom) { in add_comma() argument 67 add_white(fuzz, atom); in add_comma() 69 fuzz->next(&b); in add_comma() 73 add_some_white(fuzz, ato in add_comma() 76 MakeRandomParsePathPiece(Fuzz* fuzz) MakeRandomParsePathPiece() argument [all...] |
H A D | FuzzSkParagraph.cpp | 8 #include "fuzz/Fuzz.h" 9 #include "fuzz/FuzzCommon.h" 116 uint8_t RandomText(T* buffer, Fuzz* fuzz) { in RandomText() argument 118 fuzz->nextRange(&text_length, 0, MAX_TEXT_LENGTH); in RandomText() 119 fuzz->nextN(buffer, text_length); in RandomText() 124 void AddASCIIText(ParagraphBuilder* builder,Fuzz* fuzz) { in AddASCIIText() argument 126 const auto text_length = RandomText(text, fuzz); in AddASCIIText() 130 void AddUnicodeText(ParagraphBuilder* builder,Fuzz* fuzz) { in AddUnicodeText() argument 132 const auto text_length = RandomText(text, fuzz); in AddUnicodeText() 141 void AddZalgoText(ParagraphBuilder* builder, Fuzz* fuzz) { in AddZalgoText() argument 170 AddStyle(ParagraphBuilder* builder, Fuzz* fuzz) AddStyle() argument 197 RemoveStyle(ParagraphBuilder* builder, Fuzz* fuzz) RemoveStyle() argument 205 AddStyleAndText(ParagraphBuilder* builder, Fuzz* fuzz) AddStyleAndText() argument 224 BuildParagraphStyle(Fuzz* fuzz) BuildParagraphStyle() argument [all...] |
H A D | FuzzGradients.cpp | 8 #include "fuzz/Fuzz.h" 22 void makeMatrix(Fuzz* fuzz, SkMatrix* m) { in makeMatrix() argument 24 fuzz->nextN(mat, 9); in makeMatrix() 28 void initGradientParams(Fuzz* fuzz, std::vector<SkColor>* colors, in initGradientParams() argument 31 fuzz->nextRange(&count, 0, MAX_COUNT); in initGradientParams() 36 fuzz->nextRange(&m, 0, 2); in initGradientParams() 44 fuzz->next(&c, &s); in initGradientParams() 108 void fuzzLinearGradient(Fuzz* fuzz) { in fuzzLinearGradient() argument 110 fuzz->next(&pts[0].fX, &pts[0].fY, &pts[1].fX, &pts[1].fY); in fuzzLinearGradient() 112 fuzz in fuzzLinearGradient() 144 fuzzRadialGradient(Fuzz* fuzz) fuzzRadialGradient() argument 181 fuzzTwoPointConicalGradient(Fuzz* fuzz) fuzzTwoPointConicalGradient() argument 219 fuzzSweepGradient(Fuzz* fuzz) fuzzSweepGradient() argument [all...] |
H A D | FuzzCreateDDL.cpp | 19 #include "fuzz/Fuzz.h" 24 * The fuzzer aims to fuzz the use of SkDeferredDisplayList. It mainly consists of 39 static SkSurfaceProps gen_fuzzed_surface_props(Fuzz* fuzz) { in gen_fuzzed_surface_props() argument 41 fuzz->nextEnum(&pixel, kBGR_V_SkPixelGeometry); in gen_fuzzed_surface_props() 45 static SkPaint gen_fuzzed_skpaint(Fuzz* fuzz) { in gen_fuzzed_skpaint() argument 47 fuzz->nextRange(&R, -1, 2); in gen_fuzzed_skpaint() 48 fuzz->nextRange(&G, -1, 2); in gen_fuzzed_skpaint() 49 fuzz->nextRange(&B, -1, 2); in gen_fuzzed_skpaint() 50 fuzz->nextRange(&Alpha, 0, 1); in gen_fuzzed_skpaint() 55 static SkImageInfo gen_fuzzed_imageinfo(Fuzz* fuzz, SkColorTyp argument 124 make_characterization(Fuzz* fuzz, GrDirectContext* dContext, SkImageInfo& ii, SkColorType surfaceType, GrSurfaceOrigin origin) make_characterization() argument 158 make_ddl(Fuzz* fuzz, GrDirectContext* dContext, const SkSurfaceCharacterization& c) make_ddl() argument 173 make_surface(Fuzz* fuzz, GrDirectContext* dContext, const SkImageInfo& ii, GrSurfaceOrigin origin) make_surface() argument 188 create_surface_and_characterization(Fuzz* fuzz, GrDirectContext* dContext, SkColorType surfaceType, GrSurfaceOrigin origin) create_surface_and_characterization() argument [all...] |
H A D | FuzzEncoders.cpp | 8 #include "fuzz/Fuzz.h" 26 static SkBitmap make_fuzzed_bitmap(Fuzz* fuzz) { in make_fuzzed_bitmap() argument 29 fuzz->nextRange(&w, 1, MAX_WIDTH); in make_fuzzed_bitmap() 30 fuzz->nextRange(&h, 1, MAX_HEIGHT); in make_fuzzed_bitmap() 35 fuzz->nextN((SkPMColor*)bm.getPixels(), n); in make_fuzzed_bitmap() 39 DEF_FUZZ(PNGEncoder, fuzz) { in DEF_FUZZ() 40 auto bm = make_fuzzed_bitmap(fuzz); in DEF_FUZZ() 43 fuzz->nextRange(&opts.fZLibLevel, 0, 9); in DEF_FUZZ() 49 DEF_FUZZ(JPEGEncoder, fuzz) { in DEF_FUZZ() 50 auto bm = make_fuzzed_bitmap(fuzz); in DEF_FUZZ() [all...] |
H A D | FuzzCommon.h | 11 #include "fuzz/Fuzz.h" 18 void FuzzNicePath(Fuzz* fuzz, SkPath* path, int maxOps); 20 void FuzzEvilPath(Fuzz* fuzz, SkPath* path, int last_verb); 22 void FuzzNiceRRect(Fuzz* fuzz, SkRRect* rr); 24 void FuzzNiceMatrix(Fuzz* fuzz, SkMatrix* m); 26 void FuzzNiceRegion(Fuzz* fuzz, SkRegion* region, int maxN);
|
H A D | FuzzPolyUtils.cpp | 8 #include "fuzz/Fuzz.h" 15 DEF_FUZZ(PolyUtils, fuzz) { in DEF_FUZZ() 17 fuzz->nextRange(&count, 0, 512); in DEF_FUZZ() 20 fuzz->next(&polygon[index].fX, &polygon[index].fY); in DEF_FUZZ() 30 fuzz->next(&inset); in DEF_FUZZ() 35 fuzz->next(&offset); in DEF_FUZZ() 40 fuzz->next(&indexMap[index]); in DEF_FUZZ()
|
H A D | FuzzPathMeasure.cpp | 8 #include "fuzz/Fuzz.h" 9 #include "fuzz/FuzzCommon.h" 14 DEF_FUZZ(PathMeasure, fuzz) { in DEF_FUZZ() 16 fuzz->next(&bits); in DEF_FUZZ() 19 fuzz->next(&distance[index]); in DEF_FUZZ() 22 FuzzEvilPath(fuzz, &path, SkPath::Verb::kDone_Verb); in DEF_FUZZ()
|
/third_party/json/ |
H A D | Makefile | 37 @echo "fuzz_testing - prepare fuzz testing of the JSON parser" 38 @echo "fuzz_testing_bson - prepare fuzz testing of the BSON parser" 39 @echo "fuzz_testing_cbor - prepare fuzz testing of the CBOR parser" 40 @echo "fuzz_testing_msgpack - prepare fuzz testing of the MessagePack parser" 41 @echo "fuzz_testing_ubjson - prepare fuzz testing of the UBJSON parser" 71 # the overall fuzz testing target 73 rm -fr fuzz-testing 74 mkdir -p fuzz-testing fuzz-testing/testcases fuzz [all...] |
/third_party/libinput/tools/ |
H A D | libinput-measure-fuzz.py | 45 OVERRIDE_HWDB_FILE = "/etc/udev/hwdb.d/99-touchpad-fuzz-override.hwdb" 109 """Return a tuple of (xfuzz, yfuzz) with the fuzz as set in the libinput 122 "WARNING: fuzz mismatch ABS_X: {}, ABS_MT_POSITION_X: {}".format( 130 "WARNING: fuzz mismatch ABS_Y: {}, ABS_MT_POSITION_Y: {}".format( 144 raise InvalidConfigurationError("fuzz should be set for both axes") 150 Returns a tuple of (xfuzz, yfuzz) with the fuzz as set on the device 151 axis. Returns None if no fuzz is set. 162 self.absinfo[libevdev.EV_ABS.ABS_X].fuzz 163 or self.absinfo[libevdev.EV_ABS.ABS_MT_POSITION_X].fuzz 166 self.absinfo[libevdev.EV_ABS.ABS_Y].fuzz [all...] |
/third_party/skia/third_party/externals/tint/fuzzers/tint_spirv_tools_fuzzer/ |
H A D | spirv_fuzz_mutator.cc | 31 const std::vector<spvtools::fuzz::fuzzerutil::ModuleSupplier>& donors, in SpirvFuzzMutator() 33 spvtools::fuzz::RepeatedPassStrategy repeated_pass_strategy, in SpirvFuzzMutator() 43 target_env, spvtools::fuzz::fuzzerutil::kSilentMessageConsumer, in SpirvFuzzMutator() 48 std::make_unique<spvtools::fuzz::TransformationContext>( in SpirvFuzzMutator() 49 std::make_unique<spvtools::fuzz::FactManager>(ir_context.get()), in SpirvFuzzMutator() 52 auto fuzzer_context = std::make_unique<spvtools::fuzz::FuzzerContext>( in SpirvFuzzMutator() 53 std::make_unique<spvtools::fuzz::PseudoRandomGenerator>(seed), in SpirvFuzzMutator() 54 spvtools::fuzz::FuzzerContext::GetMinFreshId(ir_context.get()), false); in SpirvFuzzMutator() 55 fuzzer_ = std::make_unique<spvtools::fuzz::Fuzzer>( in SpirvFuzzMutator() 67 case spvtools::fuzz in Mutate() [all...] |
/third_party/skia/third_party/externals/spirv-tools/test/fuzzers/ |
H A D | spvtools_fuzz_fuzzer.cpp | 18 #include "source/fuzz/fuzzer.h" 19 #include "source/fuzz/pseudo_random_generator.h" 42 if (!spvtools::fuzz::fuzzerutil::BuildIRContext( in LLVMFuzzerTestOneInput() 49 std::vector<spvtools::fuzz::fuzzerutil::ModuleSupplier> donor_suppliers = { in LLVMFuzzerTestOneInput() 53 if (!spvtools::fuzz::fuzzerutil::BuildIRContext( in LLVMFuzzerTestOneInput() 64 auto fuzzer_context = spvtools::MakeUnique<spvtools::fuzz::FuzzerContext>( in LLVMFuzzerTestOneInput() 65 spvtools::MakeUnique<spvtools::fuzz::PseudoRandomGenerator>(seed), in LLVMFuzzerTestOneInput() 66 spvtools::fuzz::FuzzerContext::GetMinFreshId(ir_context.get()), false); in LLVMFuzzerTestOneInput() 69 spvtools::MakeUnique<spvtools::fuzz::TransformationContext>( in LLVMFuzzerTestOneInput() 70 spvtools::MakeUnique<spvtools::fuzz in LLVMFuzzerTestOneInput() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/fuzzers/ |
H A D | spvtools_fuzz_fuzzer.cpp | 18 #include "source/fuzz/fuzzer.h" 19 #include "source/fuzz/pseudo_random_generator.h" 42 if (!spvtools::fuzz::fuzzerutil::BuildIRContext( in LLVMFuzzerTestOneInput() 49 std::vector<spvtools::fuzz::fuzzerutil::ModuleSupplier> donor_suppliers = { in LLVMFuzzerTestOneInput() 53 if (!spvtools::fuzz::fuzzerutil::BuildIRContext( in LLVMFuzzerTestOneInput() 64 auto fuzzer_context = spvtools::MakeUnique<spvtools::fuzz::FuzzerContext>( in LLVMFuzzerTestOneInput() 65 spvtools::MakeUnique<spvtools::fuzz::PseudoRandomGenerator>(seed), in LLVMFuzzerTestOneInput() 66 spvtools::fuzz::FuzzerContext::GetMinFreshId(ir_context.get()), false); in LLVMFuzzerTestOneInput() 69 spvtools::MakeUnique<spvtools::fuzz::TransformationContext>( in LLVMFuzzerTestOneInput() 70 spvtools::MakeUnique<spvtools::fuzz in LLVMFuzzerTestOneInput() [all...] |
/third_party/spirv-tools/test/fuzzers/ |
H A D | spvtools_fuzz_fuzzer.cpp | 18 #include "source/fuzz/fuzzer.h" 19 #include "source/fuzz/pseudo_random_generator.h" 42 if (!spvtools::fuzz::fuzzerutil::BuildIRContext( in LLVMFuzzerTestOneInput() 49 std::vector<spvtools::fuzz::fuzzerutil::ModuleSupplier> donor_suppliers = { in LLVMFuzzerTestOneInput() 53 if (!spvtools::fuzz::fuzzerutil::BuildIRContext( in LLVMFuzzerTestOneInput() 64 auto fuzzer_context = spvtools::MakeUnique<spvtools::fuzz::FuzzerContext>( in LLVMFuzzerTestOneInput() 65 spvtools::MakeUnique<spvtools::fuzz::PseudoRandomGenerator>(seed), in LLVMFuzzerTestOneInput() 66 spvtools::fuzz::FuzzerContext::GetMinFreshId(ir_context.get()), false); in LLVMFuzzerTestOneInput() 69 spvtools::MakeUnique<spvtools::fuzz::TransformationContext>( in LLVMFuzzerTestOneInput() 70 spvtools::MakeUnique<spvtools::fuzz in LLVMFuzzerTestOneInput() [all...] |
/third_party/skia/fuzz/oss_fuzz/ |
H A D | FuzzRegionSetPath.cpp | 8 #include "fuzz/Fuzz.h" 9 #include "fuzz/FuzzCommon.h" 15 void FuzzRegionSetPath(Fuzz* fuzz) { in FuzzRegionSetPath() argument 17 FuzzNicePath(fuzz, &p, 1000); in FuzzRegionSetPath() 20 fuzz->next(&initR1); in FuzzRegionSetPath() 22 fuzz->next(&r1); in FuzzRegionSetPath() 25 fuzz->next(&r2); in FuzzRegionSetPath() 46 Fuzz fuzz(bytes); in LLVMFuzzerTestOneInput() 47 FuzzRegionSetPath(&fuzz); in LLVMFuzzerTestOneInput()
|
/third_party/skia/third_party/externals/spirv-tools/tools/fuzz/ |
H A D | fuzz.cpp | 24 #include "source/fuzz/force_render_red.h" 25 #include "source/fuzz/fuzzer.h" 26 #include "source/fuzz/fuzzer_util.h" 27 #include "source/fuzz/protobufs/spirvfuzz_protobufs.h" 28 #include "source/fuzz/pseudo_random_generator.h" 29 #include "source/fuzz/replayer.h" 30 #include "source/fuzz/shrinker.h" 115 By default, spirv-fuzz follows the philosophy of "swarm testing" in PrintUsage() 119 running spirv-fuzz many times this is likely to produce *less* in PrintUsage() 132 Useful for debugging spirv-fuzz in PrintUsage() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/fuzz/ |
H A D | fuzz.cpp | 24 #include "source/fuzz/force_render_red.h" 25 #include "source/fuzz/fuzzer.h" 26 #include "source/fuzz/fuzzer_util.h" 27 #include "source/fuzz/protobufs/spirvfuzz_protobufs.h" 28 #include "source/fuzz/pseudo_random_generator.h" 29 #include "source/fuzz/replayer.h" 30 #include "source/fuzz/shrinker.h" 115 By default, spirv-fuzz follows the philosophy of "swarm testing" in PrintUsage() 119 running spirv-fuzz many times this is likely to produce *less* in PrintUsage() 132 Useful for debugging spirv-fuzz in PrintUsage() [all...] |
/third_party/spirv-tools/tools/fuzz/ |
H A D | fuzz.cpp | 24 #include "source/fuzz/force_render_red.h" 25 #include "source/fuzz/fuzzer.h" 26 #include "source/fuzz/fuzzer_util.h" 27 #include "source/fuzz/protobufs/spirvfuzz_protobufs.h" 28 #include "source/fuzz/pseudo_random_generator.h" 29 #include "source/fuzz/replayer.h" 30 #include "source/fuzz/shrinker.h" 109 By default, spirv-fuzz follows the philosophy of "swarm testing" in PrintUsage() 113 running spirv-fuzz many times this is likely to produce *less* in PrintUsage() 126 Useful for debugging spirv-fuzz in PrintUsage() [all...] |
/third_party/libinput/udev/ |
H A D | test-libinput-fuzz-extract.c | 31 #include "libinput-fuzz-extract.c" 39 int min, max, res, fuzz, flat; in START_TEST() member 62 .min = 1, .max = 2, .res = 3, .fuzz = 4}, in START_TEST() 65 .min = 1, .max = 2, .res = 3, .fuzz = 4, .flat = 5}, in START_TEST() 68 .min = 1, .res = 3, .fuzz = 4, .flat = 50}, in START_TEST() 71 .fuzz = 5, .flat = 60}, in START_TEST() 74 .fuzz = 5 }, in START_TEST() 80 .res = 12, .fuzz = 1, .flat = 2 }, in START_TEST() 103 ck_assert_int_eq(abs.fuzz, t->fuzz); in START_TEST() [all...] |
H A D | libinput-fuzz-extract.c | 38 * For a non-zero fuzz on the x/y axes, print that fuzz as property and 39 * reset the kernel's fuzz to 0. 70 int fuzz; in handle_absfuzz() local 72 fuzz = libevdev_get_abs_fuzz(evdev, *code); in handle_absfuzz() 73 if (fuzz) in handle_absfuzz() 74 printf("LIBINPUT_FUZZ_%02x=%d\n", *code, fuzz); in handle_absfuzz() 83 * Where a device has EVDEV_ABS_... set with a fuzz, that fuzz hasn't been 108 printf("LIBINPUT_FUZZ_%02x=%d\n", *code, abs.fuzz); in handle_evdev_abs() [all...] |
/third_party/ffmpeg/tests/ |
H A D | refcmp-metadata.awk | 19 # check for "fuzz" (threshold) program parameter, else use default 20 if (fuzz <= 0.0) { 21 fuzz = 0.1; 46 result = result && ($1 == ref_keys[NR]) && (delta <= fuzz); 64 if (delta_max >= fuzz) 65 print "[refcmp] delta_max: " delta_max " >= " fuzz > "/dev/stderr";
|