Home
last modified time | relevance | path

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

/freebsd/sys/contrib/ncsw/inc/etc/
H A Dlist_ext.h84 #define NCSW_LIST_PREV NCSW_LIST_LAST macro
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()
239 NCSW_LIST_NEXT(NCSW_LIST_PREV(p_Head)) = p_New; in NCSW_LIST_AddToTail()
240 NCSW_LIST_PREV(p_New) = NCSW_LIST_PREV(p_Head); in NCSW_LIST_AddToTail()
242 NCSW_LIST_PREV(p_Head) = p_New; in NCSW_LIST_AddToTail()
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()
/freebsd/sys/contrib/ncsw/etc/
H A Dncsw_list.c52 NCSW_LIST_PREV(p_First) = p_Head; in NCSW_LIST_Append()