/lvgl-latest/src/misc/ |
D | lv_area.h | 38 lv_coord_t x; member 260 #define _LV_COORD_TYPE(x) ((x) & _LV_COORD_TYPE_MASK) /*Extract type specifiers*/ argument 261 #define _LV_COORD_PLAIN(x) ((x) & ~_LV_COORD_TYPE_MASK) /*Remove type specifiers*/ argument 267 #define LV_COORD_IS_PX(x) (_LV_COORD_TYPE(x) == _LV_COORD_TYPE_PX || \ argument 269 #define LV_COORD_IS_SPEC(x) (_LV_COORD_TYPE(x) == _LV_COORD_TYPE_SPEC ? true : false) argument 271 #define LV_COORD_SET_SPEC(x) ((x) | _LV_COORD_TYPE_SPEC) argument 274 #define LV_PCT(x) (x < 0 ? LV_COORD_SET_SPEC(1000 - (x)) : LV_COORD_SET_SPEC(x)) argument 275 #define LV_COORD_IS_PCT(x) ((LV_COORD_IS_SPEC(x) && _LV_COORD_PLAIN(x) <= 2000) ? true : false) argument 276 #define LV_COORD_GET_PCT(x) (_LV_COORD_PLAIN(x) > 1000 ? 1000 - _LV_COORD_PLAIN(x) : _LV_COORD_… argument 294 static inline lv_coord_t lv_pct(lv_coord_t x) in lv_pct()
|
D | lv_types.h | 72 #define LV_UNUSED(x) ((void)x) argument 74 #define _LV_CONCAT(x, y) x ## y argument 75 #define LV_CONCAT(x, y) _LV_CONCAT(x, y) argument 77 #define _LV_CONCAT3(x, y, z) x ## y ## z argument 78 #define LV_CONCAT3(x, y, z) _LV_CONCAT3(x, y, z) argument
|
D | lv_math.c | 109 void LV_ATTRIBUTE_FAST_MEM lv_sqrt(uint32_t x, lv_sqrt_res_t * q, uint32_t mask) in lv_sqrt() 132 uint16_t lv_atan2(int x, int y) in lv_atan2() 236 int32_t lv_map(int32_t x, int32_t min_in, int32_t max_in, int32_t min_out, int32_t max_out) in lv_map() 262 uint32_t x = a; in lv_rand() local
|
D | lv_math.h | 131 #define LV_ABS(x) ((x) > 0 ? (x) : (-(x))) argument 132 #define LV_UDIV255(x) (((x) * 0x8081U) >> 0x17) argument
|
/lvgl-latest/tests/src/ |
D | lv_test_helpers.h | 6 #define LV_HEAP_CHECK(x) do {} while(0) argument 10 #define LV_HEAP_CHECK(x) x argument
|
D | lv_test_indev.c | 26 void lv_test_mouse_move_to(lv_coord_t x, lv_coord_t y) in lv_test_mouse_move_to() 32 void lv_test_mouse_move_by(lv_coord_t x, lv_coord_t y) in lv_test_mouse_move_by() 48 void lv_test_mouse_click_at(lv_coord_t x, lv_coord_t y) in lv_test_mouse_click_at()
|
/lvgl-latest/src/draw/sw/ |
D | lv_draw_sw_dither.c | 19 void LV_ATTRIBUTE_FAST_MEM lv_dither_none(lv_grad_t * grad, lv_coord_t x, lv_coord_t y, lv_coord_t … in lv_dither_none() 41 void LV_ATTRIBUTE_FAST_MEM lv_dither_ordered_hor(lv_grad_t * grad, lv_coord_t x, lv_coord_t y, lv_c… in lv_dither_ordered_hor() 65 void LV_ATTRIBUTE_FAST_MEM lv_dither_ordered_ver(lv_grad_t * grad, lv_coord_t x, lv_coord_t y, lv_c… in lv_dither_ordered_ver() 120 for(lv_coord_t x = 1; x < grad->size - 1; x++) { in lv_dither_err_diff_hor() local 196 for(lv_coord_t x = 1; x < w; x++) { in lv_dither_err_diff_ver() local
|
D | lv_draw_sw_blend.c | 84 #define MAP_NORMAL_MASK_PX(x) \ argument 215 int32_t x; in fill_set_px() local 249 int32_t x; in fill_normal() local 456 int32_t x; in fill_argb() local 542 int32_t x; in fill_blended() local 615 int32_t x; in map_set_px() local 650 int32_t x; in map_normal() local 748 int32_t x; in map_argb() local 886 int32_t x; in map_blended() local
|
/lvgl-latest/src/widgets/ |
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() 92 void lv_canvas_set_px_opa(lv_obj_t * obj, lv_coord_t x, lv_coord_t y, lv_opa_t opa) in lv_canvas_set_px_opa() 116 lv_color_t lv_canvas_get_px(lv_obj_t * obj, lv_coord_t x, lv_coord_t y) in lv_canvas_get_px() 138 void lv_canvas_copy_buf(lv_obj_t * obj, const void * to_copy, lv_coord_t x, lv_coord_t y, lv_coord_… in lv_canvas_copy_buf() 172 int32_t x; in lv_canvas_transform() local 266 lv_coord_t x; in lv_canvas_blur_hor() local 393 lv_coord_t x; in lv_canvas_blur_ver() local 501 uint32_t x; in lv_canvas_fill_bg() local 514 void lv_canvas_draw_rect(lv_obj_t * canvas, lv_coord_t x, lv_coord_t y, lv_coord_t w, lv_coord_t h, in lv_canvas_draw_rect() 558 void lv_canvas_draw_text(lv_obj_t * canvas, lv_coord_t x, lv_coord_t y, lv_coord_t max_w, in lv_canvas_draw_text() [all …]
|
/lvgl-latest/src/hal/ |
D | lv_hal_disp.c | 619 …px_cb_alpha1(lv_disp_drv_t * disp_drv, uint8_t * buf, lv_coord_t buf_w, lv_coord_t x, lv_coord_t y, in set_px_cb_alpha1() 633 …px_cb_alpha2(lv_disp_drv_t * disp_drv, uint8_t * buf, lv_coord_t buf_w, lv_coord_t x, lv_coord_t y, in set_px_cb_alpha2() 647 …px_cb_alpha4(lv_disp_drv_t * disp_drv, uint8_t * buf, lv_coord_t buf_w, lv_coord_t x, lv_coord_t y, in set_px_cb_alpha4() 661 …px_cb_alpha8(lv_disp_drv_t * disp_drv, uint8_t * buf, lv_coord_t buf_w, lv_coord_t x, lv_coord_t y, in set_px_cb_alpha8() 675 static void set_px_alpha_generic(lv_img_dsc_t * d, lv_coord_t x, lv_coord_t y, lv_color_t color, lv… in set_px_alpha_generic() 690 lv_coord_t x, lv_coord_t y, in set_px_true_color_alpha()
|
/lvgl-latest/examples/widgets/canvas/ |
D | lv_example_canvas_2.c | 35 uint32_t x; in lv_example_canvas_2() local
|
/lvgl-latest/src/extra/libs/tiny_ttf/ |
D | lv_tiny_ttf.c | 14 #define STBTT_malloc(x, u) ((void)(u), lv_mem_alloc(x)) argument 15 #define STBTT_free(x, u) ((void)(u), lv_mem_free(x)) argument 16 #define TTF_MALLOC(x) (lv_mem_alloc(x)) argument 17 #define TTF_FREE(x) (lv_mem_free(x)) argument 59 #define STBTT_STREAM_SEEK(s, x) ttf_cb_stream_seek(s, x); argument 60 #define STBTT_STREAM_READ(s, x, y) ttf_cb_stream_read(s, x, y); argument
|
/lvgl-latest/examples/widgets/obj/ |
D | lv_example_obj_2.c | 14 lv_coord_t x = lv_obj_get_x(obj) + vect.x; in drag_event_handler() local
|
/lvgl-latest/src/draw/ |
D | lv_img_buf.c | 41 lv_color_t lv_img_buf_get_px_color(const lv_img_dsc_t * dsc, lv_coord_t x, lv_coord_t y, lv_color_t… in lv_img_buf_get_px_color() 100 lv_opa_t lv_img_buf_get_px_alpha(const lv_img_dsc_t * dsc, lv_coord_t x, lv_coord_t y) in lv_img_buf_get_px_alpha() 155 void lv_img_buf_set_px_alpha(const lv_img_dsc_t * dsc, lv_coord_t x, lv_coord_t y, lv_opa_t opa) in lv_img_buf_set_px_alpha() 206 void lv_img_buf_set_px_color(const lv_img_dsc_t * dsc, lv_coord_t x, lv_coord_t y, lv_color_t c) in lv_img_buf_set_px_color()
|
D | lv_img_decoder.c | 176 lv_res_t lv_img_decoder_read_line(lv_img_decoder_dsc_t * dsc, lv_coord_t x, lv_coord_t y, lv_coord_… in lv_img_decoder_read_line() 480 …mg_decoder_built_in_read_line(lv_img_decoder_t * decoder, lv_img_decoder_dsc_t * dsc, lv_coord_t x, in lv_img_decoder_built_in_read_line() 537 static lv_res_t lv_img_decoder_built_in_line_true_color(lv_img_decoder_dsc_t * dsc, lv_coord_t x, l… in lv_img_decoder_built_in_line_true_color() 562 static lv_res_t lv_img_decoder_built_in_line_alpha(lv_img_decoder_dsc_t * dsc, lv_coord_t x, lv_coo… in lv_img_decoder_built_in_line_alpha() 653 static lv_res_t lv_img_decoder_built_in_line_indexed(lv_img_decoder_dsc_t * dsc, lv_coord_t x, lv_c… in lv_img_decoder_built_in_line_indexed()
|
D | lv_draw_arc.c | 57 void lv_draw_arc_get_area(lv_coord_t x, lv_coord_t y, uint16_t radius, uint16_t start_angle, uint1… in lv_draw_arc_get_area()
|
/lvgl-latest/src/extra/libs/qrcode/ |
D | qrcodegen.c | 397 testable uint8_t finiteFieldMultiply(uint8_t x, uint8_t y) { in finiteFieldMultiply() 581 int x = right - j; // Actual x coordinate in drawCodewords() local 607 for (int x = 0; x < qrsize; x++) { in applyMask() local 640 for (int x = 0; x < qrsize; x++) { in getPenaltyScore() local 662 for (int x = 0; x < qrsize; x++) { in getPenaltyScore() local 690 for (int x = 0; x < qrsize - 1; x++) { in getPenaltyScore() local 702 for (int x = 0; x < qrsize; x++) { in getPenaltyScore() local 749 bool qrcodegen_getModule(const uint8_t qrcode[], int x, int y) { in qrcodegen_getModule() 757 testable bool getModule(const uint8_t qrcode[], int x, int y) { in getModule() 766 testable void setModule(uint8_t qrcode[], int x, int y, bool isBlack) { in setModule() [all …]
|
/lvgl-latest/ |
D | lvgl.h | 108 #define LV_VERSION_CHECK(x,y,z) (x == LVGL_VERSION_MAJOR && (y < LVGL_VERSION_MINOR || (y == LVGL_V… argument
|
/lvgl-latest/src/extra/layouts/grid/ |
D | lv_grid.c | 19 #define IS_FR(x) (x >= LV_COORD_MAX - 100) argument 20 #define IS_CONTENT(x) (x == LV_COORD_MAX - 101) argument 21 #define GET_FR(x) (x - (LV_COORD_MAX - 100)) argument 33 lv_coord_t * x; member 462 lv_coord_t x = col_templ[i]; in calc_cols() local 483 lv_coord_t x = col_templ[i]; in calc_cols() local 531 lv_coord_t x = row_templ[i]; in calc_rows() local 552 lv_coord_t x = row_templ[i]; in calc_rows() local 600 lv_coord_t x; in item_repos() local
|
D | lv_grid.h | 27 #define LV_GRID_FR(x) (LV_COORD_MAX - 100 + x) argument 94 static inline lv_coord_t lv_grid_fr(uint8_t x) in lv_grid_fr()
|
/lvgl-latest/examples/event/ |
D | lv_example_event_4.c | 41 lv_coord_t x = 150 + (r * lv_trigo_cos(angle) >> LV_TRIGO_SHIFT), y = in event_cb() local
|
/lvgl-latest/examples/scroll/ |
D | lv_example_scroll_6.c | 26 lv_coord_t x; in scroll_event_cb() local
|
/lvgl-latest/src/draw/sdl/ |
D | lv_draw_sdl_arc.c | 173 for(int x = 0; x < rect.w; x++) { in dump_masks() local 190 for(int x = 0; x < rect.w; x++) { in dump_masks() local
|
/lvgl-latest/src/extra/widgets/tileview/ |
D | lv_tileview.c | 104 lv_coord_t x = lv_obj_get_x(tile_obj); in lv_obj_set_tile_id() local 181 lv_coord_t x = lv_obj_get_x(tile_obj); in tileview_event_cb() local
|
/lvgl-latest/tests/unity/ |
D | unity_support.c | 98 int x, y, i_buf = 0; in lv_test_assert_img_eq() local 269 for(uint32_t x = 0; x < width; x++) { in write_png_file() local
|