Searched refs:n_act (Results 1 – 2 of 2) sorted by relevance
/AliOS-Things-master/components/littlevgl/src/lv_misc/ |
A D | lv_ll.c | 112 if(lv_ll_get_head(ll_p) == n_act) { in lv_ll_ins_prev() 119 n_prev = lv_ll_get_prev(ll_p, n_act); in lv_ll_ins_prev() 122 node_set_prev(ll_p, n_act, n_new); in lv_ll_ins_prev() 123 node_set_next(ll_p, n_new, n_act); in lv_ll_ins_prev() 365 lv_ll_rem(ll_p, n_act); in lv_ll_move_before() 368 node_set_next(ll_p, n_before, n_act); in lv_ll_move_before() 369 node_set_prev(ll_p, n_act, n_before); in lv_ll_move_before() 370 node_set_prev(ll_p, n_after, n_act); in lv_ll_move_before() 371 node_set_next(ll_p, n_act, n_after); in lv_ll_move_before() 374 if(n_after == NULL) ll_p->tail = n_act; in lv_ll_move_before() [all …]
|
A D | lv_ll.h | 64 void * lv_ll_ins_prev(lv_ll_t * ll_p, void * n_act); 117 void * lv_ll_get_next(const lv_ll_t * ll_p, const void * n_act); 125 void * lv_ll_get_prev(const lv_ll_t * ll_p, const void * n_act); 140 void lv_ll_move_before(lv_ll_t * ll_p, void * n_act, void * n_after);
|
Completed in 3 milliseconds