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

/freebsd-11-stable/sys/contrib/ncsw/inc/etc/
H A Dlist_ext.h137 @Param[in] p_Head - A pointer to the head for your list pointer.
142 #define LIST_FOR_EACH(p_Pos, p_Head) \
143 for (p_Pos = NCSW_LIST_FIRST(p_Head); p_Pos != (p_Head); p_Pos = NCSW_LIST_NEXT(p_Pos))
153 @Param[in] p_Head - A pointer to the head for your list pointer.
155 #define LIST_FOR_EACH_SAFE(p_Pos, p_Tmp, p_Head) \
156 for (p_Pos = NCSW_LIST_FIRST(p_Head), p_Tmp = NCSW_LIST_FIRST(p_Pos); \
157 p_Pos != (p_Head); \
169 @Param[in] p_Head - A pointer to the head for your list pointer.
175 #define LIST_FOR_EACH_OBJECT_SAFE(p_Pos, p_Tmp, p_Head, typ
214 LIST_Add(t_List *p_New, t_List *p_Head) argument
236 LIST_AddToTail(t_List *p_New, t_List *p_Head) argument
290 LIST_Move(t_List *p_Entry, t_List *p_Head) argument
307 LIST_MoveToTail(t_List *p_Entry, t_List *p_Head) argument
[all...]
/freebsd-11-stable/sys/contrib/ncsw/etc/
H A Dlist.c43 void 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 111 milliseconds