Searched refs:curelm (Results 1 - 9 of 9) sorted by relevance

/freebsd-13-stable/crypto/heimdal/lib/gssapi/mech/
H A Dmechqueue.h79 struct type *curelm = (head)->slh_first; \
80 while(curelm->field.sle_next != (elm)) \
81 curelm = curelm->field.sle_next; \
82 curelm->field.sle_next = \
83 curelm->field.sle_next->field.sle_next; \
/freebsd-13-stable/sys/sys/
H A Dqueue.h217 QUEUE_TYPEOF(type) *curelm = SLIST_FIRST(head1); \
218 if (curelm == NULL) { \
222 while (SLIST_NEXT(curelm, field) != NULL) \
223 curelm = SLIST_NEXT(curelm, field); \
224 SLIST_NEXT(curelm, field) = SLIST_FIRST(head2); \
280 QUEUE_TYPEOF(type) *curelm = SLIST_FIRST(head); \
281 while (SLIST_NEXT(curelm, field) != (elm)) \
282 curelm = SLIST_NEXT(curelm, fiel
[all...]
/freebsd-13-stable/sys/contrib/ck/include/
H A Dck_queue.h198 struct type *curelm = (head)->cslh_first; \
199 while (curelm->field.csle_next != (elm)) \
200 curelm = curelm->field.csle_next; \
201 CK_SLIST_REMOVE_AFTER(curelm, field); \
307 struct type *curelm = (head)->cstqh_first; \
308 while (curelm->field.cstqe_next != (elm)) \
309 curelm = curelm->field.cstqe_next; \
310 CK_STAILQ_REMOVE_AFTER(head, curelm, fiel
[all...]
/freebsd-13-stable/contrib/elftoolchain/common/
H A D_elftc.h192 struct type *curelm = (head)->stqh_first; \
193 while (curelm->field.stqe_next != (elm)) \
194 curelm = curelm->field.stqe_next; \
195 if ((curelm->field.stqe_next = \
196 curelm->field.stqe_next->field.stqe_next) == NULL) \
197 (head)->stqh_last = &(curelm)->field.stqe_next; \
/freebsd-13-stable/contrib/openbsm/compat/
H A Dqueue.h196 struct type *curelm = SLIST_FIRST((head)); \
197 while (SLIST_NEXT(curelm, field) != (elm)) \
198 curelm = SLIST_NEXT(curelm, field); \
199 SLIST_NEXT(curelm, field) = \
200 SLIST_NEXT(SLIST_NEXT(curelm, field), field); \
288 struct type *curelm = STAILQ_FIRST((head)); \
289 while (STAILQ_NEXT(curelm, field) != (elm)) \
290 curelm = STAILQ_NEXT(curelm, fiel
[all...]
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Dsys-queue.h244 struct type *curelm = (head)->slh_first; \
246 while (curelm->field.sle_next != (elm)) \
247 curelm = curelm->field.sle_next; \
248 curelm->field.sle_next = \
249 curelm->field.sle_next->field.sle_next; \
/freebsd-13-stable/sys/dev/aic7xxx/
H A Daic79xx_osm.c1162 struct ccb_hdr *curelm; local
1165 curelm = SLIST_FIRST(list);
1167 if (curelm == &abort_ccb->ccb_h) {
1171 while(curelm != NULL) {
1175 SLIST_NEXT(curelm, sim_links.sle);
1179 SLIST_NEXT(curelm,
1185 curelm = nextelm;
H A Daic7xxx_osm.c1223 struct ccb_hdr *curelm; local
1226 curelm = SLIST_FIRST(list);
1228 if (curelm == &abort_ccb->ccb_h) {
1232 while(curelm != NULL) {
1236 SLIST_NEXT(curelm, sim_links.sle);
1240 SLIST_NEXT(curelm,
1246 curelm = nextelm;
/freebsd-13-stable/sys/dev/firewire/
H A Dsbp_targ.c890 struct ccb_hdr *curelm; local
907 curelm = SLIST_FIRST(list);
909 if (curelm == &accb->ccb_h) {
913 while (curelm != NULL) {
916 nextelm = SLIST_NEXT(curelm, sim_links.sle);
919 SLIST_NEXT(curelm, sim_links.sle) =
923 curelm = nextelm;

Completed in 187 milliseconds