/linux/drivers/input/ |
H A D | touchscreen.c | 35 int min, int max, int fuzz) in touchscreen_set_params() argument 49 absinfo->fuzz = fuzz; in touchscreen_set_params() 71 unsigned int minimum, maximum, fuzz; in touchscreen_parse_properties() local 90 &fuzz); in touchscreen_parse_properties() 92 touchscreen_set_params(input, axis_x, minimum, maximum - 1, fuzz); in touchscreen_parse_properties() 103 &fuzz); in touchscreen_parse_properties() 105 touchscreen_set_params(input, axis_y, minimum, maximum - 1, fuzz); in touchscreen_parse_properties() 115 &fuzz); in touchscreen_parse_properties() 117 touchscreen_set_params(input, axis, 0, maximum, fuzz); in touchscreen_parse_properties()
|
H A D | input.c | 70 static int input_defuzz_abs_event(int value, int old_val, int fuzz) in input_defuzz_abs_event() argument 72 if (fuzz) { in input_defuzz_abs_event() 73 if (value > old_val - fuzz / 2 && value < old_val + fuzz / 2) in input_defuzz_abs_event() 76 if (value > old_val - fuzz && value < old_val + fuzz) in input_defuzz_abs_event() 79 if (value > old_val - fuzz * 2 && value < old_val + fuzz * 2) in input_defuzz_abs_event() 191 dev->absinfo[code].fuzz); in input_handle_abs_event() 462 int min, int max, int fuzz, int flat) in input_set_abs_params() argument 476 absinfo->fuzz = fuzz; in input_set_abs_params()
|
/linux/Documentation/devicetree/bindings/input/touchscreen/ |
H A D | tsc2007.txt | 15 - ti,fuzzx: specifies the absolute input fuzz x value. 16 If set, it will permit noise in the data up to +- the value given to the fuzz 18 - ti,fuzzy: specifies the absolute input fuzz y value. 19 - ti,fuzzz: specifies the absolute input fuzz z value.
|
H A D | brcm,iproc-touchscreen.txt | 55 - touchscreen-fuzz-x: horizontal noise value of the absolute input 57 - touchscreen-fuzz-y: vertical noise value of the absolute input
|
/linux/arch/arm64/boot/dts/allwinner/ |
H A D | sun50i-h700-anbernic-rg35xx-h.dts | 28 abs-fuzz = <32>; 36 abs-fuzz = <32>; 44 abs-fuzz = <32>; 52 abs-fuzz = <32>;
|
/linux/arch/arm64/boot/dts/rockchip/ |
H A D | rk3566-anbernic-rg353x.dtsi | 26 abs-fuzz = <32>; 34 abs-fuzz = <32>; 42 abs-fuzz = <32>; 50 abs-fuzz = <32>;
|
H A D | rk3326-odroid-go3.dts | 47 abs-fuzz = <10>; 55 abs-fuzz = <10>; 63 abs-fuzz = <10>; 71 abs-fuzz = <10>;
|
H A D | rk3326-odroid-go2.dts | 26 abs-fuzz = <10>; 34 abs-fuzz = <10>;
|
H A D | rk3326-odroid-go2-v11.dts | 30 abs-fuzz = <10>; 38 abs-fuzz = <10>;
|
H A D | rk3588s-gameforce-ace.dts | 61 abs-fuzz = <30>; 69 abs-fuzz = <30>; 77 abs-fuzz = <30>; 85 abs-fuzz = <30>; 103 abs-fuzz = <15>; 111 abs-fuzz = <15>;
|
H A D | rk3566-powkiddy-rk2023.dtsi | 36 abs-fuzz = <32>; 44 abs-fuzz = <32>; 52 abs-fuzz = <32>; 60 abs-fuzz = <32>;
|
/linux/drivers/input/mouse/ |
H A D | appletouch.c | 37 int fuzz; /* fuzz touchpad generates */ member 51 .fuzz = 16, 62 .fuzz = 16, 73 .fuzz = 0, 83 .fuzz = 0, 93 .fuzz = 0, 503 dev->info->fuzz, 0); in atp_detect_size() 906 dev->info->fuzz, 0); in atp_probe() 909 dev->info->fuzz, 0); in atp_probe()
|
/linux/drivers/input/joystick/ |
H A D | adc-joystick.c | 135 s32 range[2], fuzz, flat; in adc_joystick_set_axes() local 183 if (fwnode_property_read_u32(child, "abs-fuzz", &fuzz)) in adc_joystick_set_axes() 184 fuzz = 0; in adc_joystick_set_axes() 190 range[0], range[1], fuzz, flat); in adc_joystick_set_axes()
|
H A D | analog.c | 108 int fuzz; member 413 input_set_abs_params(input_dev, t, v, (x << 1) - v, port->fuzz, w); in analog_init_device() 532 port->fuzz = (NSEC_PER_MSEC * ANALOG_FUZZ_MAGIC) / port->loop / 1000 + ANALOG_FUZZ_BITS; in analog_init_port() 571 port->fuzz = gameport->fuzz; in analog_init_port()
|
H A D | sidewinder.c | 750 int min, max, fuzz, flat; in sw_connect() local 755 fuzz = (bits >> 1) >= 2 ? 1 << ((bits >> 1) - 2) : 0; in sw_connect() 760 min, max, fuzz, flat); in sw_connect()
|
/linux/Documentation/input/ |
H A D | gameport-programming.rst | 91 gameport.fuzz = 8; 94 The only confusing thing here is the fuzz value. Best determined by 96 gameports can set this to zero, most common have fuzz between 8 and 32. 97 See analog.c and input.c for handling of fuzz - the fuzz value determines 158 int fuzz;
|
/linux/drivers/misc/lis3lv02d/ |
H A D | lis3lv02d.c | 683 int max_val, fuzz, flat; in lis3lv02d_joystick_enable() local 704 fuzz = LIS3_DEFAULT_FUZZ_12B; in lis3lv02d_joystick_enable() 707 fuzz = LIS3_DEFAULT_FUZZ_8B; in lis3lv02d_joystick_enable() 710 fuzz = (fuzz * lis3->scale) / LIS3_ACCURACY; in lis3lv02d_joystick_enable() 713 input_set_abs_params(input_dev, ABS_X, -max_val, max_val, fuzz, flat); in lis3lv02d_joystick_enable() 714 input_set_abs_params(input_dev, ABS_Y, -max_val, max_val, fuzz, flat); in lis3lv02d_joystick_enable() 715 input_set_abs_params(input_dev, ABS_Z, -max_val, max_val, fuzz, flat); in lis3lv02d_joystick_enable()
|
/linux/include/uapi/linux/ |
H A D | virtio_input.h | 45 __le32 fuzz; member
|
H A D | input.h | 97 __s32 fuzz; member
|
/linux/sound/pci/au88x0/ |
H A D | au88x0_game.c | 103 gp->fuzz = 64; in vortex_gameport_register()
|
/linux/arch/arm/boot/dts/ti/omap/ |
H A D | logicpd-torpedo-baseboard.dtsi | 363 touchscreen-fuzz-x = <4>; 364 touchscreen-fuzz-y = <7>; 365 touchscreen-fuzz-pressure = <2>;
|
/linux/arch/arm64/boot/dts/amlogic/ |
H A D | meson-g12b-odroid-go-ultra.dts | 35 abs-fuzz = <32>; 42 abs-fuzz = <32>; 58 abs-fuzz = <32>; 65 abs-fuzz = <32>;
|
/linux/include/linux/ |
H A D | gameport.h | 24 int fuzz; member
|
/linux/arch/arm/boot/dts/nxp/imx/ |
H A D | imx6dl-lanmcu.dts | 207 touchscreen-fuzz-x = <0>; 208 touchscreen-fuzz-y = <0>;
|
/linux/Documentation/process/ |
H A D | applying-patches.rst | 134 it'll tell you about it by saying the patch applied with **fuzz**. 139 When patch encounters a change that it can't fix up with fuzz it rejects it 147 never see a fuzz or reject message from patch. If you do see such messages 162 If you get ``Hunk #2 succeeded at 1887 with fuzz 2 (offset 7 lines).`` or a 175 fuzz its way through. This will generate a ``.rej`` file with the change that
|