Searched refs:mem (Results 1 – 9 of 9) sorted by relevance
/lvgl-3.7.0/src/misc/ |
D | lv_tlsf.h | 56 lv_tlsf_t lv_tlsf_create(void * mem); 57 lv_tlsf_t lv_tlsf_create_with_pool(void * mem, size_t bytes); 62 lv_pool_t lv_tlsf_add_pool(lv_tlsf_t tlsf, void * mem, size_t bytes);
|
D | lv_tlsf.c | 967 lv_pool_t lv_tlsf_add_pool(lv_tlsf_t tlsf, void * mem, size_t bytes) in lv_tlsf_add_pool() argument 975 if(((ptrdiff_t)mem % ALIGN_SIZE) != 0) { in lv_tlsf_add_pool() 999 block = offset_to_block(mem, -(tlsfptr_t)block_header_overhead); in lv_tlsf_add_pool() 1011 return mem; in lv_tlsf_add_pool() 1060 lv_tlsf_t lv_tlsf_create(void * mem) in lv_tlsf_create() argument 1068 if(((tlsfptr_t)mem % ALIGN_SIZE) != 0) { in lv_tlsf_create() 1074 control_constructor(tlsf_cast(control_t *, mem)); in lv_tlsf_create() 1076 return tlsf_cast(lv_tlsf_t, mem); in lv_tlsf_create() 1079 lv_tlsf_t lv_tlsf_create_with_pool(void * mem, size_t bytes) in lv_tlsf_create_with_pool() argument 1081 lv_tlsf_t tlsf = lv_tlsf_create(mem); in lv_tlsf_create_with_pool() [all …]
|
/lvgl-3.7.0/src/extra/libs/freetype/ |
D | lv_freetype.c | 37 const void * mem; member 192 if(dsc->mem) { in font_face_requester() 193 error = FT_New_Memory_Face(library, dsc->mem, dsc->mem_size, 0, aface); in font_face_requester() 361 dsc->mem = info->mem; in lv_ft_font_init_cache() 542 dsc->mem = info->mem; in lv_ft_font_init_nocache() 551 if(dsc->mem) { in lv_ft_font_init_nocache() 552 error = FT_New_Memory_Face(library, dsc->mem, (FT_Long) dsc->mem_size, 0, &face); in lv_ft_font_init_nocache()
|
D | lv_freetype.h | 33 const void * mem; /* The pointer of the font file */ member
|
/lvgl-3.7.0/examples/libs/freetype/ |
D | lv_example_freetype_1.c | 16 info.mem = NULL; in lv_example_freetype_1()
|
/lvgl-3.7.0/ |
D | README_pt_BR.md | 6 …rporada com elementos gráficos fáceis de usar, belos efeitos visuais e um baixo consumo de memória. 36 * Escalável para operar com pouca memória (64 kB Flash, 16 kB RAM) 40 * SO, memória externa e GPU são suportados, mas não obrigatórios. (suporte integrado para STM32 DMA… 108 *Observe que o uso de memória pode variar dependendo da arquitetura, do compilador e das opções de …
|
D | Kconfig | 325 bool "Enable/Disable LV_LOG_TRACE in mem module"
|
/lvgl-3.7.0/docs/ |
D | CHANGELOG.md | 443 - fix(mem): fix TLSF returning the wrong pointer when the requested size is too large [`3325`](http… 623 - test(mem) add test for #3324 [`9700664`](https://github.com/lvgl/lvgl/commit/97006647d8ed3af65fd2… 632 - ci(switch): fix mem leak test [`8481e3a`](https://github.com/lvgl/lvgl/commit/8481e3a33bc3313b679… 694 - feat(font) add fallback support and mem. font load option to FreeType [`2796`](https://github.com… 809 - fix(mem/perf monitor): fix issue introduced in #2910 [`0788d91`](https://github.com/littlevgl/lvg… 951 - feat(mem) LV_MEM_POOL_ALLOC [`2458`](https://github.com/lvgl/lvgl/pull/2458) 1020 - fix(mem): ALIGN_MASK should equal 0x3 on 32bit platform [`2748`](https://github.com/lvgl/lvgl/pul… 1081 - feat(mem) LV_MEM_POOL_ALLOC [`2458`](https://github.com/lvgl/lvgl/pull/2458) 1281 - fix(mem) add lv_ prefix to tlsf functions and types [`0d52b59`](https://github.com/lvgl/lvgl/comm… 1571 - fix(mem) add lv_ prefix to tlsf functions and types <a href="https://github.com/lvgl/lvgl/commit/…
|
/lvgl-3.7.0/src/extra/libs/png/ |
D | lodepng.c | 919 BPMNode* mem = (BPMNode*)lodepng_malloc(sizeof(*leaves) * num); in bpmnode_sort() local 922 BPMNode* a = (counter & 1) ? mem : leaves; in bpmnode_sort() 923 BPMNode* b = (counter & 1) ? leaves : mem; in bpmnode_sort() 936 if(counter & 1) lodepng_memcpy(leaves, mem, sizeof(*leaves) * num); in bpmnode_sort() 937 lodepng_free(mem); in bpmnode_sort()
|