Searched refs:node_set_next (Results 1 – 1 of 1) sorted by relevance
/lvgl-3.6.0/src/misc/ |
D | lv_ll.c | 28 static void node_set_next(lv_ll_t * ll_p, lv_ll_node_t * act, lv_ll_node_t * next); 75 node_set_next(ll_p, n_new, ll_p->head); /*After new comes the old head*/ in _lv_ll_ins_head() 112 node_set_next(ll_p, n_prev, n_new); in _lv_ll_ins_prev() 115 node_set_next(ll_p, n_new, n_act); in _lv_ll_ins_prev() 133 node_set_next(ll_p, n_new, NULL); /*No next after the new tail*/ in _lv_ll_ins_tail() 136 node_set_next(ll_p, ll_p->tail, n_new); in _lv_ll_ins_tail() 175 node_set_next(ll_p, ll_p->tail, NULL); in _lv_ll_remove() 182 node_set_next(ll_p, n_prev, n_next); in _lv_ll_remove() 224 node_set_next(ll_new_p, node, ll_new_p->head); in _lv_ll_chg_list() 238 node_set_next(ll_new_p, node, NULL); in _lv_ll_chg_list() [all …]
|