Searched refs:cache_size (Results 1 – 13 of 13) sorted by relevance
/lvgl-3.7.0/src/extra/libs/tiny_ttf/ |
D | lv_tiny_ttf.h | 37 lv_font_t * lv_tiny_ttf_create_file_ex(const char * path, lv_coord_t font_size, size_t cache_size); 44 …y_ttf_create_data_ex(const void * data, size_t data_size, lv_coord_t font_size, size_t cache_size);
|
D | lv_tiny_ttf.c | 175 size_t cache_size) in lv_tiny_ttf_create() argument 214 dsc->bitmap_cache = lv_lru_create(cache_size, font_size * font_size, lv_mem_free, lv_mem_free); in lv_tiny_ttf_create() 238 lv_font_t * lv_tiny_ttf_create_file_ex(const char * path, lv_coord_t font_size, size_t cache_size) in lv_tiny_ttf_create_file_ex() argument 240 return lv_tiny_ttf_create(path, NULL, 0, font_size, cache_size); in lv_tiny_ttf_create_file_ex() 247 …ny_ttf_create_data_ex(const void * data, size_t data_size, lv_coord_t font_size, size_t cache_size) in lv_tiny_ttf_create_data_ex() argument 249 return lv_tiny_ttf_create(NULL, data, data_size, font_size, cache_size); in lv_tiny_ttf_create_data_ex()
|
/lvgl-3.7.0/src/misc/ |
D | lv_fs.c | 94 if(drv->cache_size) { in lv_fs_open() 117 if(file_p->drv->cache_size && file_p->cache) { in lv_fs_close() 139 uint16_t buffer_size = file_p->drv->cache_size; in lv_fs_read_cached() 214 if(file_p->drv->cache_size) { in lv_fs_read() 256 if(file_p->drv->cache_size) { in lv_fs_seek() 313 if(file_p->drv->cache_size) { in lv_fs_tell()
|
D | lv_lru.c | 73 lv_lru_t * lv_lru_create(size_t cache_size, size_t average_length, lv_lru_free_t * value_free, in lv_lru_create() argument 83 cache->hash_table_size = cache_size / average_length; in lv_lru_create() 85 cache->free_memory = cache_size; in lv_lru_create() 86 cache->total_memory = cache_size; in lv_lru_create()
|
D | lv_lru.h | 61 lv_lru_t * lv_lru_create(size_t cache_size, size_t average_length, lv_lru_free_t * value_free,
|
D | lv_fs.h | 71 uint16_t cache_size; member
|
/lvgl-3.7.0/docs/libs/ |
D | tiny_ttf.md | 26 `lv_tiny_ttf_create_data_ex(data, data_size, font_size, cache_size)` 27 or `lv_tiny_ttf_create_file_ex(path, font_size, cache_size)` (when
|
/lvgl-3.7.0/src/extra/libs/fsdrv/ |
D | lv_fs_fatfs.c | 70 fs_drv.cache_size = LV_FS_FATFS_CACHE_SIZE; in lv_fs_fatfs_init()
|
D | lv_fs_littlefs.c | 78 fs_drv.cache_size = LV_FS_LITTLEFS_CACHE_SIZE; in lv_fs_littlefs_init()
|
D | lv_fs_posix.c | 74 fs_drv.cache_size = LV_FS_POSIX_CACHE_SIZE; in lv_fs_posix_init()
|
D | lv_fs_stdio.c | 77 fs_drv.cache_size = LV_FS_STDIO_CACHE_SIZE; in lv_fs_stdio_init()
|
D | lv_fs_win32.c | 72 fs_drv.cache_size = LV_FS_WIN32_CACHE_SIZE; in lv_fs_win32_init()
|
/lvgl-3.7.0/docs/overview/ |
D | file-system.md | 20 drv.cache_size = my_cache_size; /*Cache size for reading in bytes. 0 to not cache.*/
|