/Linux-v4.19/drivers/input/touchscreen/ |
D | of_touchscreen.c | 38 int max, int fuzz) in touchscreen_set_params() argument 51 absinfo->fuzz = fuzz; in touchscreen_set_params() 72 unsigned int maximum, fuzz; in touchscreen_parse_properties() local 86 &fuzz); in touchscreen_parse_properties() 88 touchscreen_set_params(input, axis, maximum - 1, fuzz); in touchscreen_parse_properties() 97 &fuzz); in touchscreen_parse_properties() 99 touchscreen_set_params(input, axis, maximum - 1, fuzz); in touchscreen_parse_properties() 109 &fuzz); in touchscreen_parse_properties() 111 touchscreen_set_params(input, axis, maximum, fuzz); in touchscreen_parse_properties()
|
/Linux-v4.19/Documentation/devicetree/bindings/input/touchscreen/ |
D | mms114.txt | 13 - touchscreen-fuzz-x: See [1] 14 - touchscreen-fuzz-y: See [1] 15 - touchscreen-fuzz-pressure: See [1] 33 touchscreen-fuzz-x = <10>; 34 touchscreen-fuzz-y = <10>; 35 touchscreen-fuzz-pressure = <10>;
|
D | tsc2005.txt | 31 touchscreen-fuzz-x = <4>; 32 touchscreen-fuzz-y = <7>; 33 touchscreen-fuzz-pressure = <2>; 54 touchscreen-fuzz-x = <4>; 55 touchscreen-fuzz-y = <7>; 56 touchscreen-fuzz-pressure = <2>;
|
D | touchscreen.txt | 13 - touchscreen-fuzz-x : horizontal noise value of the absolute input 15 - touchscreen-fuzz-y : vertical noise value of the absolute input 17 - touchscreen-fuzz-pressure : pressure noise value of the absolute input 34 touchscreen-fuzz-x and touchscreen-fuzz-y 35 - contact-threshold : deprecated name for touchscreen-fuzz-pressure
|
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.
|
D | cyttsp.txt | 20 - touchscreen-fuzz-x : horizontal noise value of the absolute input device 22 - touchscreen-fuzz-y : vertical noise value of the absolute input device 57 touchscreen-fuzz-x = <4>; 58 touchscreen-fuzz-y = <7>; 82 touchscreen-fuzz-x = <4>; 83 touchscreen-fuzz-y = <7>;
|
D | chipone_icn8318.txt | 15 - touchscreen-fuzz-x : horizontal noise value of the absolute input 17 - touchscreen-fuzz-y : vertical noise value of the absolute input
|
D | edt-ft5x06.txt | 47 - touchscreen-fuzz-x : See touchscreen.txt 48 - touchscreen-fuzz-y : See touchscreen.txt
|
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-v4.19/drivers/input/mouse/ |
D | appletouch.c | 51 int fuzz; /* fuzz touchpad generates */ member 65 .fuzz = 16, 76 .fuzz = 16, 87 .fuzz = 0, 97 .fuzz = 0, 107 .fuzz = 0, 517 dev->info->fuzz, 0); in atp_detect_size() 920 dev->info->fuzz, 0); in atp_probe() 923 dev->info->fuzz, 0); in atp_probe()
|
/Linux-v4.19/Documentation/input/ |
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 155 int fuzz;
|
/Linux-v4.19/arch/arm/boot/dts/ |
D | am3517-som.dtsi | 138 touchscreen-fuzz-x = <4>; 139 touchscreen-fuzz-y = <7>; 140 touchscreen-fuzz-pressure = <2>;
|
D | logicpd-som-lv.dtsi | 119 touchscreen-fuzz-x = <4>; 120 touchscreen-fuzz-y = <7>; 121 touchscreen-fuzz-pressure = <2>;
|
D | logicpd-torpedo-baseboard.dtsi | 338 touchscreen-fuzz-x = <4>; 339 touchscreen-fuzz-y = <7>; 340 touchscreen-fuzz-pressure = <2>;
|
/Linux-v4.19/include/linux/ |
D | input.h | 445 int min, int max, int fuzz, int flat); 465 INPUT_GENERATE_ABS_ACCESSORS(fuzz, fuzz)
|
D | gameport.h | 28 int fuzz; member
|
/Linux-v4.19/include/uapi/linux/ |
D | virtio_input.h | 45 __u32 fuzz; member
|
D | input.h | 89 __s32 fuzz; member
|
/Linux-v4.19/arch/powerpc/sysdev/xive/ |
D | common.c | 462 unsigned int fuzz) in xive_find_target_in_mask() argument 468 first = fuzz % num; in xive_find_target_in_mask() 511 static unsigned int fuzz; in xive_pick_irq_target() local 532 cpu = xive_find_target_in_mask(mask, fuzz++); in xive_pick_irq_target() 536 fuzz--; in xive_pick_irq_target() 540 return xive_find_target_in_mask(affinity, fuzz++); in xive_pick_irq_target()
|
/Linux-v4.19/drivers/misc/lis3lv02d/ |
D | lis3lv02d.c | 687 int max_val, fuzz, flat; in lis3lv02d_joystick_enable() local 715 fuzz = LIS3_DEFAULT_FUZZ_12B; in lis3lv02d_joystick_enable() 718 fuzz = LIS3_DEFAULT_FUZZ_8B; in lis3lv02d_joystick_enable() 721 fuzz = (fuzz * lis3->scale) / LIS3_ACCURACY; in lis3lv02d_joystick_enable() 724 input_set_abs_params(input_dev, ABS_X, -max_val, max_val, fuzz, flat); in lis3lv02d_joystick_enable() 725 input_set_abs_params(input_dev, ABS_Y, -max_val, max_val, fuzz, flat); in lis3lv02d_joystick_enable() 726 input_set_abs_params(input_dev, ABS_Z, -max_val, max_val, fuzz, flat); in lis3lv02d_joystick_enable()
|
/Linux-v4.19/drivers/input/ |
D | input.c | 59 static int input_defuzz_abs_event(int value, int old_val, int fuzz) in input_defuzz_abs_event() argument 61 if (fuzz) { in input_defuzz_abs_event() 62 if (value > old_val - fuzz / 2 && value < old_val + fuzz / 2) in input_defuzz_abs_event() 65 if (value > old_val - fuzz && value < old_val + fuzz) in input_defuzz_abs_event() 68 if (value > old_val - fuzz * 2 && value < old_val + fuzz * 2) in input_defuzz_abs_event() 247 dev->absinfo[code].fuzz); in input_handle_abs_event() 500 int min, int max, int fuzz, int flat) in input_set_abs_params() argument 511 absinfo->fuzz = fuzz; in input_set_abs_params()
|
/Linux-v4.19/drivers/input/joystick/ |
D | analog.c | 127 int fuzz; member 507 input_set_abs_params(input_dev, t, v, (x << 1) - v, port->fuzz, w); in analog_init_device() 626 port->fuzz = (port->speed * ANALOG_FUZZ_MAGIC) / port->loop / 1000 + ANALOG_FUZZ_BITS; in analog_init_port() 665 port->fuzz = gameport->fuzz; in analog_init_port()
|
D | sidewinder.c | 759 int min, max, fuzz, flat; in sw_connect() local 764 fuzz = (bits >> 1) >= 2 ? 1 << ((bits >> 1) - 2) : 0; in sw_connect() 769 min, max, fuzz, flat); in sw_connect()
|
/Linux-v4.19/sound/pci/au88x0/ |
D | au88x0_game.c | 116 gp->fuzz = 64; in vortex_gameport_register()
|
/Linux-v4.19/Documentation/process/ |
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
|