Searched refs:p_Entry (Results 1 – 1 of 1) sorted by relevance
258 static __inline__ void NCSW_LIST_Del(t_List *p_Entry) in NCSW_LIST_Del() argument260 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() argument276 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() argument293 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 …]