Lines Matching defs:raw
195 struct device_float_coords raw;
199 raw = tp_get_combined_touches_delta(tp);
201 raw = tp_get_average_touches_delta(tp);
203 return raw;
209 struct device_float_coords raw;
214 /* Checking for raw pointer motion is enough in this case.
219 raw = tp_get_raw_pointer_motion(tp);
220 return !device_float_is_zero(raw);
226 struct device_float_coords raw;
229 raw = tp_get_raw_pointer_motion(tp);
230 delta = tp_filter_motion(tp, &raw, time);
232 if (!normalized_is_zero(delta) || !device_float_is_zero(raw)) {
235 unaccel = tp_scale_to_xaxis(tp, raw);
359 struct device_float_coords *raw,
383 delta_mm = tp_phys_delta(tp, *raw);
1162 struct device_float_coords raw;
1177 raw = tp_get_average_touches_delta(tp);
1180 delta = tp_filter_scroll(tp, &raw, time);
1186 tp_gesture_apply_scroll_constraints(tp, &raw, &delta, time);
1196 struct device_float_coords raw;
1199 raw = tp_get_average_touches_delta(tp);
1200 delta = tp_filter_motion(tp, &raw, time);
1202 if (!normalized_is_zero(delta) || !device_float_is_zero(raw)) {
1203 unaccel = tp_filter_motion_unaccelerated(tp, &raw, time);