Home
last modified time | relevance | path

Searched refs:c (Results 1 – 25 of 190) sorted by relevance

12345678

/lvgl-3.7.0/src/font/
Dlv_font.mk1 CSRCS += lv_font.c
2 CSRCS += lv_font_fmt_txt.c
3 CSRCS += lv_font_loader.c
5 CSRCS += lv_font_dejavu_16_persian_hebrew.c
6 CSRCS += lv_font_montserrat_8.c
7 CSRCS += lv_font_montserrat_10.c
8 CSRCS += lv_font_montserrat_12.c
9 CSRCS += lv_font_montserrat_12_subpx.c
10 CSRCS += lv_font_montserrat_14.c
11 CSRCS += lv_font_montserrat_16.c
[all …]
/lvgl-3.7.0/src/misc/
Dlv_misc.mk1 CSRCS += lv_anim.c
2 CSRCS += lv_anim_timeline.c
3 CSRCS += lv_area.c
4 CSRCS += lv_async.c
5 CSRCS += lv_bidi.c
6 CSRCS += lv_color.c
7 CSRCS += lv_fs.c
8 CSRCS += lv_gc.c
9 CSRCS += lv_ll.c
10 CSRCS += lv_log.c
[all …]
Dlv_color.h104 # 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 …]
Dlv_math.h122 #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
/lvgl-3.7.0/src/core/
Dlv_core.mk1 CSRCS += lv_disp.c
2 CSRCS += lv_group.c
3 CSRCS += lv_indev.c
4 CSRCS += lv_indev_scroll.c
5 CSRCS += lv_obj.c
6 CSRCS += lv_obj_class.c
7 CSRCS += lv_obj_draw.c
8 CSRCS += lv_obj_pos.c
9 CSRCS += lv_obj_scroll.c
10 CSRCS += lv_obj_style.c
[all …]
/lvgl-3.7.0/src/widgets/
Dlv_widgets.mk1 CSRCS += lv_arc.c
2 CSRCS += lv_bar.c
3 CSRCS += lv_btn.c
4 CSRCS += lv_btnmatrix.c
5 CSRCS += lv_canvas.c
6 CSRCS += lv_checkbox.c
7 CSRCS += lv_dropdown.c
8 CSRCS += lv_img.c
9 CSRCS += lv_label.c
10 CSRCS += lv_line.c
[all …]
Dlv_canvas.c82 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() argument
88 lv_img_buf_set_px_color(&canvas->dsc, x, y, 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() argument
108 lv_img_buf_set_palette(&canvas->dsc, id, c); in lv_canvas_set_palette()
276 lv_color_t c; in lv_canvas_blur_hor() local
284 c = lv_img_buf_get_px_color(&line_img, x_safe, 0, color); in lv_canvas_blur_hor()
287 rsum += c.ch.red; in lv_canvas_blur_hor()
289 gsum += (c.ch.green_h << 3) + c.ch.green_l; in lv_canvas_blur_hor()
291 gsum += c.ch.green; in lv_canvas_blur_hor()
293 bsum += c.ch.blue; in lv_canvas_blur_hor()
[all …]
/lvgl-3.7.0/src/draw/sdl/
Dlv_draw_sdl.mk1 CSRCS += lv_draw_sdl.c
2 CSRCS += lv_draw_sdl_arc.c
3 CSRCS += lv_draw_sdl_bg.c
4 CSRCS += lv_draw_sdl_composite.c
5 CSRCS += lv_draw_sdl_img.c
6 CSRCS += lv_draw_sdl_label.c
7 CSRCS += lv_draw_sdl_line.c
8 CSRCS += lv_draw_sdl_mask.c
9 CSRCS += lv_draw_sdl_polygon.c
10 CSRCS += lv_draw_sdl_rect.c
[all …]
/lvgl-3.7.0/src/draw/sw/
Dlv_draw_sw.mk1 CSRCS += lv_draw_sw.c
2 CSRCS += lv_draw_sw_arc.c
3 CSRCS += lv_draw_sw_blend.c
4 CSRCS += lv_draw_sw_dither.c
5 CSRCS += lv_draw_sw_gradient.c
6 CSRCS += lv_draw_sw_img.c
7 CSRCS += lv_draw_sw_letter.c
8 CSRCS += lv_draw_sw_line.c
9 CSRCS += lv_draw_sw_polygon.c
10 CSRCS += lv_draw_sw_rect.c
[all …]
Dlv_draw_sw_gradient.c40 typedef lv_res_t (*op_cache_t)(lv_grad_t * c, void * ctx);
42 static size_t get_cache_item_size(lv_grad_t * c);
44 static lv_res_t find_oldest_item_life(lv_grad_t * c, void * ctx);
45 static lv_res_t kill_oldest_item(lv_grad_t * c, void * ctx);
46 static lv_res_t find_item(lv_grad_t * c, void * ctx);
47 static void free_item(lv_grad_t * c);
71 static size_t get_cache_item_size(lv_grad_t * c) in get_cache_item_size() argument
73 size_t s = ALIGN(sizeof(*c)) + ALIGN(c->alloc_size * sizeof(lv_color_t)); in get_cache_item_size()
75 s += ALIGN(c->size * sizeof(lv_color32_t)); in get_cache_item_size()
77 s += ALIGN(c->w * sizeof(lv_scolor24_t)); in get_cache_item_size()
[all …]
/lvgl-3.7.0/examples/styles/
Dindex.rst6 :language: c
12 :language: c
18 :language: c
24 :language: c
30 :language: c
36 :language: c
42 :language: c
48 :language: c
54 :language: c
61 :language: c
[all …]
/lvgl-3.7.0/src/draw/
Dlv_draw.mk1 CSRCS += lv_draw_arc.c
2 CSRCS += lv_draw.c
3 CSRCS += lv_draw_img.c
4 CSRCS += lv_draw_label.c
5 CSRCS += lv_draw_line.c
6 CSRCS += lv_draw_mask.c
7 CSRCS += lv_draw_rect.c
8 CSRCS += lv_draw_transform.c
9 CSRCS += lv_draw_layer.c
10 CSRCS += lv_draw_triangle.c
[all …]
/lvgl-3.7.0/src/draw/nxp/vglite/
Dlv_draw_nxp_vglite.mk1 CSRCS += lv_draw_vglite.c
2 CSRCS += lv_draw_vglite_arc.c
3 CSRCS += lv_draw_vglite_blend.c
4 CSRCS += lv_draw_vglite_line.c
5 CSRCS += lv_draw_vglite_rect.c
6 CSRCS += lv_vglite_buf.c
7 CSRCS += lv_vglite_utils.c
/lvgl-3.7.0/src/extra/layouts/grid/
Dlv_grid.c53 static void calc_cols(lv_obj_t * cont, _lv_grid_calc_t * c);
54 static void calc_rows(lv_obj_t * cont, _lv_grid_calc_t * c);
55 static void item_repos(lv_obj_t * item, _lv_grid_calc_t * c, item_repos_hint_t * hint);
346 _lv_grid_calc_t c; in grid_update() local
347 calc(cont, &c); in grid_update()
363 item_repos(item, &c, &hint); in grid_update()
365 calc_free(&c); in grid_update()
426 static void calc_cols(lv_obj_t * cont, _lv_grid_calc_t * c) in calc_cols() argument
431 c->col_num = count_tracks(col_templ); in calc_cols()
432 c->x = lv_mem_buf_get(sizeof(lv_coord_t) * c->col_num); in calc_cols()
[all …]
/lvgl-3.7.0/examples/scroll/
Dindex.rst6 :language: c
11 :language: c
16 :language: c
21 :language: c
26 :language: c
31 :language: c
/lvgl-3.7.0/examples/widgets/chart/
Dindex.rst6 :language: c
13 :language: c
19 :language: c
25 :language: c
31 :language: c
37 :language: c
43 :language: c
/lvgl-3.7.0/examples/layouts/grid/
Dindex.rst5 :language: c
11 :language: c
17 :language: c
23 :language: c
29 :language: c
35 :language: c
/lvgl-3.7.0/examples/widgets/bar/
Dindex.rst5 :language: c
11 :language: c
17 :language: c
23 :language: c
29 :language: c
35 :language: c
/lvgl-3.7.0/docs/overview/
Dcolor.md13 ```c
15 lv_color_t c = lv_color_make(red, green, blue);
18 lv_color_t c = lv_color_hex(0x123456);
21 lv_color_t c = lv_color_hex3(0x123);
27 ```c
29 lv_color_t c = lv_color_hsv_to_rgb(h, s, v);
64 To get the main color use `lv_color_t c = lv_palette_main(LV_PALETTE_...)`.
66 For the lighter variants of a palette color use `lv_color_t c = lv_palette_lighten(LV_PALETTE_..., …
67 For the darker variants of a palette color use `lv_color_t c = lv_palette_darken(LV_PALETTE_..., v)…
71 ```c
[all …]
/lvgl-3.7.0/examples/layouts/flex/
Dindex.rst5 :language: c
11 :language: c
17 :language: c
23 :language: c
29 :language: c
35 :language: c
/lvgl-3.7.0/scripts/
Dcode-format.cfg20 --mode=c
28 --exclude=../src/core/lv_obj_style_gen.c
30 --exclude=../src/extra/libs/gif/gifdec.c
32 --exclude=../src/extra/libs/png/lodepng.c
34 --exclude=../src/extra/libs/qrcode/qrcodegen.c
36 --exclude=../src/extra/libs/sjpg/tjpgd.c
39 --exclude=../src/misc/lv_style_gen.c
42 --exclude=../tests/src/test_cases/_test_template.c
/lvgl-3.7.0/examples/widgets/label/
Dindex.rst6 :language: c
12 :language: c
18 :language: c
24 :language: c
30 :language: c
/lvgl-3.7.0/examples/widgets/menu/
Dindex.rst6 :language: c
12 :language: c
18 :language: c
24 :language: c
30 :language: c
/lvgl-3.7.0/env_support/cmake/
Desp.cmake1 file(GLOB_RECURSE SOURCES ${LVGL_ROOT_DIR}/src/*.c)
17 file(GLOB_RECURSE EXAMPLE_SOURCES ${LVGL_ROOT_DIR}/examples/*.c)
22 file(GLOB_RECURSE DEMO_WIDGETS_SOURCES ${LVGL_ROOT_DIR}/demos/widgets/*.c)
26 file(GLOB_RECURSE DEMO_KEYPAD_AND_ENCODER_SOURCES ${LVGL_ROOT_DIR}/demos/keypad_encoder/*.c)
30 file(GLOB_RECURSE DEMO_BENCHMARK_SOURCES ${LVGL_ROOT_DIR}/demos/benchmark/*.c)
34 file(GLOB_RECURSE DEMO_STRESS_SOURCES ${LVGL_ROOT_DIR}/demos/stress/*.c)
38 file(GLOB_RECURSE DEMO_MUSIC_SOURCES ${LVGL_ROOT_DIR}/demos/music/*.c)
/lvgl-3.7.0/src/draw/nxp/pxp/
Dlv_draw_nxp_pxp.mk1 CSRCS += lv_draw_pxp.c
2 CSRCS += lv_draw_pxp_blend.c
3 CSRCS += lv_gpu_nxp_pxp_osa.c
4 CSRCS += lv_gpu_nxp_pxp.c

12345678