/lvgl-latest/src/libs/thorvg/ |
D | tvgInlist.h | 39 T* head = nullptr; member 44 while (head) { in free() 45 auto t = head; in free() 46 head = t->next; in free() 49 head = tail = nullptr; in free() 60 head = tail = element; in back() 68 if (head) { in front() 69 head->prev = element; in front() 71 element->next = head; in front() 72 head = element; in front() [all …]
|
D | tvgLoader.cpp | 221 auto loader = _activeLoaders.head; in _findFromCache() 240 auto loader = _activeLoaders.head; in _findFromCache() 268 auto loader = _activeLoaders.head; in term() 353 auto loader = _activeLoaders.head; in loader()
|
D | tvgLottieBuilder.cpp | 882 contexts.head->begin = parent->children.end() - 1; in updateChildren()
|
/lvgl-latest/src/misc/ |
D | lv_ll.c | 44 ll_p->head = NULL; in lv_ll_init() 65 node_set_next(ll_p, n_new, ll_p->head); /*After new comes the old head*/ in lv_ll_ins_head() 67 if(ll_p->head != NULL) { /*If there is old head then before it goes the new*/ in lv_ll_ins_head() 68 node_set_prev(ll_p, ll_p->head, n_new); in lv_ll_ins_head() 71 ll_p->head = n_new; /*Set the new head in the dsc.*/ in lv_ll_ins_head() 119 if(ll_p->head == NULL) { /*If there is no head (1. node) set the head too*/ in lv_ll_ins_tail() 120 ll_p->head = n_new; in lv_ll_ins_tail() 133 ll_p->head = lv_ll_get_next(ll_p, node_p); in lv_ll_remove() 134 if(ll_p->head == NULL) { in lv_ll_remove() 138 node_set_prev(ll_p, ll_p->head, NULL); in lv_ll_remove() [all …]
|
D | lv_circle_buf.c | 25 uint32_t head; member 63 circle_buf->head = 0; in lv_circle_buf_create() 84 circle_buf->head = 0; in lv_circle_buf_create_from_buf() 108 circle_buf->head = 0; in lv_circle_buf_create_from_array() 125 circle_buf->head = 0; in lv_circle_buf_resize() 146 return circle_buf->tail - circle_buf->head; in lv_circle_buf_size() 182 circle_buf->head = 0; in lv_circle_buf_reset() 191 circle_buf->head % lv_circle_buf_capacity(circle_buf)); in lv_circle_buf_head() 207 circle_buf->head = 0; in lv_circle_buf_read() 213 circle_buf->head++; in lv_circle_buf_read() [all …]
|
D | lv_ll.h | 33 lv_ll_node_t * head; member 94 void lv_ll_chg_list(lv_ll_t * ll_ori_p, lv_ll_t * ll_new_p, void * node, bool head);
|
/lvgl-latest/src/drivers/wayland/ |
D | lv_wayland_smm.c | 43 #define LL_FIRST(head) ((head)->first) argument 44 #define LL_LAST(head) ((head)->last) argument 45 #define LL_IS_EMPTY(head) (LL_FIRST(head) == NULL) argument 49 #define LL_INIT(head) do { \ argument 50 (head)->first = NULL; \ 51 (head)->last = NULL; \ 54 #define LL_ENQUEUE(head, src, member) do { \ argument 56 (src)->member.prev = (head)->last; \ 57 if ((head)->last == NULL) { \ 58 (head)->first = (src); \ [all …]
|
/lvgl-latest/scripts/gen_json/ |
D | create_fake_lib_c.py | 157 head, tail = os.path.split(file) 162 if None not in (head, tail): 163 pth = os.path.join(fake_libc_path, head)
|
/lvgl-latest/src/misc/cache/ |
D | lv_cache_lru_rb.c | 275 void * head = lv_ll_get_head(&lru->ll); in get_cb() local 276 if(head) { in get_cb() 277 lv_rb_node_t * node = *(lv_rb_node_t **)head; in get_cb() 289 head = lv_ll_get_head(&lru->ll); in get_cb() 290 lv_ll_move_before(&lru->ll, lru_node, head); in get_cb()
|
/lvgl-latest/.github/workflows/ |
D | makefile.yml | 17 …ent_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
|
/lvgl-latest/src/libs/svg/ |
D | lv_svg_render.h | 41 struct _lv_svg_render_obj * head; member
|
D | lv_svg_render.c | 995 lv_svg_render_obj_t * list = obj->head; in _copy_draw_dsc_from_ref() 1008 lv_svg_render_obj_t * list = obj->head; in _copy_draw_dsc_from_ref() 1046 obj->head = state->list; in _set_render_attrs() 1522 lv_svg_render_obj_t * list = obj->head; in _render_use()
|
/lvgl-latest/scripts/gdb/lvglgdb/ |
D | lvgl.py | 30 self.current = self.head 58 node = self.head
|
/lvgl-latest/docs/details/main-components/ |
D | draw.rst | 73 Software Drawing Unit enters itself at the head of that list. If your platform has 78 function, the newly-created draw unit is added to the head of that list, pushing
|
/lvgl-latest/src/libs/tiny_ttf/ |
D | stb_truetype_htcw.h | 748 … int loca, head, glyf, hhea, hmtx, kern, gpos, svg; // table locations as offset from start of .ttf member 1578 info->head = stbtt__find_table(data, fontstart, "head"); // required 1585 if(!cmap || !info->head || !info->hhea || !info->hmtx) 1683 info->indexToLocFormat = ttUSHORT(data, info->head + 50); 2947 *x0 = ttSHORT(info->data, info->head + 36); 2948 *y0 = ttSHORT(info->data, info->head + 38); 2949 *x1 = ttSHORT(info->data, info->head + 40); 2950 *y1 = ttSHORT(info->data, info->head + 42); 2961 int unitsPerEm = ttUSHORT(info->data, info->head + 18); 3061 struct stbtt__hheap_chunk * head; member [all …]
|
/lvgl-latest/src/libs/thorvg/rapidjson/ |
D | reader.h | 968 typename InputStream::Ch *head = s.PutBegin(); 971 size_t length = s.PutEnd(head) - 1; 973 …onst typename TargetEncoding::Ch* const str = reinterpret_cast<typename TargetEncoding::Ch*>(head); 1688 typename InputStream::Ch* head = is.PutBegin(); in ParseNumber() local 1692 …onst typename TargetEncoding::Ch* const str = reinterpret_cast<typename TargetEncoding::Ch*>(head); in ParseNumber()
|
/lvgl-latest/src/libs/lodepng/ |
D | lodepng.c | 1578 int * head; /*hash value to head circular pos - can be outdated if went around window*/ member 1593 hash->head = (int *)lodepng_malloc(sizeof(int) * HASH_NUM_VALUES); in hash_init() 1601 … if(!hash->head || !hash->chain || !hash->val || !hash->headz || !hash->chainz || !hash->zeros) { in hash_init() 1606 for(i = 0; i != HASH_NUM_VALUES; ++i) hash->head[i] = -1; in hash_init() 1618 lodepng_free(hash->head); in hash_cleanup() 1665 if(hash->head[hashval] != -1) hash->chain[wpos] = hash->head[hashval]; in updateHashChain() 1666 hash->head[hashval] = (int)wpos; in updateHashChain() 1800 …hash->head[hashval] = -1; /*the same hashchain update will be done, this ensures no wrong alterati… in encodeLZ77()
|
/lvgl-latest/src/widgets/chart/ |
D | lv_chart.c | 652 while(chart->series_ll.head) { in lv_chart_destructor() 665 while(chart->cursor_ll.head) { in lv_chart_destructor()
|
/lvgl-latest/src/widgets/span/ |
D | lv_span.c | 281 lv_ll_node_t * cur_node = linked_list->head; in lv_spangroup_get_child()
|
/lvgl-latest/src/widgets/scale/ |
D | lv_scale.c | 477 while(scale->section_ll.head) { in lv_scale_destructor()
|
/lvgl-latest/docs/_static/css/ |
D | fontawesome.min.css | 5 …ornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7…
|