Lines Matching refs:lnew
49 list_node_t *lnew = list_d2l(list, object); \
50 lnew->list_prev = (node); \
51 lnew->list_next = (node)->list_next; \
52 (node)->list_next->list_prev = lnew; \
53 (node)->list_next = lnew; \
57 list_node_t *lnew = list_d2l(list, object); \
58 lnew->list_next = (node); \
59 lnew->list_prev = (node)->list_prev; \
60 (node)->list_prev->list_next = lnew; \
61 (node)->list_prev = lnew; \
222 list_link_replace(list_node_t *lold, list_node_t *lnew) in list_link_replace() argument
225 ASSERT(!list_link_active(lnew)); in list_link_replace()
227 lnew->list_next = lold->list_next; in list_link_replace()
228 lnew->list_prev = lold->list_prev; in list_link_replace()
229 lold->list_prev->list_next = lnew; in list_link_replace()
230 lold->list_next->list_prev = lnew; in list_link_replace()