Home
last modified time | relevance | path

Searched refs:slh_first (Results 1 – 7 of 7) sorted by relevance

/titanic_41/usr/src/lib/libsmbfs/smb/
H A Dqueue.h57 struct type *slh_first; /* first element */ \
68 #define SLIST_EMPTY(head) ((head)->slh_first == NULL)
70 #define SLIST_FIRST(head) ((head)->slh_first)
/titanic_41/usr/src/cmd/sendmail/db/include/
H A Dshqueue.h38 ssize_t slh_first; /* first element */ \
56 ((struct type *)(((u_int8_t *)(head)) + (head)->slh_first))
59 ((head)->slh_first == -1 ? NULL : \
60 ((struct type *)(((u_int8_t *)(head)) + (head)->slh_first)))
85 #define SH_LIST_INIT(head) (head)->slh_first = -1
100 if ((head)->slh_first != -1) { \
102 (head)->slh_first - SH_PTR_TO_OFF(head, elm); \
107 (head)->slh_first = SH_PTR_TO_OFF(head, elm); \
108 (elm)->field.sle_prev = SH_PTR_TO_OFF(elm, &(head)->slh_first); \
/titanic_41/usr/src/uts/common/sys/
H A Dqueue.h195 struct type *slh_first; /* first element */ \
210 (head)->slh_first = NULL; \
221 (elm)->field.sle_next = (head)->slh_first; \
222 (head)->slh_first = (elm); \
227 (head)->slh_first = (head)->slh_first->field.sle_next; \
232 if ((head)->slh_first == (elm)) { \
236 struct type *curelm = (head)->slh_first; \
246 for ((var) = (head)->slh_first; (var); (var) = (var)->field.sle_next)
251 #define SLIST_EMPTY(head) ((head)->slh_first == NULL)
252 #define SLIST_FIRST(head) ((head)->slh_first)
/titanic_41/usr/src/cmd/ssh/include/
H A Dsys-queue.h182 struct type *slh_first; /* first element */ \
196 #define SLIST_FIRST(head) ((head)->slh_first)
219 (elm)->field.sle_next = (head)->slh_first; \
220 (head)->slh_first = (elm); \
224 (head)->slh_first = (head)->slh_first->field.sle_next; \
228 if ((head)->slh_first == (elm)) { \
232 struct type *curelm = (head)->slh_first; \
/titanic_41/usr/src/uts/common/io/drm/
H A Dqueue.h142 struct type *slh_first; /* first element */ \
156 #define SLIST_EMPTY(head) ((head)->slh_first == NULL)
158 #define SLIST_FIRST(head) ((head)->slh_first)
/titanic_41/usr/src/cmd/ndmpd/include/
H A Dtlm.h566 struct hardlink_node *slh_first; member
/titanic_41/usr/src/cmd/mdb/common/modules/nsmb/
H A Dnsmb.c130 wsp->walk_addr = (uintptr_t)smbw->u.co.co_children.slh_first; in smb_co_walk_init()