• Home
  • Raw
  • Download

Lines Matching refs:abs

204 	} abs;  member
659 mm.x = evdev_convert_to_mm(device->abs.absinfo_x, x); in evdev_convert_xy_to_mm()
660 mm.y = evdev_convert_to_mm(device->abs.absinfo_y, y); in evdev_convert_xy_to_mm()
883 if (device->abs.absinfo_x == NULL || in evdev_device_unit_delta_to_mm()
884 device->abs.absinfo_y == NULL) { in evdev_device_unit_delta_to_mm()
891 absx = device->abs.absinfo_x; in evdev_device_unit_delta_to_mm()
892 absy = device->abs.absinfo_y; in evdev_device_unit_delta_to_mm()
911 if (device->abs.absinfo_x == NULL || in evdev_device_units_to_mm()
912 device->abs.absinfo_y == NULL) { in evdev_device_units_to_mm()
919 absx = device->abs.absinfo_x; in evdev_device_units_to_mm()
920 absy = device->abs.absinfo_y; in evdev_device_units_to_mm()
939 if (device->abs.absinfo_x == NULL || in evdev_device_mm_to_units()
940 device->abs.absinfo_y == NULL) { in evdev_device_mm_to_units()
947 absx = device->abs.absinfo_x; in evdev_device_mm_to_units()
948 absy = device->abs.absinfo_y; in evdev_device_mm_to_units()
963 if (device->abs.absinfo_x == NULL || in evdev_phys_rect_to_units()
964 device->abs.absinfo_y == NULL) { in evdev_phys_rect_to_units()
971 absx = device->abs.absinfo_x; in evdev_phys_rect_to_units()
972 absy = device->abs.absinfo_y; in evdev_phys_rect_to_units()
988 x = device->abs.absinfo_x; in evdev_device_init_abs_range_warnings()
989 y = device->abs.absinfo_y; in evdev_device_init_abs_range_warnings()
990 width = device->abs.dimensions.x; in evdev_device_init_abs_range_warnings()
991 height = device->abs.dimensions.y; in evdev_device_init_abs_range_warnings()
993 device->abs.warning_range.min.x = x->minimum - 0.05 * width; in evdev_device_init_abs_range_warnings()
994 device->abs.warning_range.min.y = y->minimum - 0.05 * height; in evdev_device_init_abs_range_warnings()
995 device->abs.warning_range.max.x = x->maximum + 0.05 * width; in evdev_device_init_abs_range_warnings()
996 device->abs.warning_range.max.y = y->maximum + 0.05 * height; in evdev_device_init_abs_range_warnings()
999 ratelimit_init(&device->abs.warning_range.range_warn_limit, in evdev_device_init_abs_range_warnings()
1014 min = device->abs.warning_range.min.x; in evdev_device_check_abs_axis_range()
1015 max = device->abs.warning_range.max.x; in evdev_device_check_abs_axis_range()
1019 min = device->abs.warning_range.min.y; in evdev_device_check_abs_axis_range()
1020 max = device->abs.warning_range.max.y; in evdev_device_check_abs_axis_range()
1028 &device->abs.warning_range.range_warn_limit, in evdev_device_check_abs_axis_range()