Home
last modified time | relevance | path

Searched refs:fuzz (Results 1 – 25 of 28) sorted by relevance

12

/linux/arch/arm64/boot/dts/allwinner/
H A Dsun50i-h700-anbernic-rg35xx-h.dts28 abs-fuzz = <32>;
36 abs-fuzz = <32>;
44 abs-fuzz = <32>;
52 abs-fuzz = <32>;
/linux/arch/arm64/boot/dts/rockchip/
H A Drk3566-anbernic-rg353x.dtsi26 abs-fuzz = <32>;
34 abs-fuzz = <32>;
42 abs-fuzz = <32>;
50 abs-fuzz = <32>;
H A Drk3326-odroid-go3.dts48 abs-fuzz = <10>;
56 abs-fuzz = <10>;
64 abs-fuzz = <10>;
72 abs-fuzz = <10>;
H A Drk3326-odroid-go2.dts26 abs-fuzz = <10>;
34 abs-fuzz = <10>;
H A Drk3326-odroid-go2-v11.dts30 abs-fuzz = <10>;
38 abs-fuzz = <10>;
H A Drk3566-powkiddy-rk2023.dtsi36 abs-fuzz = <32>;
44 abs-fuzz = <32>;
52 abs-fuzz = <32>;
60 abs-fuzz = <32>;
H A Drk3326-gameforce-chi.dts38 abs-fuzz = <10>;
46 abs-fuzz = <10>;
/linux/drivers/input/joystick/
H A Dadc-joystick.c135 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 Danalog.c108 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 Dsidewinder.c751 int min, max, fuzz, flat; in sw_connect() local
756 fuzz = (bits >> 1) >= 2 ? 1 << ((bits >> 1) - 2) : 0; in sw_connect()
761 min, max, fuzz, flat); in sw_connect()
H A Da3d.c349 adc->fuzz = 1; in a3d_connect()
/linux/Documentation/input/
H A Dgameport-programming.rst91 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 Dlis3lv02d.c680 int max_val, fuzz, flat; in lis3lv02d_joystick_enable() local
701 fuzz = LIS3_DEFAULT_FUZZ_12B; in lis3lv02d_joystick_enable()
704 fuzz = LIS3_DEFAULT_FUZZ_8B; in lis3lv02d_joystick_enable()
707 fuzz = (fuzz * lis3->scale) / LIS3_ACCURACY; in lis3lv02d_joystick_enable()
710 input_set_abs_params(input_dev, ABS_X, -max_val, max_val, fuzz, flat); in lis3lv02d_joystick_enable()
711 input_set_abs_params(input_dev, ABS_Y, -max_val, max_val, fuzz, flat); in lis3lv02d_joystick_enable()
712 input_set_abs_params(input_dev, ABS_Z, -max_val, max_val, fuzz, flat); in lis3lv02d_joystick_enable()
/linux/Documentation/devicetree/bindings/input/touchscreen/
H A Dbrcm,iproc-touchscreen.txt55 - touchscreen-fuzz-x: horizontal noise value of the absolute input
57 - touchscreen-fuzz-y: vertical noise value of the absolute input
/linux/include/uapi/linux/
H A Dvirtio_input.h45 __le32 fuzz; member
/linux/sound/pci/au88x0/
H A Dau88x0_game.c103 gp->fuzz = 64; in vortex_gameport_register()
/linux/arch/arm/boot/dts/ti/omap/
H A Dlogicpd-torpedo-baseboard.dtsi363 touchscreen-fuzz-x = <4>;
364 touchscreen-fuzz-y = <7>;
365 touchscreen-fuzz-pressure = <2>;
H A Domap3-n900.dts984 touchscreen-fuzz-x = <4>;
985 touchscreen-fuzz-y = <7>;
986 touchscreen-fuzz-pressure = <2>;
/linux/include/linux/
H A Dgameport.h24 int fuzz; member
/linux/Documentation/process/
H A Dapplying-patches.rst134 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
/linux/drivers/input/mouse/
H A Dsynaptics.c1279 int fuzz = SYN_CAP_REDUCED_FILTERING(info->ext_cap_0c) ? in set_abs_position_params() local
1282 input_set_abs_params(dev, x_code, x_min, x_max, fuzz, 0); in set_abs_position_params()
1283 input_set_abs_params(dev, y_code, y_min, y_max, fuzz, 0); in set_abs_position_params()
H A Dbcm5974.c513 int fuzz = p->snratio ? (p->max - p->min) / p->snratio : 0; in set_abs() local
514 input_set_abs_params(input, code, p->min, p->max, fuzz, 0); in set_abs()
/linux/drivers/virtio/
H A Dvirtio_input.c183 virtio_cread_le(vi->vdev, struct virtio_input_config, u.abs.fuzz, &fu); in virtinput_cfg_abs()
/linux/drivers/input/
H A Dinput-mt.c19 dev->absinfo[dst].fuzz = 0; in copy_abs()
/linux/drivers/hid/
H A Dhid-multitouch.c598 int fuzz = snratio ? (fmax - fmin) / snratio : 0; in set_abs()
599 input_set_abs_params(input, code, fmin, fmax, fuzz, 0);
595 int fuzz = snratio ? (fmax - fmin) / snratio : 0; set_abs() local

12