Lines Matching refs:lv_indev_gesture_t
42 static lv_indev_gesture_t * init_gesture_info(void);
43 static lv_indev_gesture_motion_t * get_motion(uint8_t id, lv_indev_gesture_t * info);
44 static int8_t get_motion_idx(uint8_t id, lv_indev_gesture_t * info);
45 static void process_touch_event(lv_indev_touch_data_t * touch, lv_indev_gesture_t * info);
46 static void gesture_update_center_point(lv_indev_gesture_t * gesture, int touch_points_nb);
47 static void gesture_calculate_factors(lv_indev_gesture_t * gesture, int touch_points_nb);
344 lv_indev_gesture_t * info; in reset_recognizer()
355 lv_memset(info + motion_arr_sz, 0, sizeof(lv_indev_gesture_t) - motion_arr_sz); in reset_recognizer()
367 static lv_indev_gesture_t * init_gesture_info(void) in init_gesture_info()
369 lv_indev_gesture_t * info; in init_gesture_info()
372 info = lv_malloc(sizeof(lv_indev_gesture_t)); in init_gesture_info()
375 lv_memset(info, 0, sizeof(lv_indev_gesture_t)); in init_gesture_info()
391 static lv_indev_gesture_motion_t * get_motion(uint8_t id, lv_indev_gesture_t * info) in get_motion()
411 static int8_t get_motion_idx(uint8_t id, lv_indev_gesture_t * info) in get_motion_idx()
430 static void process_touch_event(lv_indev_touch_data_t * touch, lv_indev_gesture_t * info) in process_touch_event()
432 lv_indev_gesture_t * g = info; in process_touch_event()
503 static void gesture_update_center_point(lv_indev_gesture_t * gesture, int touch_points_nb) in gesture_update_center_point()
506 lv_indev_gesture_t * g = gesture; in gesture_update_center_point()
563 static void gesture_calculate_factors(lv_indev_gesture_t * gesture, int touch_points_nb) in gesture_calculate_factors()
566 lv_indev_gesture_t * g = gesture; in gesture_calculate_factors()