Searched refs:p_Head (Results 1 – 2 of 2) sorted by relevance
143 #define NCSW_LIST_FOR_EACH(p_Pos, p_Head) \ argument144 for (p_Pos = NCSW_LIST_FIRST(p_Head); p_Pos != (p_Head); p_Pos = NCSW_LIST_NEXT(p_Pos))217 NCSW_LIST_PREV(NCSW_LIST_NEXT(p_Head)) = p_New; 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()239 NCSW_LIST_NEXT(NCSW_LIST_PREV(p_Head)) = p_New; 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()294 NCSW_LIST_Add(p_Entry, p_Head); in NCSW_LIST_Move()311 NCSW_LIST_AddToTail(p_Entry, p_Head); in NCSW_LIST_MoveToTail()[all …]
43 void NCSW_LIST_Append(t_List *p_NewList, t_List *p_Head) in NCSW_LIST_Append() argument50 t_List *p_Cur = NCSW_LIST_NEXT(p_Head); in NCSW_LIST_Append()52 NCSW_LIST_PREV(p_First) = p_Head; in NCSW_LIST_Append()53 NCSW_LIST_FIRST(p_Head) = p_First; in NCSW_LIST_Append()