Home
last modified time | relevance | path

Searched refs:lv_uintptr_t (Results 1 – 15 of 15) sorted by relevance

/lvgl-latest/src/drivers/nuttx/
Dlv_nuttx_cache.c65 lv_uintptr_t * start, lv_uintptr_t * end) in draw_buf_to_region()
76 *start = (lv_uintptr_t)buf + area->y1 * stride; in draw_buf_to_region()
82 lv_uintptr_t start; in invalidate_cache()
83 lv_uintptr_t end; in invalidate_cache()
90 lv_uintptr_t start; in flush_cache()
91 lv_uintptr_t end; in flush_cache()
/lvgl-latest/tests/src/test_cases/widgets/
Dtest_objid.c25 id1 = (lv_uintptr_t)obj1->id; in test_obj_id_should_grow_by_one()
27 id2 = (lv_uintptr_t)obj2->id; in test_obj_id_should_grow_by_one()
37 lv_obj_set_id(child, (void *)(lv_uintptr_t)1); in test_obj_id_get_child()
38 lv_obj_set_id(grandchild, (void *)(lv_uintptr_t)2); in test_obj_id_get_child()
40 TEST_ASSERT_EQUAL_PTR(child, lv_obj_get_child_by_id(NULL, (void *)(lv_uintptr_t)1)); in test_obj_id_get_child()
41 TEST_ASSERT_EQUAL_PTR(grandchild, lv_obj_get_child_by_id(NULL, (void *)(lv_uintptr_t)2)); in test_obj_id_get_child()
/lvgl-latest/src/stdlib/builtin/
Dlv_string_builtin.c72 lv_uintptr_t d_align = (lv_uintptr_t)d8 & ALIGN_MASK; in lv_memcpy()
73 lv_uintptr_t s_align = (lv_uintptr_t)s8 & ALIGN_MASK; in lv_memcpy()
121 uintptr_t d_align = (lv_uintptr_t) d8 & ALIGN_MASK; in lv_memset()
/lvgl-latest/src/core/
Dlv_obj_id_builtin.c79 obj->id = (void *)(lv_uintptr_t)id; in lv_obj_assign_id()
104 lv_snprintf(buf, len, "%s%" LV_PRIu32 "", name, (uint32_t)(lv_uintptr_t)obj->id); in lv_obj_stringify_id()
/lvgl-latest/demos/scroll/
Dlv_demo_scroll.c90 …lv_obj_add_event_cb(sw, generic_switch_event_cb, LV_EVENT_VALUE_CHANGED, (void *)((lv_uintptr_t) f… in switch_create()
106 lv_obj_flag_t flag = (lv_obj_flag_t)((lv_uintptr_t)lv_event_get_user_data(e)); in generic_switch_event_cb()
/lvgl-latest/src/misc/
Dlv_types.h62 typedef uintptr_t lv_uintptr_t; typedef
69 typedef uint64_t lv_uintptr_t; typedef
72 typedef uint32_t lv_uintptr_t; typedef
/lvgl-latest/src/libs/fsdrv/
Dlv_fs_posix.c32 #define FILEP2FD(file_p) ((lv_uintptr_t)file_p - 1)
33 #define FD2FILEP(fd) ((void *)(lv_uintptr_t)(fd + 1))
/lvgl-latest/src/font/
Dlv_font_fmt_txt.c285 lv_uintptr_t ofs = p - fdsc->cmaps[i].unicode_list; in get_glyph_dsc_id()
295 lv_uintptr_t ofs = p - fdsc->cmaps[i].unicode_list; in get_glyph_dsc_id()
326 lv_uintptr_t ofs = kid_p - g_ids; in get_kern_value()
339 lv_uintptr_t ofs = kid_p - g_ids; in get_kern_value()
/lvgl-latest/demos/flex_layout/
Dlv_demo_flex_layout_ctrl_pad.c124 lv_style_prop_t prop = (lv_style_prop_t)(lv_uintptr_t)lv_obj_get_user_data(spinbox); in ctrl_pad_spinbox_event_handler()
Dlv_demo_flex_layout_view_ctrl_pad.c207 lv_obj_set_user_data(spinbox, (void *)(lv_uintptr_t)prop); in spinbox_ctrl_create()
/lvgl-latest/src/draw/vg_lite/
Dlv_draw_vg_lite_vector.c390 …LV_ASSERT_MSG((lv_uintptr_t)path_data - (lv_uintptr_t)vg_path->path == path_length, "path length o… in lv_path_to_vg()
/lvgl-latest/demos/ebike/
Dlv_demo_ebike_home.c120 int32_t label_v = (int32_t)((lv_uintptr_t)observer->user_data); in speed_label_observer_cb()
236 (void *)((lv_uintptr_t)((i + 1) * 20))); in left_cont_create()
/lvgl-latest/src/draw/sw/blend/
Dlv_draw_sw_blend_to_rgb565.c242 if((lv_uintptr_t)&dest_buf_u16[0] & 0x3) { in lv_draw_sw_blend_color_to_rgb565()
282 if((lv_uintptr_t)&dest_buf_u16[0] & 0x3) { in lv_draw_sw_blend_color_to_rgb565()
322 if((lv_uintptr_t)(mask) & 0x1) { in lv_draw_sw_blend_color_to_rgb565()
/lvgl-latest/demos/high_res/
Dlv_demo_high_res_home.c247 …lv_obj_add_event_cb(app_card, app_card_click_cb, LV_EVENT_CLICKED, (void *)((lv_uintptr_t)app_cb)); in app_card_create()
/lvgl-latest/src/draw/
Dlv_draw_buf.c668 buf_u8 = (uint8_t *)LV_ROUND_UP((lv_uintptr_t)buf_u8, LV_DRAW_BUF_ALIGN); in buf_align()