/lvgl-3.5.0/src/misc/ |
D | lv_color.h | 104 # define LV_COLOR_SET_R1(c, v) (c).ch.red = (uint8_t)((v) & 0x1) argument 105 # define LV_COLOR_SET_G1(c, v) (c).ch.green = (uint8_t)((v) & 0x1) argument 106 # define LV_COLOR_SET_B1(c, v) (c).ch.blue = (uint8_t)((v) & 0x1) argument 107 # define LV_COLOR_SET_A1(c, v) do {} while(0) argument 109 # define LV_COLOR_GET_R1(c) (c).ch.red argument 110 # define LV_COLOR_GET_G1(c) (c).ch.green argument 111 # define LV_COLOR_GET_B1(c) (c).ch.blue argument 112 # define LV_COLOR_GET_A1(c) 0xFF argument 117 # define LV_COLOR_SET_R8(c, v) (c).ch.red = (uint8_t)((v) & 0x7U) argument 118 # define LV_COLOR_SET_G8(c, v) (c).ch.green = (uint8_t)((v) & 0x7U) argument [all …]
|
D | lv_math.h | 122 #define LV_MIN3(a, b, c) (LV_MIN(LV_MIN(a,b), c)) argument 123 #define LV_MIN4(a, b, c, d) (LV_MIN(LV_MIN(a,b), LV_MIN(c,d))) argument 126 #define LV_MAX3(a, b, c) (LV_MAX(LV_MAX(a,b), c)) argument 127 #define LV_MAX4(a, b, c, d) (LV_MAX(LV_MAX(a,b), LV_MAX(c,d))) argument
|
D | lv_utils.c | 58 int32_t c; in _lv_utils_bsearch() local
|
D | lv_color.c | 126 lv_color_t lv_color_lighten(lv_color_t c, lv_opa_t lvl) in lv_color_lighten() 131 lv_color_t lv_color_darken(lv_color_t c, lv_opa_t lvl) in lv_color_darken() 136 lv_color_t lv_color_change_lightness(lv_color_t c, lv_opa_t lvl) in lv_color_change_lightness()
|
D | lv_txt_ap.c | 256 static uint32_t lv_ap_get_char_index(uint16_t c) in lv_ap_get_char_index() 296 static bool lv_txt_is_arabic_vowel(uint16_t c) in lv_txt_is_arabic_vowel()
|
D | lv_txt.c | 382 bool _lv_txt_is_cmd(lv_text_cmd_state_t * state, uint32_t c) in _lv_txt_is_cmd() 563 static uint32_t lv_txt_utf8_conv_wc(uint32_t c) in lv_txt_utf8_conv_wc() 786 static uint32_t lv_txt_iso8859_1_conv_wc(uint32_t c) in lv_txt_iso8859_1_conv_wc()
|
/lvgl-3.5.0/scripts/release/ |
D | com.py | 11 def cmd(c, ask_on_err = True): argument 74 def push(c): argument
|
/lvgl-3.5.0/src/draw/sw/ |
D | lv_draw_sw_gradient.c | 72 static size_t get_cache_item_size(lv_grad_t * c) in get_cache_item_size() 110 static lv_res_t find_oldest_item_life(lv_grad_t * c, void * ctx) in find_oldest_item_life() 117 static void free_item(lv_grad_t * c) in free_item() 140 static lv_res_t kill_oldest_item(lv_grad_t * c, void * ctx) in kill_oldest_item() 151 static lv_res_t find_item(lv_grad_t * c, void * ctx) in find_item()
|
D | lv_draw_sw_dither.c | 178 #define FS_APPLY(d, s, c) d.r = (int8_t)(s.r * c) >> 4; d.g = (int8_t)(s.g * c) >> 4; d.b = (int8_t… in lv_dither_err_diff_ver() argument 179 #define FS_COMPONENTS3(A, OP, B, b, C, c, D, d) \ in lv_dither_err_diff_ver() argument
|
/lvgl-3.5.0/src/extra/libs/bmp/ |
D | lv_bmp.c | 221 lv_color32_t * c = (lv_color32_t *)&buf[i * 4]; in decoder_read_line() local 233 lv_color32_t * c = (lv_color32_t *)&buf[i * 4]; in decoder_read_line() local
|
/lvgl-3.5.0/demos/stress/ |
D | lv_demo_stress.c | 100 lv_obj_t * c = lv_colorwheel_create(t, true); in obj_test_task_cb() local
|
/lvgl-3.5.0/src/draw/ |
D | lv_img_buf.c | 240 void lv_img_buf_set_px_color(lv_img_dsc_t * dsc, lv_coord_t x, lv_coord_t y, lv_color_t c) in lv_img_buf_set_px_color() 309 void lv_img_buf_set_palette(lv_img_dsc_t * dsc, uint8_t id, lv_color_t c) in lv_img_buf_set_palette()
|
D | lv_draw_mask.c | 1329 static void circ_init(lv_point_t * c, lv_coord_t * tmp, lv_coord_t radius) in circ_init() 1341 static bool circ_cont(lv_point_t * c) in circ_cont() 1351 static void circ_next(lv_point_t * c, lv_coord_t * tmp) in circ_next() 1364 static void circ_calc_aa4(_lv_draw_mask_radius_circle_dsc_t * c, lv_coord_t radius) in circ_calc_aa4() 1512 static lv_opa_t * get_next_line(_lv_draw_mask_radius_circle_dsc_t * c, lv_coord_t y, lv_coord_t * l… in get_next_line()
|
/lvgl-3.5.0/src/extra/libs/png/ |
D | lv_png.c | 217 lv_color_t c; in convert_color_depth() local
|
/lvgl-3.5.0/src/widgets/ |
D | lv_canvas.h | 80 static inline void lv_canvas_set_px(lv_obj_t * canvas, lv_coord_t x, lv_coord_t y, lv_color_t c) in lv_canvas_set_px()
|
D | lv_canvas.c | 82 void lv_canvas_set_px_color(lv_obj_t * obj, lv_coord_t x, lv_coord_t y, lv_color_t c) in lv_canvas_set_px_color() 102 void lv_canvas_set_palette(lv_obj_t * obj, uint8_t id, lv_color_t c) in lv_canvas_set_palette() 278 lv_color_t c; in lv_canvas_blur_hor() local 405 lv_color_t c; in lv_canvas_blur_ver() local
|
D | lv_textarea.c | 100 void lv_textarea_add_char(lv_obj_t * obj, uint32_t c) in lv_textarea_add_char() 174 uint32_t c = _lv_txt_encoded_next(txt, &i); in lv_textarea_add_text() local 287 uint32_t c = _lv_txt_encoded_next(txt, &i); in lv_textarea_set_text() local 877 uint32_t c = *((uint32_t *)lv_event_get_param(e)); /*uint32_t because can be UTF-8*/ in lv_textarea_event() local 1008 static bool char_is_accepted(lv_obj_t * obj, uint32_t c) in char_is_accepted()
|
D | lv_arc.c | 551 char c = *((char *)lv_event_get_param(e)); in lv_arc_event() local 715 lv_point_t c; in inv_arc_area() local 729 lv_point_t c; in inv_knob_area() local
|
D | lv_slider.c | 310 char c = *((char *)lv_event_get_param(e)); in lv_slider_event() local
|
D | lv_roller.c | 245 uint32_t c; in lv_roller_get_selected_str() local 392 char c = *((char *)lv_event_get_param(e)); in lv_roller_event() local
|
/lvgl-3.5.0/src/extra/libs/qrcode/ |
D | lv_qrcode.c | 81 lv_color_t c; in lv_qrcode_update() local
|
/lvgl-3.5.0/src/extra/layouts/grid/ |
D | lv_grid.c | 353 _lv_grid_calc_t c; in grid_update() local 433 static void calc_cols(lv_obj_t * cont, _lv_grid_calc_t * c) in calc_cols() 505 static void calc_rows(lv_obj_t * cont, _lv_grid_calc_t * c) in calc_rows() 582 static void item_repos(lv_obj_t * item, _lv_grid_calc_t * c, item_repos_hint_t * hint) in item_repos()
|
/lvgl-3.5.0/src/core/ |
D | lv_obj.c | 734 char c = *((char *)lv_event_get_param(e)); in lv_obj_event() local 753 char c = *((char *)lv_event_get_param(e)); in lv_obj_event() local
|
/lvgl-3.5.0/src/extra/widgets/calendar/ |
D | lv_calendar.c | 133 uint8_t c; in lv_calendar_set_showed_date() local
|
/lvgl-3.5.0/src/extra/widgets/spinbox/ |
D | lv_spinbox.c | 418 uint32_t c = *((uint32_t *)lv_event_get_param(e)); /*uint32_t because can be UTF-8*/ in lv_spinbox_event() local
|