/linux-3.4.99/Documentation/input/ |
D | gameport-programming.txt | 88 gameport.fuzz = 8; 91 The only confusing thing here is the fuzz value. Best determined by 93 gameports can set this to zero, most common have fuzz between 8 and 32. 94 See analog.c and input.c for handling of fuzz - the fuzz value determines 137 int fuzz;
|
D | gpio-tilt.txt | 75 .fuzz = 0,
|
/linux-3.4.99/include/linux/input/ |
D | gpio_tilt.h | 16 int fuzz; member
|
/linux-3.4.99/drivers/misc/lis3lv02d/ |
D | lis3lv02d.c | 656 int max_val, fuzz, flat; in lis3lv02d_joystick_enable() local 684 fuzz = LIS3_DEFAULT_FUZZ_12B; in lis3lv02d_joystick_enable() 687 fuzz = LIS3_DEFAULT_FUZZ_8B; in lis3lv02d_joystick_enable() 690 fuzz = (fuzz * lis3->scale) / LIS3_ACCURACY; in lis3lv02d_joystick_enable() 693 input_set_abs_params(input_dev, ABS_X, -max_val, max_val, fuzz, flat); in lis3lv02d_joystick_enable() 694 input_set_abs_params(input_dev, ABS_Y, -max_val, max_val, fuzz, flat); in lis3lv02d_joystick_enable() 695 input_set_abs_params(input_dev, ABS_Z, -max_val, max_val, fuzz, flat); in lis3lv02d_joystick_enable()
|
/linux-3.4.99/drivers/input/ |
D | input.c | 56 static int input_defuzz_abs_event(int value, int old_val, int fuzz) in input_defuzz_abs_event() argument 58 if (fuzz) { in input_defuzz_abs_event() 59 if (value > old_val - fuzz / 2 && value < old_val + fuzz / 2) in input_defuzz_abs_event() 62 if (value > old_val - fuzz && value < old_val + fuzz) in input_defuzz_abs_event() 65 if (value > old_val - fuzz * 2 && value < old_val + fuzz * 2) in input_defuzz_abs_event() 200 dev->absinfo[code].fuzz); in input_handle_abs_event() 412 int min, int max, int fuzz, int flat) in input_set_abs_params() argument 423 absinfo->fuzz = fuzz; in input_set_abs_params()
|
/linux-3.4.99/drivers/input/joystick/ |
D | analog.c | 126 int fuzz; member 482 input_set_abs_params(input_dev, t, v, (x << 1) - v, port->fuzz, w); in analog_init_device() 601 port->fuzz = (port->speed * ANALOG_FUZZ_MAGIC) / port->loop / 1000 + ANALOG_FUZZ_BITS; in analog_init_port() 640 port->fuzz = gameport->fuzz; in analog_init_port()
|
D | sidewinder.c | 764 int min, max, fuzz, flat; in sw_connect() local 769 fuzz = (bits >> 1) >= 2 ? 1 << ((bits >> 1) - 2) : 0; in sw_connect() 774 min, max, fuzz, flat); in sw_connect()
|
D | a3d.c | 369 adc->fuzz = 1; in a3d_connect()
|
/linux-3.4.99/drivers/input/mouse/ |
D | bcm5974.c | 203 int fuzz; /* logical noise value */ member 420 0, cfg->p.dim, cfg->p.fuzz, 0); in setup_events_to_report() 422 0, cfg->w.dim, cfg->w.fuzz, 0); in setup_events_to_report() 424 0, cfg->x.dim, cfg->x.fuzz, 0); in setup_events_to_report() 426 0, cfg->y.dim, cfg->y.fuzz, 0); in setup_events_to_report()
|
D | synaptics.c | 1193 int fuzz = SYN_CAP_REDUCED_FILTERING(priv->ext_cap_0c) ? in set_abs_position_params() local 1196 input_set_abs_params(dev, x_code, x_min, x_max, fuzz, 0); in set_abs_position_params() 1197 input_set_abs_params(dev, y_code, y_min, y_max, fuzz, 0); in set_abs_position_params()
|
/linux-3.4.99/sound/pci/au88x0/ |
D | au88x0_game.c | 115 gp->fuzz = 64; in vortex_gameport_register()
|
/linux-3.4.99/include/linux/ |
D | input.h | 73 __s32 fuzz; member 1559 int min, int max, int fuzz, int flat); 1579 INPUT_GENERATE_ABS_ACCESSORS(fuzz, fuzz)
|
D | gameport.h | 29 int fuzz; member
|
/linux-3.4.99/drivers/input/misc/ |
D | gpio_tilt_polled.c | 152 pdata->axes[i].fuzz, pdata->axes[i].flat); in gpio_tilt_polled_probe()
|
/linux-3.4.99/Documentation/ |
D | applying-patches.txt | 114 it'll tell you about it by saying the patch applied with 'fuzz'. 119 When patch encounters a change that it can't fix up with fuzz it rejects it 127 never see a fuzz or reject message from patch. If you do see such messages 142 If you get "Hunk #2 succeeded at 1887 with fuzz 2 (offset 7 lines)." or a 153 fuzz its way through. This will generate a .rej file with the change that
|
/linux-3.4.99/drivers/hid/ |
D | hid-multitouch.c | 281 int fuzz = snratio ? (fmax - fmin) / snratio : 0; in set_abs() local 282 input_set_abs_params(input, code, fmin, fmax, fuzz, 0); in set_abs()
|
/linux-3.4.99/sound/pci/ |
D | azt3328.c | 1921 gp->fuzz = 16; /* seems ok */ in snd_azf3328_gameport()
|
/linux-3.4.99/Documentation/cgroups/ |
D | memory.txt | 493 method and doesn't show 'exact' value of memory(and swap) usage, it's an fuzz
|
/linux-3.4.99/sound/pci/trident/ |
D | trident_main.c | 3209 gp->fuzz = 64; in snd_trident_create_gameport()
|