Home
last modified time | relevance | path

Searched refs:p_New (Results 1 – 1 of 1) sorted by relevance

/freebsd/sys/contrib/ncsw/inc/etc/
H A Dlist_ext.h215 static __inline__ void NCSW_LIST_Add(t_List *p_New, t_List *p_Head) in NCSW_LIST_Add() argument
217 NCSW_LIST_PREV(NCSW_LIST_NEXT(p_Head)) = p_New; in NCSW_LIST_Add()
218 NCSW_LIST_NEXT(p_New) = NCSW_LIST_NEXT(p_Head); in NCSW_LIST_Add()
219 NCSW_LIST_PREV(p_New) = p_Head; in NCSW_LIST_Add()
220 NCSW_LIST_NEXT(p_Head) = p_New; in NCSW_LIST_Add()
237 static __inline__ void NCSW_LIST_AddToTail(t_List *p_New, t_List *p_Head) in NCSW_LIST_AddToTail() argument
239 NCSW_LIST_NEXT(NCSW_LIST_PREV(p_Head)) = p_New; in NCSW_LIST_AddToTail()
240 NCSW_LIST_PREV(p_New) = NCSW_LIST_PREV(p_Head); in NCSW_LIST_AddToTail()
241 NCSW_LIST_NEXT(p_New) = p_Head; in NCSW_LIST_AddToTail()
242 NCSW_LIST_PREV(p_Head) = p_New; in NCSW_LIST_AddToTail()