Searched refs:entry (Results 1 – 6 of 6) sorted by relevance
/lvgl-3.7.0/src/extra/libs/fsdrv/ |
D | lv_fs_posix.c | 259 struct dirent * entry; in fs_dir_read() local 261 entry = readdir(dir_p); in fs_dir_read() 262 if(entry) { in fs_dir_read() 263 if(entry->d_type == DT_DIR) sprintf(fn, "/%s", entry->d_name); in fs_dir_read() 264 else strcpy(fn, entry->d_name); in fs_dir_read()
|
D | lv_fs_stdio.c | 265 struct dirent * entry; in fs_dir_read() local 267 entry = readdir(handle->dir_p); in fs_dir_read() 268 if(entry) { in fs_dir_read() 269 if(entry->d_type == DT_DIR) lv_snprintf(fn, MAX_PATH_LEN, "/%s", entry->d_name); in fs_dir_read() 270 else strcpy(fn, entry->d_name); in fs_dir_read()
|
/lvgl-3.7.0/src/extra/libs/gif/ |
D | gifdec.c | 399 Entry entry = {0}; in read_image_data() local 424 ret = add_entry(&table, str_len + 1, key, entry.suffix); in read_image_data() 438 entry = table->entries[key]; in read_image_data() 439 str_len = entry.length; in read_image_data() 441 p = frm_off + entry.length - 1; in read_image_data() 446 gif->frame[(gif->fy + y) * gif->width + gif->fx + x] = entry.suffix; in read_image_data() 447 if (entry.prefix == 0xFFF) in read_image_data() 450 entry = table->entries[entry.prefix]; in read_image_data() 454 table->entries[table->nentries - 1].suffix = entry.suffix; in read_image_data()
|
/lvgl-3.7.0/src/draw/ |
D | lv_draw_mask.c | 507 _lv_draw_mask_radius_circle_dsc_t * entry = NULL; in lv_draw_mask_radius_init() local 510 if(!entry) entry = &LV_GC_ROOT(_lv_circle_cache[i]); in lv_draw_mask_radius_init() 511 …else if(LV_GC_ROOT(_lv_circle_cache[i]).life < entry->life) entry = &LV_GC_ROOT(_lv_circle_cache[i… in lv_draw_mask_radius_init() 515 if(!entry) { in lv_draw_mask_radius_init() 516 entry = lv_mem_alloc(sizeof(_lv_draw_mask_radius_circle_dsc_t)); in lv_draw_mask_radius_init() 517 LV_ASSERT_MALLOC(entry); in lv_draw_mask_radius_init() 518 lv_memset_00(entry, sizeof(_lv_draw_mask_radius_circle_dsc_t)); in lv_draw_mask_radius_init() 519 entry->life = -1; in lv_draw_mask_radius_init() 522 entry->used_cnt++; in lv_draw_mask_radius_init() 523 entry->life = 0; in lv_draw_mask_radius_init() [all …]
|
/lvgl-3.7.0/docs/overview/ |
D | image.md | 304 Every cache entry has a *"life"* value. Every time an image is opened through the cache, the *life*… 307 If there is no more space in the cache, the entry with the lowest life value will be closed.
|
/lvgl-3.7.0/scripts/ |
D | Doxyfile | 672 # will remove the Files entry from the Quick Index and from the Folder Tree View 679 # page. This will remove the Namespaces entry from the Quick Index and from the
|