Home
last modified time | relevance | path

Searched refs:cache_size (Results 1 – 13 of 13) sorted by relevance

/lvgl-3.7.0/src/extra/libs/tiny_ttf/
Dlv_tiny_ttf.h37 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);
Dlv_tiny_ttf.c175 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/
Dlv_fs.c94 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()
Dlv_lru.c73 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()
Dlv_lru.h61 lv_lru_t * lv_lru_create(size_t cache_size, size_t average_length, lv_lru_free_t * value_free,
Dlv_fs.h71 uint16_t cache_size; member
/lvgl-3.7.0/docs/libs/
Dtiny_ttf.md26 `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/
Dlv_fs_fatfs.c70 fs_drv.cache_size = LV_FS_FATFS_CACHE_SIZE; in lv_fs_fatfs_init()
Dlv_fs_littlefs.c78 fs_drv.cache_size = LV_FS_LITTLEFS_CACHE_SIZE; in lv_fs_littlefs_init()
Dlv_fs_posix.c74 fs_drv.cache_size = LV_FS_POSIX_CACHE_SIZE; in lv_fs_posix_init()
Dlv_fs_stdio.c77 fs_drv.cache_size = LV_FS_STDIO_CACHE_SIZE; in lv_fs_stdio_init()
Dlv_fs_win32.c72 fs_drv.cache_size = LV_FS_WIN32_CACHE_SIZE; in lv_fs_win32_init()
/lvgl-3.7.0/docs/overview/
Dfile-system.md20 drv.cache_size = my_cache_size; /*Cache size for reading in bytes. 0 to not cache.*/