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

/freebsd-current/sys/contrib/ncsw/inc/etc/
H A Dlist_ext.h210 @Param[in] p_New - A pointer to a new list entry to be added.
215 static __inline__ void NCSW_LIST_Add(t_List *p_New, t_List *p_Head) argument
217 NCSW_LIST_PREV(NCSW_LIST_NEXT(p_Head)) = p_New;
218 NCSW_LIST_NEXT(p_New) = NCSW_LIST_NEXT(p_Head);
219 NCSW_LIST_PREV(p_New) = p_Head;
220 NCSW_LIST_NEXT(p_Head) = p_New;
232 @Param[in] p_New - A pointer to a new list entry to be added.
237 static __inline__ void NCSW_LIST_AddToTail(t_List *p_New, t_List *p_Head) argument
239 NCSW_LIST_NEXT(NCSW_LIST_PREV(p_Head)) = p_New;
240 NCSW_LIST_PREV(p_New)
[all...]

Completed in 77 milliseconds