Lines Matching full:max
28 static int32_t find_snap_point_x(const lv_obj_t * obj, int32_t min, int32_t max, int32_t ofs);
29 static int32_t find_snap_point_y(const lv_obj_t * obj, int32_t min, int32_t max, int32_t ofs);
507 * Search for snap point in the min..max range.
510 * @param max ignore snap points greater than this. (Absolute coordinate)
514 * or `LV_COORD_MAX` if there is no snap point in the min..max range
516 static int32_t find_snap_point_x(const lv_obj_t * obj, int32_t min, int32_t max, int32_t ofs) in find_snap_point_x() argument
552 if(x_child >= min && x_child <= max) { in find_snap_point_x()
563 * Search for snap point in the min..max range.
566 * @param max ignore snap points greater than this. (Absolute coordinate)
570 * or `LV_COORD_MAX` if there is no snap point in the min..max range
572 static int32_t find_snap_point_y(const lv_obj_t * obj, int32_t min, int32_t max, int32_t ofs) in find_snap_point_y() argument
608 if(y_child >= min && y_child <= max) { in find_snap_point_y()