Searched refs:LV_MAX4 (Results 1 – 6 of 6) sorted by relevance
/lvgl-latest/src/misc/ |
D | lv_matrix.c | 203 res.x2 = (int32_t)(LV_MAX4(p[0].x, p[1].x, p[2].x, p[3].x)); in lv_matrix_transform_area() 205 res.y2 = (int32_t)(LV_MAX4(p[0].y, p[1].y, p[2].y, p[3].y)); in lv_matrix_transform_area()
|
D | lv_math.h | 165 #define LV_MAX4(a, b, c, d) (LV_MAX(LV_MAX(a,b), LV_MAX(c,d))) macro
|
/lvgl-latest/src/draw/ |
D | lv_draw_image.c | 271 res->x2 = LV_MAX4(p[0].x, p[1].x, p[2].x, p[3].x) - 1; in lv_image_buf_get_transformed_area() 273 res->y2 = LV_MAX4(p[0].y, p[1].y, p[2].y, p[3].y) - 1; in lv_image_buf_get_transformed_area()
|
/lvgl-latest/src/widgets/switch/ |
D | lv_switch.c | 158 int32_t knob_size = LV_MAX4(knob_left, knob_right, knob_bottom, knob_top); in lv_switch_event()
|
/lvgl-latest/src/widgets/arc/ |
D | lv_arc.c | 690 int32_t bg_pad = LV_MAX4(bg_left, bg_right, bg_top, bg_bottom); in lv_arc_event() 696 int32_t knob_pad = LV_MAX4(knob_left, knob_right, knob_top, knob_bottom) + 2; in lv_arc_event() 738 int32_t indic_r = arc_r - LV_MAX4(left_indic, right_indic, top_indic, bottom_indic); in lv_arc_draw()
|
/lvgl-latest/src/core/ |
D | lv_obj_pos.c | 817 area->x2 = LV_MAX4(p[0].x, p[1].x, p[2].x, p[3].x); in lv_obj_get_transformed_area() 819 area->y2 = LV_MAX4(p[0].y, p[1].y, p[2].y, p[3].y); in lv_obj_get_transformed_area()
|