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

/freebsd-13-stable/sys/contrib/ncsw/inc/etc/
H A Dlist_ext.h138 @Param[in] p_Head - A pointer to the head for your list pointer.
143 #define NCSW_LIST_FOR_EACH(p_Pos, p_Head) \
144 for (p_Pos = NCSW_LIST_FIRST(p_Head); p_Pos != (p_Head); p_Pos = NCSW_LIST_NEXT(p_Pos))
154 @Param[in] p_Head - A pointer to the head for your list pointer.
156 #define NCSW_LIST_FOR_EACH_SAFE(p_Pos, p_Tmp, p_Head) \
157 for (p_Pos = NCSW_LIST_FIRST(p_Head), p_Tmp = NCSW_LIST_FIRST(p_Pos); \
158 p_Pos != (p_Head); \
170 @Param[in] p_Head - A pointer to the head for your list pointer.
176 #define NCSW_LIST_FOR_EACH_OBJECT_SAFE(p_Pos, p_Tmp, p_Head, typ
215 NCSW_LIST_Add(t_List *p_New, t_List *p_Head) argument
237 NCSW_LIST_AddToTail(t_List *p_New, t_List *p_Head) argument
291 NCSW_LIST_Move(t_List *p_Entry, t_List *p_Head) argument
308 NCSW_LIST_MoveToTail(t_List *p_Entry, t_List *p_Head) argument
[all...]
/freebsd-13-stable/sys/contrib/ncsw/etc/
H A Dncsw_list.c43 void NCSW_LIST_Append(t_List *p_NewList, t_List *p_Head) argument
50 t_List *p_Cur = NCSW_LIST_NEXT(p_Head);
52 NCSW_LIST_PREV(p_First) = p_Head;
53 NCSW_LIST_FIRST(p_Head) = p_First;

Completed in 65 milliseconds