Home
last modified time | relevance | path

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

/freebsd/sys/contrib/ncsw/inc/etc/
H A Dlist_ext.h258 static __inline__ void NCSW_LIST_Del(t_List *p_Entry) in NCSW_LIST_Del() argument
260 NCSW_LIST_PREV(NCSW_LIST_NEXT(p_Entry)) = NCSW_LIST_PREV(p_Entry); in NCSW_LIST_Del()
261 NCSW_LIST_NEXT(NCSW_LIST_PREV(p_Entry)) = NCSW_LIST_NEXT(p_Entry); in NCSW_LIST_Del()
274 static __inline__ void NCSW_LIST_DelAndInit(t_List *p_Entry) in NCSW_LIST_DelAndInit() argument
276 NCSW_LIST_Del(p_Entry); in NCSW_LIST_DelAndInit()
277 INIT_LIST(p_Entry); in NCSW_LIST_DelAndInit()
291 static __inline__ void NCSW_LIST_Move(t_List *p_Entry, t_List *p_Head) in NCSW_LIST_Move() argument
293 NCSW_LIST_Del(p_Entry); in NCSW_LIST_Move()
294 NCSW_LIST_Add(p_Entry, p_Head); in NCSW_LIST_Move()
308 static __inline__ void NCSW_LIST_MoveToTail(t_List *p_Entry, t_List *p_Head) in NCSW_LIST_MoveToTail() argument
[all …]