Lines Matching full:set
71 ll_p->head = n_new; /*Set the new head in the dsc.*/ in lv_ll_ins_head()
72 if(ll_p->tail == NULL) { /*If there is no tail (1. node) set the tail too*/ in lv_ll_ins_head()
118 ll_p->tail = n_new; /*Set the new tail in the dsc.*/ in lv_ll_ins_tail()
119 if(ll_p->head == NULL) { /*If there is no head (1. node) set the head too*/ in lv_ll_ins_tail()
186 /*Set node as head*/ in lv_ll_chg_list()
194 ll_new_p->head = node; /*Set the new head in the dsc.*/ in lv_ll_chg_list()
195 if(ll_new_p->tail == NULL) { /*If there is no tail (first node) set the tail too*/ in lv_ll_chg_list()
200 /*Set node as tail*/ in lv_ll_chg_list()
208 ll_new_p->tail = node; /*Set the new tail in the dsc.*/ in lv_ll_chg_list()
209 if(ll_new_p->head == NULL) { /*If there is no head (first node) set the head too*/ in lv_ll_chg_list()
304 * Set the previous node pointer of a node
306 * @param act pointer to a node which prev. node pointer should be set
311 if(act == NULL) return; /*Can't set the prev node of `NULL`*/ in node_set_prev()
324 * Set the 'next node pointer' of a node
326 * @param act pointer to a node which next node pointer should be set
331 if(act == NULL) return; /*Can't set the next node of `NULL`*/ in node_set_next()