/lvgl-3.7.0/src/draw/sdl/ |
D | lv_draw_sdl_label.c | 56 …dl_draw_letter(lv_draw_ctx_t * draw_ctx, const lv_draw_label_dsc_t * dsc, const lv_point_t * pos_p, in lv_draw_sdl_draw_letter() argument 84 lv_coord_t begin_x = pos_p->x + g.ofs_x; in lv_draw_sdl_draw_letter() 85 lv_coord_t begin_y = pos_p->y + g.ofs_y; in lv_draw_sdl_draw_letter() 102 int32_t pos_x = pos_p->x + g.ofs_x; in lv_draw_sdl_draw_letter() 103 int32_t pos_y = pos_p->y + (font_p->line_height - font_p->base_line) - g.box_h - g.ofs_y; in lv_draw_sdl_draw_letter()
|
D | lv_draw_sdl.c | 27 …l_draw_letter(lv_draw_ctx_t * draw_ctx, const lv_draw_label_dsc_t * dsc, const lv_point_t * pos_p,
|
/lvgl-3.7.0/src/extra/libs/fsdrv/ |
D | lv_fs_fatfs.c | 36 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p); 212 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell() argument 215 *pos_p = f_tell((FIL *)file_p); in fs_tell()
|
D | lv_fs_win32.c | 40 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p); 321 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell() argument 325 if(!pos_p) { in fs_tell() 343 *pos_p = file_pointer.LowPart; in fs_tell()
|
D | lv_fs_littlefs.c | 39 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p); 243 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell() argument 250 *pos_p = (uint32_t) result; in fs_tell()
|
D | lv_fs_posix.c | 42 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p); 190 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell() argument 194 *pos_p = offset; in fs_tell()
|
D | lv_fs_stdio.c | 45 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p); 192 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell() argument 195 *pos_p = ftell(file_p); in fs_tell()
|
/lvgl-3.7.0/examples/porting/ |
D | lv_port_fs_template.c | 34 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p); 202 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p)
|
/lvgl-3.7.0/src/draw/ |
D | lv_draw_label.h | 85 …etter(struct _lv_draw_ctx_t * draw_ctx, const lv_draw_label_dsc_t * dsc, const lv_point_t * pos_p,
|
D | lv_draw.h | 88 …tter)(struct _lv_draw_ctx_t * draw_ctx, const lv_draw_label_dsc_t * dsc, const lv_point_t * pos_p,
|
D | lv_draw_label.c | 364 …v_draw_letter(lv_draw_ctx_t * draw_ctx, const lv_draw_label_dsc_t * dsc, const lv_point_t * pos_p, in lv_draw_letter() argument 367 draw_ctx->draw_letter(draw_ctx, dsc, pos_p, letter); in lv_draw_letter()
|
/lvgl-3.7.0/src/draw/renesas/ |
D | lv_gpu_d2_draw_label.c | 232 …aw_gpu_letter(lv_draw_ctx_t * draw_ctx, const lv_draw_label_dsc_t * dsc, const lv_point_t * pos_p, in lv_draw_gpu_letter() argument 263 gpos.x = pos_p->x + g.ofs_x; in lv_draw_gpu_letter() 264 gpos.y = pos_p->y + (dsc->font->line_height - dsc->font->base_line) - g.box_h - g.ofs_y; in lv_draw_gpu_letter()
|
D | lv_gpu_d2_ra6m3.c | 49 …aw_gpu_letter(lv_draw_ctx_t * draw_ctx, const lv_draw_label_dsc_t * dsc, const lv_point_t * pos_p,
|
/lvgl-3.7.0/src/draw/sw/ |
D | lv_draw_sw_letter.c | 94 …raw_sw_letter(lv_draw_ctx_t * draw_ctx, const lv_draw_label_dsc_t * dsc, const lv_point_t * pos_p, in lv_draw_sw_letter() argument 111 lv_coord_t begin_x = pos_p->x + g.ofs_x; in lv_draw_sw_letter() 112 lv_coord_t begin_y = pos_p->y + g.ofs_y; in lv_draw_sw_letter() 131 gpos.x = pos_p->x + g.ofs_x; in lv_draw_sw_letter() 132 gpos.y = pos_p->y + (dsc->font->line_height - dsc->font->base_line) - g.box_h - g.ofs_y; in lv_draw_sw_letter()
|
D | lv_draw_sw.h | 61 …draw_sw_letter(lv_draw_ctx_t * draw_ctx, const lv_draw_label_dsc_t * dsc, const lv_point_t * pos_p,
|
/lvgl-3.7.0/src/misc/ |
D | lv_fs.h | 79 lv_fs_res_t (*tell_cb)(struct _lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p);
|