Home
last modified time | relevance | path

Searched refs:inner_alloc (Results 1 – 3 of 3) sorted by relevance

/lvgl-latest/src/misc/
Dlv_circle_buf.c28 …bool inner_alloc; /**< true: the array is allocated by the buffer, false: the array is created fro… member
65 circle_buf->inner_alloc = true; in lv_circle_buf_create()
86 circle_buf->inner_alloc = false; in lv_circle_buf_create_from_buf()
110 circle_buf->inner_alloc = false; in lv_circle_buf_create_from_array()
Dlv_array.c45 array->inner_alloc = true; in lv_array_init()
57 array->inner_alloc = false; in lv_array_init_from_buf()
63 if(array->inner_alloc) lv_free(array->data); in lv_array_deinit()
139 if(array->inner_alloc == false) { in lv_array_resize()
Dlv_array.h41 … bool inner_alloc; /* true: data is allocated by the array; false: data is allocated by the user */ member