Searched refs:lvgl_heap (Results 1 – 3 of 3) sorted by relevance
17 #define HEAP_MEM_ATTRIBUTES Z_GENERIC_SECTION(.lvgl_heap) __aligned(8)23 static struct sys_heap lvgl_heap; variable32 ret = sys_heap_alloc(&lvgl_heap, size); in lvgl_malloc()44 ret = sys_heap_realloc(&lvgl_heap, ptr, size); in lvgl_realloc()55 sys_heap_free(&lvgl_heap, ptr); in lvgl_free()64 sys_heap_print_info(&lvgl_heap, dump_chunks); in lvgl_print_heap_info()74 sys_heap_runtime_stats_get(&lvgl_heap, stats); in lvgl_heap_stats()84 sys_heap_init(&lvgl_heap, &lvgl_heap_mem[0], CONFIG_LV_Z_MEM_POOL_SIZE); in lvgl_heap_init()
50 Place LVGL memory pool in custom section, with tag ".lvgl_heap".
1999 * Added support to place memory pool buffers in ``.lvgl_heap`` section by enabling