Searched refs:fuzz (Results 1 - 22 of 22) sorted by relevance

/linux-master/drivers/input/
H A Dtouchscreen.c35 int min, int max, int fuzz)
49 absinfo->fuzz = fuzz;
71 unsigned int minimum, maximum, fuzz; local
88 data_present |= touchscreen_get_prop_u32(dev, "touchscreen-fuzz-x",
90 &fuzz);
92 touchscreen_set_params(input, axis_x, minimum, maximum - 1, fuzz);
101 data_present |= touchscreen_get_prop_u32(dev, "touchscreen-fuzz-y",
103 &fuzz);
105 touchscreen_set_params(input, axis_y, minimum, maximum - 1, fuzz);
33 touchscreen_set_params(struct input_dev *dev, unsigned long axis, int min, int max, int fuzz) argument
[all...]
H A Dinput.c70 static int input_defuzz_abs_event(int value, int old_val, int fuzz) argument
72 if (fuzz) {
73 if (value > old_val - fuzz / 2 && value < old_val + fuzz / 2)
76 if (value > old_val - fuzz && value < old_val + fuzz)
79 if (value > old_val - fuzz * 2 && value < old_val + fuzz * 2)
225 dev->absinfo[code].fuzz);
499 int min, int max, int fuzz, in
498 input_set_abs_params(struct input_dev *dev, unsigned int axis, int min, int max, int fuzz, int flat) argument
[all...]
H A Dinput-mt.c19 dev->absinfo[dst].fuzz = 0;
/linux-master/include/uapi/linux/
H A Dvirtio_input.h45 __le32 fuzz; member in struct:virtio_input_absinfo
H A Dinput.h71 * @fuzz: specifies fuzz value that is used to filter noise from
97 __s32 fuzz; member in struct:input_absinfo
/linux-master/drivers/input/joystick/
H A Dadc-joystick.c19 s32 fuzz; member in struct:adc_joystick_axis
171 fwnode_property_read_u32(child, "abs-fuzz", &axes[i].fuzz);
176 axes[i].fuzz, axes[i].flat);
H A Danalog.c108 int fuzz; member in struct:analog_port
413 input_set_abs_params(input_dev, t, v, (x << 1) - v, port->fuzz, w);
532 port->fuzz = (NSEC_PER_MSEC * ANALOG_FUZZ_MAGIC) / port->loop / 1000 + ANALOG_FUZZ_BITS;
571 port->fuzz = gameport->fuzz;
H A Dsidewinder.c750 int min, max, fuzz, flat; local
755 fuzz = (bits >> 1) >= 2 ? 1 << ((bits >> 1) - 2) : 0;
760 min, max, fuzz, flat);
H A Da3d.c349 adc->fuzz = 1;
/linux-master/include/linux/
H A Dinput.h84 * about absolute axes (current value, min, max, flat, fuzz,
477 int min, int max, int fuzz, int flat);
499 INPUT_GENERATE_ABS_ACCESSORS(fuzz, fuzz)
H A Dgameport.h24 int fuzz; member in struct:gameport
/linux-master/sound/pci/au88x0/
H A Dau88x0_game.c103 gp->fuzz = 64;
/linux-master/drivers/input/mouse/
H A Dappletouch.c37 int fuzz; /* fuzz touchpad generates */ member in struct:atp_info
51 .fuzz = 16,
62 .fuzz = 16,
73 .fuzz = 0,
83 .fuzz = 0,
93 .fuzz = 0,
503 dev->info->fuzz, 0);
906 dev->info->fuzz, 0);
909 dev->info->fuzz,
[all...]
H A Dsynaptics.c1244 int fuzz = SYN_CAP_REDUCED_FILTERING(info->ext_cap_0c) ? local
1247 input_set_abs_params(dev, x_code, x_min, x_max, fuzz, 0);
1248 input_set_abs_params(dev, y_code, y_min, y_max, fuzz, 0);
1324 * input_mt_init_slots() resets the fuzz to 0, leading to a
H A Dbcm5974.c511 int fuzz = p->snratio ? (p->max - p->min) / p->snratio : 0; local
512 input_set_abs_params(input, code, p->min, p->max, fuzz, 0);
/linux-master/drivers/misc/lis3lv02d/
H A Dlis3lv02d.c684 int max_val, fuzz, flat; local
705 fuzz = LIS3_DEFAULT_FUZZ_12B;
708 fuzz = LIS3_DEFAULT_FUZZ_8B;
711 fuzz = (fuzz * lis3->scale) / LIS3_ACCURACY;
714 input_set_abs_params(input_dev, ABS_X, -max_val, max_val, fuzz, flat);
715 input_set_abs_params(input_dev, ABS_Y, -max_val, max_val, fuzz, flat);
716 input_set_abs_params(input_dev, ABS_Z, -max_val, max_val, fuzz, flat);
/linux-master/arch/powerpc/sysdev/xive/
H A Dcommon.c549 unsigned int fuzz)
553 /* Pick up a starting point CPU in the mask based on fuzz */
555 first = fuzz % num;
597 static unsigned int fuzz; local
618 cpu = xive_find_target_in_mask(mask, fuzz++);
622 fuzz--;
626 return xive_find_target_in_mask(affinity, fuzz++);
548 xive_find_target_in_mask(const struct cpumask *mask, unsigned int fuzz) argument
/linux-master/drivers/virtio/
H A Dvirtio_input.c180 virtio_cread_le(vi->vdev, struct virtio_input_config, u.abs.fuzz, &fu);
/linux-master/drivers/hid/
H A Dhid-multitouch.c521 int fuzz = snratio ? (fmax - fmin) / snratio : 0; local
522 input_set_abs_params(input, code, fmin, fmax, fuzz, 0);
H A Dwacom_wac.c1919 struct hid_field *field, __u8 type, __u16 code, int fuzz)
1948 input_set_abs_params(input, code, fmin, fmax, fuzz, 0);
1918 wacom_map_usage(struct input_dev *input, struct hid_usage *usage, struct hid_field *field, __u8 type, __u16 code, int fuzz) argument
/linux-master/sound/pci/
H A Dazt3328.c1802 gp->fuzz = 16; /* seems ok */
/linux-master/sound/pci/trident/
H A Dtrident_main.c3169 gp->fuzz = 64;

Completed in 247 milliseconds