Searched refs:head (Results 1 – 10 of 10) sorted by relevance
/lvgl-3.7.0/src/misc/ |
D | lv_ll.c | 49 ll_p->head = NULL; in _lv_ll_init() 75 node_set_next(ll_p, n_new, ll_p->head); /*After new comes the old head*/ in _lv_ll_ins_head() 77 if(ll_p->head != NULL) { /*If there is old head then before it goes the new*/ in _lv_ll_ins_head() 78 node_set_prev(ll_p, ll_p->head, n_new); in _lv_ll_ins_head() 81 ll_p->head = n_new; /*Set the new head in the dsc.*/ in _lv_ll_ins_head() 140 if(ll_p->head == NULL) { /*If there is no head (1. node) set the head too*/ in _lv_ll_ins_tail() 141 ll_p->head = n_new; in _lv_ll_ins_tail() 160 ll_p->head = _lv_ll_get_next(ll_p, node_p); in _lv_ll_remove() 161 if(ll_p->head == NULL) { in _lv_ll_remove() 165 node_set_prev(ll_p, ll_p->head, NULL); in _lv_ll_remove() [all …]
|
D | lv_ll.h | 34 lv_ll_node_t * head; member 93 void _lv_ll_chg_list(lv_ll_t * ll_ori_p, lv_ll_t * ll_new_p, void * node, bool head);
|
/lvgl-3.7.0/.github/workflows/ |
D | makefile.yml | 11 …ent_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
|
/lvgl-3.7.0/src/draw/sdl/ |
D | lv_draw_sdl_texture_cache.h | 38 char head[8]; member
|
/lvgl-3.7.0/src/extra/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); 2907 *x0 = ttSHORT(info->data, info->head + 36); 2908 *y0 = ttSHORT(info->data, info->head + 38); 2909 *x1 = ttSHORT(info->data, info->head + 40); 2910 *y1 = ttSHORT(info->data, info->head + 42); 2921 int unitsPerEm = ttUSHORT(info->data, info->head + 18); 3021 struct stbtt__hheap_chunk * head; member [all …]
|
/lvgl-3.7.0/src/extra/libs/png/ |
D | lodepng.c | 1494 int* head; /*hash value to head circular pos - can be outdated if went around window*/ member 1508 hash->head = (int*)lodepng_malloc(sizeof(int) * HASH_NUM_VALUES); in hash_init() 1516 if(!hash->head || !hash->chain || !hash->val || !hash->headz|| !hash->chainz || !hash->zeros) { in hash_init() 1521 for(i = 0; i != HASH_NUM_VALUES; ++i) hash->head[i] = -1; in hash_init() 1532 lodepng_free(hash->head); in hash_cleanup() 1575 if(hash->head[hashval] != -1) hash->chain[wpos] = hash->head[hashval]; in updateHashChain() 1576 hash->head[hashval] = (int)wpos; in updateHashChain() 1706 …hash->head[hashval] = -1; /*the same hashchain update will be done, this ensures no wrong alterati… in encodeLZ77()
|
/lvgl-3.7.0/src/extra/widgets/span/ |
D | lv_span.c | 236 lv_ll_node_t * cur_node = linked_list->head; in lv_spangroup_get_child()
|
/lvgl-3.7.0/src/extra/widgets/chart/ |
D | lv_chart.c | 680 while(chart->series_ll.head) { in lv_chart_destructor() 691 while(chart->cursor_ll.head) { in lv_chart_destructor()
|
/lvgl-3.7.0/docs/ |
D | CONTRIBUTING.md | 172 <!-- Place this tag in your head or just before your close body tag. -->
|
/lvgl-3.7.0/docs/_static/css/ |
D | fontawesome.min.css | 5 …ornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7…
|