Searched refs:ll_new_p (Results 1 – 2 of 2) sorted by relevance
/AliOS-Things-master/components/littlevgl/src/lv_misc/ |
A D | lv_ll.c | 220 void lv_ll_chg_list(lv_ll_t * ll_ori_p, lv_ll_t * ll_new_p, void * node, bool head) in lv_ll_chg_list() argument 226 node_set_prev(ll_new_p, node, NULL); in lv_ll_chg_list() 227 node_set_next(ll_new_p, node, ll_new_p->head); in lv_ll_chg_list() 230 node_set_prev(ll_new_p, ll_new_p->head, node); in lv_ll_chg_list() 233 ll_new_p->head = node; /*Set the new head in the dsc.*/ in lv_ll_chg_list() 235 ll_new_p->tail = node; in lv_ll_chg_list() 239 node_set_prev(ll_new_p, node, ll_new_p->tail); in lv_ll_chg_list() 240 node_set_next(ll_new_p, node, NULL); in lv_ll_chg_list() 243 node_set_next(ll_new_p, ll_new_p->tail, node); in lv_ll_chg_list() 246 ll_new_p->tail = node; /*Set the new tail in the dsc.*/ in lv_ll_chg_list() [all …]
|
A D | lv_ll.h | 95 void lv_ll_chg_list(lv_ll_t * ll_ori_p, lv_ll_t * ll_new_p, void * node, bool head);
|
Completed in 4 milliseconds