Symbol: next
bin/date/vary.c
425
for (; v; v = v->next) {
bin/date/vary.c
503
n = v->next;
bin/date/vary.c
90
while (v->next)
bin/date/vary.c
91
v = v->next;
bin/date/vary.c
92
nextp = &v->next;
bin/date/vary.c
99
(*nextp)->next = NULL;
bin/date/vary.h
31
struct vary *next;
bin/setfacl/setfacl.c
240
TAILQ_FOREACH(entry, &entrylist, next) {
bin/setfacl/setfacl.c
382
TAILQ_INSERT_TAIL(&entrylist, entry, next);
bin/setfacl/setfacl.c
394
TAILQ_INSERT_TAIL(&entrylist, entry, next);
bin/setfacl/setfacl.c
415
TAILQ_INSERT_TAIL(&entrylist, entry, next);
bin/setfacl/setfacl.c
420
TAILQ_INSERT_TAIL(&entrylist, entry, next);
bin/setfacl/setfacl.c
431
TAILQ_INSERT_TAIL(&entrylist, entry, next);
bin/setfacl/setfacl.c
439
TAILQ_INSERT_TAIL(&entrylist, entry, next);
bin/setfacl/setfacl.c
460
TAILQ_INSERT_TAIL(&entrylist, entry, next);
bin/setfacl/setfacl.c
58
TAILQ_ENTRY(sf_entry) next;
bin/sh/alias.c
101
*app = ap->next;
bin/sh/alias.c
126
app = &(*app)->next;
bin/sh/alias.c
128
*app = ap->next;
bin/sh/alias.c
144
for (ap = atab[hashalias(name)]; ap; ap = ap->next) {
bin/sh/alias.c
182
for (ap = atab[i]; ap; ap = ap->next)
bin/sh/alias.c
263
if (index->next != NULL)
bin/sh/alias.c
264
return (index->next);
bin/sh/alias.c
67
ap->next = *app;
bin/sh/alias.c
88
for (ap = *app; ap; app = &(ap->next), ap = ap->next) {
bin/sh/alias.h
38
struct alias *next;
bin/sh/eval.c
189
union node *next;
bin/sh/eval.c
200
next = NULL;
bin/sh/eval.c
210
next = n->nbinary.ch2;
bin/sh/eval.c
217
next = n->nbinary.ch2;
bin/sh/eval.c
223
next = n->nbinary.ch2;
bin/sh/eval.c
240
next = n->nif.ifpart;
bin/sh/eval.c
242
next = n->nif.elsepart;
bin/sh/eval.c
255
next = evalcase(n);
bin/sh/eval.c
258
next = n->nclist.body;
bin/sh/eval.c
266
next = n->nclist.next;
bin/sh/eval.c
269
defun(n->narg.text, n->narg.next);
bin/sh/eval.c
292
n = next;
bin/sh/eval.c
353
for (argp = n->nfor.args ; argp ; argp = argp->narg.next) {
bin/sh/eval.c
395
for (cp = n->ncase.cases ; cp ; cp = cp->nclist.next) {
bin/sh/eval.c
396
for (patp = cp->nclist.pattern ; patp ; patp = patp->narg.next) {
bin/sh/eval.c
398
while (cp->nclist.next &&
bin/sh/eval.c
401
cp = cp->nclist.next;
bin/sh/eval.c
402
if (cp->nclist.next &&
bin/sh/eval.c
527
for (redir = n ; redir ; redir = redir->nfile.next) {
bin/sh/eval.c
573
for (lp = n->npipe.cmdlist ; lp ; lp = lp->next)
bin/sh/eval.c
578
for (lp = n->npipe.cmdlist ; lp ; lp = lp->next) {
bin/sh/eval.c
581
if (lp->next) {
bin/sh/eval.c
735
arg = &arg->next->narg;
bin/sh/eval.c
894
for (argp = cmd->ncmd.args ; argp ; argp = argp->narg.next) {
bin/sh/exec.c
273
for (cmdp = *pp ; cmdp ; cmdp = cmdp->next) {
bin/sh/exec.c
532
*pp = cmdp->next;
bin/sh/exec.c
535
pp = &cmdp->next;
bin/sh/exec.c
576
for (cmdp = *pp ; cmdp ; cmdp = cmdp->next) {
bin/sh/exec.c
579
pp = &cmdp->next;
bin/sh/exec.c
585
cmdp->next = NULL;
bin/sh/exec.c
601
if (e->next != NULL) {
bin/sh/exec.c
602
e = e->next;
bin/sh/exec.c
630
*lastcmdentry = cmdp->next;
bin/sh/exec.c
79
struct tblentry *next; /* next entry in hash chain */
bin/sh/expand.c
1531
for (n = args; n != NULL; n = n->narg.next) {
bin/sh/expand.c
1539
for (n = args; n != NULL; n = n->narg.next)
bin/sh/expand.c
318
*argbackq = (*argbackq)->next;
bin/sh/expand.c
810
*argbackq = (*argbackq)->next;
bin/sh/jobs.c
105
struct job *next; /* job used after this one */
bin/sh/jobs.c
1411
for (lp = n->npipe.cmdlist ; lp ; lp = lp->next) {
bin/sh/jobs.c
1413
if (lp->next)
bin/sh/jobs.c
1462
for (np = n->ncmd.args ; np ; np = np->narg.next) {
bin/sh/jobs.c
1464
if (np->narg.next)
bin/sh/jobs.c
1467
for (np = n->ncmd.redirect ; np ; np = np->nfile.next) {
bin/sh/jobs.c
768
if (jp[i].next != NULL)
bin/sh/jobs.c
769
jp[i].next = &jp[jp[i].next -
bin/sh/jobs.c
800
jp->next = NULL;
bin/sh/jobs.c
819
for (prev = NULL, jp = jobmru; jp != NULL; prev = jp, jp = jp->next) {
bin/sh/jobs.c
822
prev->next = jp->next;
bin/sh/jobs.c
824
jobmru = jp->next;
bin/sh/jobs.c
825
jp->next = jobmru;
bin/sh/jobs.c
830
cj->next = jobmru;
bin/sh/jobs.c
839
for (prev = NULL, jp = jobmru; jp != NULL; prev = jp, jp = jp->next) {
bin/sh/jobs.c
842
prev->next = jp->next;
bin/sh/jobs.c
844
jobmru = jp->next;
bin/sh/jobs.c
860
for (jp = jobmru; jp != NULL; jp = jp->next)
bin/sh/jobs.c
864
for (jp = jobmru; jp != NULL; jp = jp->next)
bin/sh/parser.c
1175
nlpp = &(*nlpp)->next;
bin/sh/parser.c
1177
(*nlpp)->next = NULL;
bin/sh/parser.c
1217
while (here->next != NULL)
bin/sh/parser.c
1218
here = here->next;
bin/sh/parser.c
1219
here->next = heredoclist;
bin/sh/parser.c
141
t->next = parser_temp;
bin/sh/parser.c
173
parser_temp = t->next;
bin/sh/parser.c
192
parser_temp = t->next;
bin/sh/parser.c
2378
n.narg.next = NULL;
bin/sh/parser.c
261
pnext = &n->narg.next;
bin/sh/parser.c
394
prev->next = lp;
bin/sh/parser.c
396
lp->next = NULL;
bin/sh/parser.c
430
rpp = &n2->nfile.next;
bin/sh/parser.c
485
app = &n2->narg.next;
bin/sh/parser.c
501
n2->narg.next = NULL;
bin/sh/parser.c
542
app = &ap->narg.next;
bin/sh/parser.c
545
ap->narg.next = NULL;
bin/sh/parser.c
560
cpp = &cp->nclist.next;
bin/sh/parser.c
603
rpp = &n2->nfile.next;
bin/sh/parser.c
652
app = &n->narg.next;
bin/sh/parser.c
657
rpp = &n->nfile.next;
bin/sh/parser.c
659
} else if (lasttoken == TLP && app == &args->narg.next
bin/sh/parser.c
680
n->narg.next = command();
bin/sh/parser.c
704
n->narg.next = NULL;
bin/sh/parser.c
770
here->next = NULL;
bin/sh/parser.c
774
for (p = heredoclist ; p->next ; p = p->next);
bin/sh/parser.c
775
p->next = here;
bin/sh/parser.c
797
heredoclist = here->next;
bin/sh/parser.c
81
struct heredoc *next; /* next here document in list */
bin/sh/parser.c
88
struct parser_temp *next;
bin/sh/redir.c
123
sv->next = redirlist;
bin/sh/redir.c
128
for (n = redir ; n ; n = n->nfile.next) {
bin/sh/redir.c
327
redirlist = rp->next;
bin/sh/redir.c
349
for (rp = redirlist ; rp ; rp = rp->next) {
bin/sh/redir.c
64
struct redirtab *next;
bin/sh/show.c
124
for (np = cmd->ncmd.args ; np ; np = np->narg.next) {
bin/sh/show.c
130
for (np = cmd->ncmd.redirect ; np ; np = np->nfile.next) {
bin/sh/show.c
95
for (lp = n->npipe.cmdlist ; lp ; lp = lp->next) {
bin/sh/show.c
97
if (lp->next)
bin/sh/var.c
162
vp->next = *vpp;
bin/sh/var.c
172
vps1.next = *vpp;
bin/sh/var.c
379
vp->next = *vpp;
bin/sh/var.c
552
for (vp = *vpp ; vp ; vp = vp->next)
bin/sh/var.c
558
for (vp = *vpp ; vp ; vp = vp->next)
bin/sh/var.c
602
for (vp = *vpp; vp; vp = vp->next) {
bin/sh/var.c
612
for (vp = *vpp; vp; vp = vp->next) {
bin/sh/var.c
688
for (vp = *vpp ; vp ; vp = vp->next) {
bin/sh/var.c
776
lvp->next = localvars;
bin/sh/var.c
795
localvars = lvp->next;
bin/sh/var.c
901
*vpp = vp->next;
bin/sh/var.c
953
for (vp = *vpp ; vp ; vpp = &vp->next, vp = *vpp) {
bin/sh/var.h
52
struct var *next; /* next entry in hash list */
bin/sh/var.h
63
struct localvar *next; /* next local variable in list */
cddl/usr.sbin/zfsd/callout.cc
179
Callout *next(s_activeCallouts.front());
cddl/usr.sbin/zfsd/callout.cc
180
itimerval timerval = { { 0, 0 }, next->m_interval };
cddl/usr.sbin/zfsd/case_file.cc
165
CaseFileList::iterator next = casefile;
cddl/usr.sbin/zfsd/case_file.cc
166
next++;
cddl/usr.sbin/zfsd/case_file.cc
169
casefile = next;
crypto/heimdal/admin/purge.c
46
struct e *next;
crypto/heimdal/admin/purge.c
54
for (e = head; e != NULL; e = e->next)
crypto/heimdal/admin/purge.c
82
e->next = *head;
crypto/heimdal/admin/purge.c
90
struct e *next = head->next;
crypto/heimdal/admin/purge.c
93
head = next;
crypto/heimdal/appl/afsutil/afslog.c
132
struct cell_list *next;
crypto/heimdal/appl/afsutil/afslog.c
151
for(p = cell_list, q = &cell_list; p; q = &p->next, p = p->next)
crypto/heimdal/appl/afsutil/afslog.c
162
p->next = NULL;
crypto/heimdal/appl/afsutil/afslog.c
294
for(p = cell_list; p; p = p->next) {
crypto/heimdal/appl/ftp/ftp/ruserpass.c
127
next:
crypto/heimdal/appl/ftp/ftp/ruserpass.c
170
goto next;
crypto/heimdal/appl/ftp/ftpd/ls.c
654
goto next;
crypto/heimdal/appl/ftp/ftpd/ls.c
706
next:
crypto/heimdal/appl/gssmask/gssmask.c
113
h->next = c->handles;
crypto/heimdal/appl/gssmask/gssmask.c
130
*h = (*h)->next;
crypto/heimdal/appl/gssmask/gssmask.c
144
h = &((*h)->next);
crypto/heimdal/appl/gssmask/gssmask.c
161
h = h->next;
crypto/heimdal/appl/gssmask/gssmask.c
290
h = h->next;
crypto/heimdal/appl/gssmask/gssmask.c
47
struct handle *next;
crypto/heimdal/appl/rcp/rcp.c
293
goto next;
crypto/heimdal/appl/rcp/rcp.c
297
goto next;
crypto/heimdal/appl/rcp/rcp.c
300
goto next;
crypto/heimdal/appl/rcp/rcp.c
316
goto next;
crypto/heimdal/appl/rcp/rcp.c
326
goto next;
crypto/heimdal/appl/rcp/rcp.c
328
next: close(fd);
crypto/heimdal/appl/telnet/telnet/commands.c
1513
struct env_lst *next; /* pointer to next structure */
crypto/heimdal/appl/telnet/telnet/commands.c
1528
for (ep = envlisthead.next; ep; ep = ep->next) {
crypto/heimdal/appl/telnet/telnet/commands.c
1623
ep->next = envlisthead.next;
crypto/heimdal/appl/telnet/telnet/commands.c
1624
envlisthead.next = ep;
crypto/heimdal/appl/telnet/telnet/commands.c
1626
if (ep->next)
crypto/heimdal/appl/telnet/telnet/commands.c
1627
ep->next->prev = ep;
crypto/heimdal/appl/telnet/telnet/commands.c
1642
ep->prev->next = ep->next;
crypto/heimdal/appl/telnet/telnet/commands.c
1643
if (ep->next)
crypto/heimdal/appl/telnet/telnet/commands.c
1644
ep->next->prev = ep->prev;
crypto/heimdal/appl/telnet/telnet/commands.c
1702
for (ep = envlisthead.next; ep; ep = ep->next) {
crypto/heimdal/appl/telnet/telnet/commands.c
1718
while ((nep = nep->next)) {
crypto/heimdal/appl/telnet/telnet/telnet.c
2181
char *thisitem, *next;
crypto/heimdal/appl/telnet/telnet/telnet.c
2188
while ((next = nextitem(thisitem)) <= netobuf.send) {
crypto/heimdal/appl/telnet/telnet/telnet.c
2189
thisitem = next;
crypto/heimdal/appl/telnet/telnet/telnet.c
2200
next = thisitem;
crypto/heimdal/appl/telnet/telnet/telnet.c
2202
next = nextitem(next);
crypto/heimdal/appl/telnet/telnet/telnet.c
2203
} while (wewant(next) && (nfrontp > next));
crypto/heimdal/appl/telnet/telnet/telnet.c
2204
length = next-thisitem;
crypto/heimdal/appl/telnet/telnet/telnet.c
2207
thisitem = next;
crypto/heimdal/appl/telnet/telnet/telnet.c
665
static char **next;
crypto/heimdal/appl/telnet/telnet/telnet.c
683
next = tnamep;
crypto/heimdal/appl/telnet/telnet/telnet.c
685
if (*next == 0)
crypto/heimdal/appl/telnet/telnet/telnet.c
686
next = tnamep;
crypto/heimdal/appl/telnet/telnet/telnet.c
687
return(*next++);
crypto/heimdal/appl/telnet/telnetd/utility.c
194
char *thisitem, *next;
crypto/heimdal/appl/telnet/telnetd/utility.c
205
while ((next = nextitem(thisitem)) <= nbackp) {
crypto/heimdal/appl/telnet/telnetd/utility.c
206
thisitem = next;
crypto/heimdal/appl/telnet/telnetd/utility.c
221
next = thisitem;
crypto/heimdal/appl/telnet/telnetd/utility.c
223
next = nextitem(next);
crypto/heimdal/appl/telnet/telnetd/utility.c
224
} while (wewant(next) && (nfrontp > next));
crypto/heimdal/appl/telnet/telnetd/utility.c
225
length = next-thisitem;
crypto/heimdal/appl/telnet/telnetd/utility.c
228
thisitem = next;
crypto/heimdal/base/dict.c
154
for (p = dict->tab[v % dict->size]; p != NULL; p = p->next)
crypto/heimdal/base/dict.c
213
h->next = *tabptr;
crypto/heimdal/base/dict.c
216
if (h->next)
crypto/heimdal/base/dict.c
217
h->next->prev = &h->next;
crypto/heimdal/base/dict.c
241
if ((*(h->prev) = h->next) != NULL)
crypto/heimdal/base/dict.c
242
h->next->prev = h->prev;
crypto/heimdal/base/dict.c
261
for (g = *h; g; g = g->next)
crypto/heimdal/base/dict.c
279
for (g = *h; g; g = g->next)
crypto/heimdal/base/dict.c
40
struct hashentry *next;
crypto/heimdal/base/dict.c
58
i = g->next;
crypto/heimdal/kadmin/get.c
340
for(f = data->chead; f != NULL; f = f->next) {
crypto/heimdal/kadmin/get.c
353
for(f = data->chead; f != NULL; f = f->next) {
crypto/heimdal/kadmin/get.c
358
for(f = data->chead; f != NULL; f = f->next) {
crypto/heimdal/kadmin/get.c
388
struct field_info *f, *next;
crypto/heimdal/kadmin/get.c
389
for(f = data->chead; f != NULL; f = next) {
crypto/heimdal/kadmin/get.c
391
next = f->next;
crypto/heimdal/kadmin/get.c
73
struct field_info *next;
crypto/heimdal/kadmin/get.c
95
f->next = NULL;
crypto/heimdal/kadmin/get.c
97
data->ctail = &f->next;
crypto/heimdal/kadmin/kadm_conn.c
239
for(p = kadm_ports; p; p = p->next) {
crypto/heimdal/kadmin/kadm_conn.c
42
struct kadm_port *next;
crypto/heimdal/kadmin/kadm_conn.c
59
p->next = kadm_ports;
crypto/heimdal/kcm/cache.c
102
for (p = ccache_head; p != NULL; p = p->next) {
crypto/heimdal/kcm/cache.c
131
for (p = ccache_head; p != NULL; p = p->next) {
crypto/heimdal/kcm/cache.c
152
for (p = ccache_head; p != NULL; p = p->next) {
crypto/heimdal/kcm/cache.c
164
for (k = p->creds; k != NULL; k = k->next)
crypto/heimdal/kcm/cache.c
218
cache->next = NULL;
crypto/heimdal/kcm/cache.c
235
for (p = &ccache_head; *p != NULL; p = &(*p)->next) {
crypto/heimdal/kcm/cache.c
252
*p = (*p)->next;
crypto/heimdal/kcm/cache.c
276
for (p = ccache_head; p != NULL; p = p->next) {
crypto/heimdal/kcm/cache.c
298
slot->next = ccache_head;
crypto/heimdal/kcm/cache.c
352
k = k->next;
crypto/heimdal/kcm/cache.c
522
for (c = ccache->creds; c != NULL; c = c->next)
crypto/heimdal/kcm/cache.c
541
for (c = &ccache->creds; *c != NULL; c = &(*c)->next)
crypto/heimdal/kcm/cache.c
577
for (c = &ccache->creds; *c != NULL; c = &(*c)->next) {
crypto/heimdal/kcm/cache.c
581
*c = cred->next;
crypto/heimdal/kcm/cache.c
626
for (c = ccache->creds; c != NULL; c = c->next) {
crypto/heimdal/kcm/cache.c
667
for (p = ccache_head; p != NULL; p = p->next) {
crypto/heimdal/kcm/cache.c
69
for (p = ccache_head; p != NULL; p = p->next) {
crypto/heimdal/kcm/events.c
114
(*e)->next = NULL;
crypto/heimdal/kcm/events.c
129
for (e = events_head; e != NULL; e = e->next)
crypto/heimdal/kcm/events.c
155
kcm_event *next;
crypto/heimdal/kcm/events.c
157
next = (*e)->next;
crypto/heimdal/kcm/events.c
165
(*e)->next = NULL;
crypto/heimdal/kcm/events.c
168
*e = next;
crypto/heimdal/kcm/events.c
275
for (e = &events_head; *e != NULL; e = &(*e)->next) {
crypto/heimdal/kcm/events.c
277
*e = event->next;
crypto/heimdal/kcm/events.c
306
for (e = &events_head; *e != NULL; e = &(*e)->next) {
crypto/heimdal/kcm/events.c
411
for (e = &events_head; *e != NULL; e = &(*e)->next) {
crypto/heimdal/kcm/events.c
96
for (e = &events_head; *e != NULL; e = &(*e)->next)
crypto/heimdal/kcm/glue.c
202
*cursor = ((struct kcm_creds *)cursor)->next;
crypto/heimdal/kcm/kcm_locl.h
105
struct kcm_ccache_data *next;
crypto/heimdal/kcm/kcm_locl.h
133
struct kcm_event *next;
crypto/heimdal/kcm/kcm_locl.h
74
struct kcm_default_cache *next;
crypto/heimdal/kcm/kcm_locl.h
82
struct kcm_creds *next;
crypto/heimdal/kcm/protocol.c
1076
for (c = default_caches; c != NULL; c = c->next) {
crypto/heimdal/kcm/protocol.c
1102
for (c = &default_caches; *c != NULL; c = &(*c)->next) {
crypto/heimdal/kcm/protocol.c
1107
*c = (*c)->next;
crypto/heimdal/kcm/protocol.c
1132
for (c = default_caches; c != NULL; c = c->next) {
crypto/heimdal/kcm/protocol.c
1144
c->next = default_caches;
crypto/heimdal/kcm/protocol.c
1230
struct kcm_ntlm_cred *next;
crypto/heimdal/kcm/protocol.c
1259
for (c = ntlm_head; c != NULL; c = c->next)
crypto/heimdal/kcm/protocol.c
1305
cred->next = ntlm_head;
crypto/heimdal/kcm/protocol.c
1394
for (cp = &ntlm_head; *cp != NULL; cp = &(*cp)->next) {
crypto/heimdal/kcm/protocol.c
1399
*cp = c->next;
crypto/heimdal/kcm/protocol.c
1678
for (c = ntlm_head; c != NULL; c = c->next) {
crypto/heimdal/kcm/protocol.c
461
for (creds = ccache->creds ; creds ; creds = creds->next) {
crypto/heimdal/kdc/announce.c
162
for (e = g_entries; e != NULL; e = e->next) {
crypto/heimdal/kdc/announce.c
183
e->next = g_entries;
crypto/heimdal/kdc/announce.c
347
*e = (*e)->next;
crypto/heimdal/kdc/announce.c
394
e = &(*e)->next;
crypto/heimdal/kdc/announce.c
444
for (e = g_entries; e != NULL; e = e->next)
crypto/heimdal/kdc/announce.c
472
for (e = g_entries; e != NULL; e = e->next)
crypto/heimdal/kdc/announce.c
53
struct entry *next;
crypto/heimdal/kdc/config.c
44
struct dbinfo *next;
crypto/heimdal/lib/asn1/asn1parse.c
1802
for(sl = (yyvsp[(1) - (4)].sl); sl != NULL; sl = sl->next) {
crypto/heimdal/lib/asn1/asn1parse.c
1815
for(sl = (yyvsp[(2) - (3)].sl); sl != NULL; sl = sl->next)
crypto/heimdal/lib/asn1/asn1parse.c
1825
(yyval.sl)->next = (yyvsp[(3) - (3)].sl);
crypto/heimdal/lib/asn1/asn1parse.c
1834
(yyval.sl)->next = NULL;
crypto/heimdal/lib/asn1/asn1parse.c
276
struct string_list *next;
crypto/heimdal/lib/asn1/asn1parse.c
2799
s->next = NULL;
crypto/heimdal/lib/asn1/asn1parse.c
2808
while (o->next)
crypto/heimdal/lib/asn1/asn1parse.c
2809
o = o->next;
crypto/heimdal/lib/asn1/asn1parse.c
2810
o->next = tail;
crypto/heimdal/lib/asn1/asn1parse.y
278
for(sl = $1; sl != NULL; sl = sl->next) {
crypto/heimdal/lib/asn1/asn1parse.y
290
for(sl = $2; sl != NULL; sl = sl->next)
crypto/heimdal/lib/asn1/asn1parse.y
309
$$->next = $3;
crypto/heimdal/lib/asn1/asn1parse.y
315
$$->next = NULL;
crypto/heimdal/lib/asn1/asn1parse.y
62
struct string_list *next;
crypto/heimdal/lib/asn1/asn1parse.y
976
s->next = NULL;
crypto/heimdal/lib/asn1/asn1parse.y
985
while (o->next)
crypto/heimdal/lib/asn1/asn1parse.y
986
o = o->next;
crypto/heimdal/lib/asn1/asn1parse.y
987
o->next = tail;
crypto/heimdal/lib/asn1/gen.c
101
for (tmp = exports; tmp != NULL; tmp = tmp->next) {
crypto/heimdal/lib/asn1/gen.c
416
for (o = s->value->u.objectidentifiervalue; o != NULL; o = o->next)
crypto/heimdal/lib/asn1/gen.c
426
for (o = s->value->u.objectidentifiervalue; o != NULL; o = o->next)
crypto/heimdal/lib/asn1/gen.c
54
struct import *next;
crypto/heimdal/lib/asn1/gen.c
65
tmp->next = imports;
crypto/heimdal/lib/asn1/gen.c
78
struct sexport *next;
crypto/heimdal/lib/asn1/gen.c
89
tmp->next = exports;
crypto/heimdal/lib/asn1/hash.c
116
h->next = *tabptr;
crypto/heimdal/lib/asn1/hash.c
119
if (h->next)
crypto/heimdal/lib/asn1/hash.c
120
h->next->prev = &h->next;
crypto/heimdal/lib/asn1/hash.c
139
if ((*(h->prev) = h->next))
crypto/heimdal/lib/asn1/hash.c
140
h->next->prev = h->prev;
crypto/heimdal/lib/asn1/hash.c
158
for (g = *h; g; g = g->next)
crypto/heimdal/lib/asn1/hash.c
79
hptr = hptr->next)
crypto/heimdal/lib/asn1/hash.h
42
struct hashentry *next;
crypto/heimdal/lib/asn1/symbol.h
149
struct objid *next;
crypto/heimdal/lib/asn1/template.c
548
unsigned char *next;
crypto/heimdal/lib/asn1/template.c
559
next = elptr + ellen;
crypto/heimdal/lib/asn1/template.c
560
if (next < elptr) {
crypto/heimdal/lib/asn1/template.c
564
elptr = next;
crypto/heimdal/lib/com_err/com_err.c
164
for (et = _et_list; et; et = et->next) {
crypto/heimdal/lib/com_err/com_err.c
169
new_table->next = _et_list;
crypto/heimdal/lib/com_err/com_right.h
69
struct et_list *next;
crypto/heimdal/lib/com_err/compile_et.c
162
for(ec = codes; ec; ec = ec->next) {
crypto/heimdal/lib/com_err/compile_et.c
164
(ec->next != NULL) ? "," : "");
crypto/heimdal/lib/com_err/compile_et.c
91
for(ec = codes, n = 0; ec; ec = ec->next, n++) {
crypto/heimdal/lib/com_err/compile_et.h
61
struct error_code *next, **tail;
crypto/heimdal/lib/com_err/compile_et.h
70
(L)->tail = &(V)->next; \
crypto/heimdal/lib/com_err/compile_et.h
71
(L)->next = NULL; \
crypto/heimdal/lib/com_err/compile_et.h
74
(L)->tail = &(V)->next; \
crypto/heimdal/lib/com_err/error.c
101
et->next = NULL;
crypto/heimdal/lib/com_err/error.c
111
et = et->next;
crypto/heimdal/lib/com_err/error.c
53
for (p = list; p; p = p->next)
crypto/heimdal/lib/com_err/error.c
63
for (p = list; p; p = p->next) {
crypto/heimdal/lib/com_err/error.c
90
for (end = list, et = *list; et; end = &et->next, et = et->next)
crypto/heimdal/lib/com_err/parse.c
1446
ec->next = NULL;
crypto/heimdal/lib/com_err/parse.y
124
ec->next = NULL;
crypto/heimdal/lib/hdb/dbinfo.c
114
dt = &di->next;
crypto/heimdal/lib/hdb/dbinfo.c
117
for ( ; db_binding != NULL; db_binding = db_binding->next) {
crypto/heimdal/lib/hdb/dbinfo.c
134
dt = &di->next;
crypto/heimdal/lib/hdb/dbinfo.c
146
for(di = databases; di; di = di->next) {
crypto/heimdal/lib/hdb/dbinfo.c
177
return dbprevp->next;
crypto/heimdal/lib/hdb/dbinfo.c
228
ndi = di->next;
crypto/heimdal/lib/hdb/dbinfo.c
44
struct hdb_dbinfo *next;
crypto/heimdal/lib/hdb/keytab.c
306
c->next = TRUE;
crypto/heimdal/lib/hdb/keytab.c
338
c->next = FALSE;
crypto/heimdal/lib/hdb/keytab.c
341
while (c->next) {
crypto/heimdal/lib/hdb/keytab.c
355
c->next = FALSE;
crypto/heimdal/lib/hdb/keytab.c
387
c->next = TRUE;
crypto/heimdal/lib/hdb/keytab.c
402
if (!c->next)
crypto/heimdal/lib/hdb/keytab.c
46
int first, next;
crypto/heimdal/lib/hdb/mkey.c
102
for(p = *inout; p; p = p->next)
crypto/heimdal/lib/hdb/mkey.c
108
p->next = *inout;
crypto/heimdal/lib/hdb/mkey.c
140
p->next = *mkey;
crypto/heimdal/lib/hdb/mkey.c
359
for(p = mkey; p; p = p->next) {
crypto/heimdal/lib/hdb/mkey.c
389
mkey = mkey->next;
crypto/heimdal/lib/hdb/mkey.c
43
struct hdb_master_key_data *next;
crypto/heimdal/lib/hdb/mkey.c
56
mkey = mkey->next;
crypto/heimdal/lib/hx509/env.c
119
n->next = NULL;
crypto/heimdal/lib/hx509/env.c
130
while (e->next)
crypto/heimdal/lib/hx509/env.c
131
e = e->next;
crypto/heimdal/lib/hx509/env.c
132
e->next = n;
crypto/heimdal/lib/hx509/env.c
161
env = env->next;
crypto/heimdal/lib/hx509/env.c
184
env = env->next;
crypto/heimdal/lib/hx509/env.c
209
env = env->next;
crypto/heimdal/lib/hx509/env.c
218
hx509_env next = b->next;
crypto/heimdal/lib/hx509/env.c
227
b = next;
crypto/heimdal/lib/hx509/env.c
68
n->next = NULL;
crypto/heimdal/lib/hx509/env.c
84
while (e->next)
crypto/heimdal/lib/hx509/env.c
85
e = e->next;
crypto/heimdal/lib/hx509/env.c
86
e->next = n;
crypto/heimdal/lib/hx509/error.c
113
msg->next = context->error;
crypto/heimdal/lib/hx509/error.c
178
for (msg = context->error; msg; msg = msg->next)
crypto/heimdal/lib/hx509/error.c
180
msg->next != NULL ? "; " : "");
crypto/heimdal/lib/hx509/error.c
43
hx509_error next;
crypto/heimdal/lib/hx509/error.c
52
hx509_error m2 = msg->next;
crypto/heimdal/lib/hx509/file.c
143
h->next = *headers;
crypto/heimdal/lib/hx509/file.c
155
headers = headers->next;
crypto/heimdal/lib/hx509/file.c
172
h = h->next;
crypto/heimdal/lib/hx509/file.c
90
headers->next ? "" : "\n");
crypto/heimdal/lib/hx509/file.c
91
headers = headers->next;
crypto/heimdal/lib/hx509/hx509.h
112
struct hx509_pem_header *next;
crypto/heimdal/lib/hx509/hx_locl.h
202
struct hx509_env_data *next;
crypto/heimdal/lib/hx509/revoke.c
1478
time_t next = crl->expire;
crypto/heimdal/lib/hx509/revoke.c
1479
if (next == 0)
crypto/heimdal/lib/hx509/revoke.c
1480
next = time(NULL) + 24 * 3600 * 365;
crypto/heimdal/lib/hx509/revoke.c
1483
c.tbsCertList.nextUpdate->u.generalTime = next;
crypto/heimdal/lib/hx509/sel.c
144
subenv = subenv->next;
crypto/heimdal/lib/kadm5/ad.c
292
for (rr = r->head ; rr != NULL; rr = rr->next) {
crypto/heimdal/lib/kadm5/ipropd_master.c
179
struct slave *next;
crypto/heimdal/lib/kadm5/ipropd_master.c
267
for (p = root; *p; p = &(*p)->next)
crypto/heimdal/lib/kadm5/ipropd_master.c
269
*p = s->next;
crypto/heimdal/lib/kadm5/ipropd_master.c
336
l = l->next;
crypto/heimdal/lib/kadm5/ipropd_master.c
353
s->next = *root;
crypto/heimdal/lib/kadm5/ipropd_master.c
763
slaves = slaves->next;
crypto/heimdal/lib/kadm5/ipropd_master.c
926
for (p = slaves; p != NULL; p = p->next) {
crypto/heimdal/lib/kadm5/ipropd_master.c
951
for (p = slaves; p != NULL; p = p->next) {
crypto/heimdal/lib/kadm5/ipropd_master.c
981
for (p = slaves; p != NULL; p = p->next) {
crypto/heimdal/lib/kadm5/ipropd_master.c
993
for(p = slaves; p != NULL; p = p->next) {
crypto/heimdal/lib/kadm5/private.h
70
struct kadm5_log_peer *next;
crypto/heimdal/lib/kafs/common.c
160
rr = rr->next;
crypto/heimdal/lib/krb5/acache.c
614
error = (*iter->func->next)(iter, &ccred);
crypto/heimdal/lib/krb5/acache.c
775
error = (*iter->func->next)(iter, &cred);
crypto/heimdal/lib/krb5/acache.c
843
error = (*iter->func->next)(iter, &ccred);
crypto/heimdal/lib/krb5/acache.c
848
goto next;
crypto/heimdal/lib/krb5/acache.c
853
goto next;
crypto/heimdal/lib/krb5/acache.c
856
goto next;
crypto/heimdal/lib/krb5/acache.c
860
next:
crypto/heimdal/lib/krb5/acache.c
939
error = (*iter->iter->func->next)(iter->iter, &cache);
crypto/heimdal/lib/krb5/acl.c
107
tmp->next = NULL;
crypto/heimdal/lib/krb5/acl.c
112
acl->last = &tmp->next;
crypto/heimdal/lib/krb5/acl.c
148
acl = acl->next;
crypto/heimdal/lib/krb5/acl.c
43
struct acl_field *next, **last;
crypto/heimdal/lib/krb5/acl.c
55
acl = acl->next;
crypto/heimdal/lib/krb5/acl.c
62
struct acl_field *next;
crypto/heimdal/lib/krb5/acl.c
66
next = acl->next;
crypto/heimdal/lib/krb5/acl.c
68
acl = next;
crypto/heimdal/lib/krb5/config_file.c
545
next_b = b->next;
crypto/heimdal/lib/krb5/config_file.c
599
previous->next = d;
crypto/heimdal/lib/krb5/config_file.c
602
c = c->next;
crypto/heimdal/lib/krb5/config_file.c
643
b = b->next;
crypto/heimdal/lib/krb5/config_file.c
675
for (b = (*pointer)->next; b != NULL; b = b->next) {
crypto/heimdal/lib/krb5/config_file.c
90
for(q = parent; *q != NULL; q = &(*q)->next)
crypto/heimdal/lib/krb5/get_host_realm.c
58
for(n = 0, rr = head; rr; rr = rr->next)
crypto/heimdal/lib/krb5/get_host_realm.c
72
for (i = 0, rr = head; rr; rr = rr->next) {
crypto/heimdal/lib/krb5/init_creds_pw.c
1558
goto next;
crypto/heimdal/lib/krb5/init_creds_pw.c
1569
goto next;
crypto/heimdal/lib/krb5/init_creds_pw.c
1573
goto next;
crypto/heimdal/lib/krb5/init_creds_pw.c
1578
goto next;
crypto/heimdal/lib/krb5/init_creds_pw.c
1584
next:
crypto/heimdal/lib/krb5/keytab_any.c
139
for (ed->a = a; ed->a != NULL; ed->a = ed->a->next) {
crypto/heimdal/lib/krb5/keytab_any.c
173
while ((ed->a = ed->a->next) != NULL) {
crypto/heimdal/lib/krb5/keytab_any.c
216
a = a->next;
crypto/heimdal/lib/krb5/keytab_any.c
242
a = a->next;
crypto/heimdal/lib/krb5/keytab_any.c
39
struct any_data *next;
crypto/heimdal/lib/krb5/keytab_any.c
45
struct any_data *next;
crypto/heimdal/lib/krb5/keytab_any.c
47
for (; a != NULL; a = next) {
crypto/heimdal/lib/krb5/keytab_any.c
48
next = a->next;
crypto/heimdal/lib/krb5/keytab_any.c
80
prev->next = a;
crypto/heimdal/lib/krb5/keytab_any.c
81
a->next = NULL;
crypto/heimdal/lib/krb5/keytab_memory.c
113
for (dp = &mkt_head; *dp != NULL; dp = &(*dp)->next) {
crypto/heimdal/lib/krb5/keytab_memory.c
115
*dp = d->next;
crypto/heimdal/lib/krb5/keytab_memory.c
43
struct mkt_data *next;
crypto/heimdal/lib/krb5/keytab_memory.c
60
for (d = mkt_head; d != NULL; d = d->next)
crypto/heimdal/lib/krb5/keytab_memory.c
91
d->next = mkt_head;
crypto/heimdal/lib/krb5/krb5.h
510
struct krb5_config_binding *next;
crypto/heimdal/lib/krb5/krb5.h
799
struct krb5_krbhst_info *next;
crypto/heimdal/lib/krb5/krb5_ccapi.h
166
cc_int32 (*next)(cc_credentials_iterator_t, cc_credentials_t*);
crypto/heimdal/lib/krb5/krb5_ccapi.h
175
cc_int32 (*next)(cc_ccache_iterator_t, cc_ccache_t*);
crypto/heimdal/lib/krb5/krbhst.c
1006
krb5_krbhst_info *h, *next;
crypto/heimdal/lib/krb5/krbhst.c
1011
for (h = handle->hosts; h != NULL; h = next) {
crypto/heimdal/lib/krb5/krbhst.c
1012
next = h->next;
crypto/heimdal/lib/krb5/krbhst.c
115
for(num_srv = 0, rr = r->head; rr; rr = rr->next)
crypto/heimdal/lib/krb5/krbhst.c
289
(*to)->next = NULL;
crypto/heimdal/lib/krb5/krbhst.c
300
for(h = kd->hosts; h; h = h->next)
crypto/heimdal/lib/krb5/krbhst.c
308
kd->end = &host->next;
crypto/heimdal/lib/krb5/krbhst.c
433
kd->index = &(*kd->index)->next;
crypto/heimdal/lib/krb5/krbhst.c
921
krb5_error_code (*next)(krb5_context, struct krb5_krbhst_data *,
crypto/heimdal/lib/krb5/krbhst.c
928
next = kdc_get_next;
crypto/heimdal/lib/krb5/krbhst.c
933
next = admin_get_next;
crypto/heimdal/lib/krb5/krbhst.c
939
next = kpasswd_get_next;
crypto/heimdal/lib/krb5/krbhst.c
945
next = krb524_get_next;
crypto/heimdal/lib/krb5/krbhst.c
95
for(num_srv = 0, rr = r->head; rr; rr = rr->next)
crypto/heimdal/lib/krb5/krbhst.c
956
kd->get_next = next;
crypto/heimdal/lib/krb5/mcache.c
101
m->next = mcc_head;
crypto/heimdal/lib/krb5/mcache.c
113
for (m = mcc_head; m != NULL; m = m->next)
crypto/heimdal/lib/krb5/mcache.c
207
for(n = &mcc_head; n && *n; n = &(*n)->next) {
crypto/heimdal/lib/krb5/mcache.c
209
*n = m->next;
crypto/heimdal/lib/krb5/mcache.c
226
l = l->next;
crypto/heimdal/lib/krb5/mcache.c
252
l->next = m->creds;
crypto/heimdal/lib/krb5/mcache.c
257
m->creds = l->next;
crypto/heimdal/lib/krb5/mcache.c
307
*cursor = l->next;
crypto/heimdal/lib/krb5/mcache.c
333
*q = p->next;
crypto/heimdal/lib/krb5/mcache.c
338
q = &p->next;
crypto/heimdal/lib/krb5/mcache.c
389
if (m->next)
crypto/heimdal/lib/krb5/mcache.c
390
m->next->refcnt++;
crypto/heimdal/lib/krb5/mcache.c
391
iter->cache = m->next;
crypto/heimdal/lib/krb5/mcache.c
427
for(n = &mcc_head; n && *n; n = &(*n)->next) {
crypto/heimdal/lib/krb5/mcache.c
429
*n = mfrom->next;
crypto/heimdal/lib/krb5/mcache.c
45
struct link *next;
crypto/heimdal/lib/krb5/mcache.c
47
struct krb5_mcache *next;
crypto/heimdal/lib/krb5/mcache.c
85
for (m_c = mcc_head; m_c != NULL; m_c = m_c->next)
crypto/heimdal/lib/krb5/plugin.c
119
e->next = registered;
crypto/heimdal/lib/krb5/plugin.c
149
for (e = registered; e != NULL; e = e->next) {
crypto/heimdal/lib/krb5/plugin.c
175
e->next = registered;
crypto/heimdal/lib/krb5/plugin.c
283
for (e = registered; e != NULL; e = e->next)
crypto/heimdal/lib/krb5/plugin.c
315
e->next = *list;
crypto/heimdal/lib/krb5/plugin.c
335
for (ret = 0, e = registered; e != NULL; e = e->next) {
crypto/heimdal/lib/krb5/plugin.c
372
struct krb5_plugin *next;
crypto/heimdal/lib/krb5/plugin.c
374
next = list->next;
crypto/heimdal/lib/krb5/plugin.c
376
list = next;
crypto/heimdal/lib/krb5/plugin.c
43
struct krb5_plugin *next;
crypto/heimdal/lib/krb5/plugin.c
59
struct plugin *next;
crypto/heimdal/lib/krb5/plugin.c
87
return p->next;
crypto/heimdal/lib/krb5/scache.c
1012
goto next;
crypto/heimdal/lib/krb5/scache.c
991
next:
crypto/heimdal/lib/krb5/transited.c
110
tmp->next = r->next;
crypto/heimdal/lib/krb5/transited.c
111
r->next = tmp;
crypto/heimdal/lib/krb5/transited.c
114
r->next = tmp->next;
crypto/heimdal/lib/krb5/transited.c
139
for(r = realms; r; r = r->next){
crypto/heimdal/lib/krb5/transited.c
144
while(r->next && r->next->realm[0] == '\0')
crypto/heimdal/lib/krb5/transited.c
145
r = r->next;
crypto/heimdal/lib/krb5/transited.c
146
if(r->next)
crypto/heimdal/lib/krb5/transited.c
147
next_realm = r->next->realm;
crypto/heimdal/lib/krb5/transited.c
167
for(r = realms; r; r = r->next){
crypto/heimdal/lib/krb5/transited.c
246
r->next = NULL;
crypto/heimdal/lib/krb5/transited.c
250
while(p->next) p = p->next;
crypto/heimdal/lib/krb5/transited.c
251
p->next = r;
crypto/heimdal/lib/krb5/transited.c
345
*q = (*q)->next;
crypto/heimdal/lib/krb5/transited.c
349
q = &(*q)->next;
crypto/heimdal/lib/krb5/transited.c
364
p = r->next;
crypto/heimdal/lib/krb5/transited.c
46
struct tr_realm *next;
crypto/heimdal/lib/krb5/transited.c
55
r = r->next;
crypto/heimdal/lib/krb5/transited.c
89
tmp->next = r->next;
crypto/heimdal/lib/krb5/transited.c
90
r->next = tmp;
crypto/heimdal/lib/krb5/transited.c
93
r->next = tmp->next;
crypto/heimdal/lib/krb5/verify_krb5_conf.c
590
for(p = cf; p != NULL; p = p->next) {
crypto/heimdal/lib/krb5/verify_krb5_conf.c
625
for(x = top; x; x = x->next) {
crypto/heimdal/lib/roken/parse_units.c
278
const struct units *next;
crypto/heimdal/lib/roken/parse_units.c
280
for (next = u + 1; next->name && next->mult == u->mult; ++next)
crypto/heimdal/lib/roken/parse_units.c
283
if (next->name) {
crypto/heimdal/lib/roken/parse_units.c
284
for (u2 = next;
crypto/heimdal/lib/roken/parse_units.c
295
u = next;
crypto/heimdal/lib/roken/parse_units.c
74
char *next;
crypto/heimdal/lib/roken/parse_units.c
83
val = strtol(p, &next, 0);
crypto/heimdal/lib/roken/parse_units.c
84
if (p == next) {
crypto/heimdal/lib/roken/parse_units.c
90
p = next;
crypto/heimdal/lib/roken/resolve-test.c
107
for(rr = r->head; rr;rr=rr->next){
crypto/heimdal/lib/roken/resolve.c
121
rr = rr->next;
crypto/heimdal/lib/roken/resolve.c
479
rr = &(*rr)->next;
crypto/heimdal/lib/roken/resolve.c
486
rr = &(*rr)->next;
crypto/heimdal/lib/roken/resolve.c
493
rr = &(*rr)->next;
crypto/heimdal/lib/roken/resolve.c
635
for(rr = r->head; rr; rr = rr->next)
crypto/heimdal/lib/roken/resolve.c
651
*headp = (*headp)->next;
crypto/heimdal/lib/roken/resolve.c
652
(*ss)->next = NULL;
crypto/heimdal/lib/roken/resolve.c
655
headp = &(*headp)->next;
crypto/heimdal/lib/roken/resolve.c
690
(*tt)->next = *headp;
crypto/heimdal/lib/roken/resolve.c
692
headp = &(*tt)->next;
crypto/heimdal/lib/roken/resolve.c
866
rr->next = parse_dns_record(pRec->pNext);
crypto/heimdal/lib/roken/resolve.h
202
struct rk_resource_record *next;
crypto/heimdal/lib/roken/rkpty.c
180
(*next) = c;
crypto/heimdal/lib/roken/rkpty.c
181
next = &(c->next);
crypto/heimdal/lib/roken/rkpty.c
212
for (c = commands; c != NULL; c = c->next) {
crypto/heimdal/lib/roken/rkpty.c
68
struct command *next;
crypto/heimdal/lib/roken/rkpty.c
75
static struct command *commands, **next = &commands;
crypto/heimdal/lib/roken/socket_wrapper.c
102
(item)->next = NULL; \
crypto/heimdal/lib/roken/socket_wrapper.c
106
(item)->next = (list); \
crypto/heimdal/lib/roken/socket_wrapper.c
114
(list) = (item)->next; \
crypto/heimdal/lib/roken/socket_wrapper.c
120
(item)->prev->next = (item)->next; \
crypto/heimdal/lib/roken/socket_wrapper.c
122
if ((item)->next) { \
crypto/heimdal/lib/roken/socket_wrapper.c
123
(item)->next->prev = (item)->prev; \
crypto/heimdal/lib/roken/socket_wrapper.c
127
(item)->next = NULL; \
crypto/heimdal/lib/roken/socket_wrapper.c
237
struct socket_info *prev, *next;
crypto/heimdal/lib/roken/socket_wrapper.c
549
for (i = sockets; i; i = i->next) {
crypto/heimdal/lib/sl/slc-gram.c
1368
(yyvsp[(1) - (2)].assignment)->next = (yyvsp[(2) - (2)].assignment);
crypto/heimdal/lib/sl/slc-gram.c
1381
(yyval.assignment)->next = NULL;
crypto/heimdal/lib/sl/slc-gram.c
1393
(yyval.assignment)->next = NULL;
crypto/heimdal/lib/sl/slc-gram.c
1647
for(a = as; a != NULL; a = a->next) {
crypto/heimdal/lib/sl/slc-gram.c
1713
for(a = as; a != NULL; a = a->next) {
crypto/heimdal/lib/sl/slc-gram.c
1766
for(a = as; a != NULL; a = a->next) {
crypto/heimdal/lib/sl/slc-gram.c
1785
for(as = as->next; as != NULL; as = as->next) {
crypto/heimdal/lib/sl/slc-gram.c
1795
for(; as != NULL; as = as->next) {
crypto/heimdal/lib/sl/slc-gram.c
1852
for(a = a->next; a != NULL; a = a->next)
crypto/heimdal/lib/sl/slc-gram.c
2217
for(a = as; a != NULL; a = a->next)
crypto/heimdal/lib/sl/slc-gram.c
2221
for(a = as; a != NULL; a = a->next)
crypto/heimdal/lib/sl/slc-gram.y
101
$$->next = NULL;
crypto/heimdal/lib/sl/slc-gram.y
138
for(a = as; a != NULL; a = a->next) {
crypto/heimdal/lib/sl/slc-gram.y
204
for(a = as; a != NULL; a = a->next) {
crypto/heimdal/lib/sl/slc-gram.y
257
for(a = as; a != NULL; a = a->next) {
crypto/heimdal/lib/sl/slc-gram.y
276
for(as = as->next; as != NULL; as = as->next) {
crypto/heimdal/lib/sl/slc-gram.y
286
for(; as != NULL; as = as->next) {
crypto/heimdal/lib/sl/slc-gram.y
343
for(a = a->next; a != NULL; a = a->next)
crypto/heimdal/lib/sl/slc-gram.y
708
for(a = as; a != NULL; a = a->next)
crypto/heimdal/lib/sl/slc-gram.y
712
for(a = as; a != NULL; a = a->next)
crypto/heimdal/lib/sl/slc-gram.y
79
$1->next = $2;
crypto/heimdal/lib/sl/slc-gram.y
92
$$->next = NULL;
crypto/heimdal/lib/sl/slc.h
47
struct assignment *next;
crypto/heimdal/lib/sl/test_sl.c
78
goto next;
crypto/heimdal/lib/sl/test_sl.c
89
next:
crypto/krb5/src/include/CredentialsCache.h
1319
cc_int32 (*next) (cc_ccache_iterator_t in_ccache_iterator,
crypto/krb5/src/include/CredentialsCache.h
1352
cc_int32 (*next) (cc_credentials_iterator_t in_credentials_iterator,
crypto/krb5/src/include/CredentialsCache.h
1505
((iterator) -> functions -> next (iterator, ccache))
crypto/krb5/src/include/CredentialsCache.h
1515
((iterator) -> functions -> next (iterator, credentials))
crypto/krb5/src/include/k5-int.h
630
struct derived_key *next;
crypto/krb5/src/include/k5-queue.h
390
#define K5_SIMPLEQ_FOREACH_SAFE(var, head, field, next) \
crypto/krb5/src/include/k5-queue.h
392
(var) && ((next = ((var)->field.sqe_next)), 1); \
crypto/krb5/src/include/k5-queue.h
393
(var) = (next))
crypto/krb5/src/include/k5-queue.h
493
#define K5_TAILQ_FOREACH_SAFE(var, head, field, next) \
crypto/krb5/src/include/k5-queue.h
495
(var) != NULL && ((next) = K5_TAILQ_NEXT(var, field), 1); \
crypto/krb5/src/include/k5-queue.h
496
(var) = (next))
crypto/krb5/src/include/k5-trace.h
495
#define TRACE_TKT_CREDS_TGT_REQ(c, next, cur) \
crypto/krb5/src/include/k5-trace.h
496
TRACE(c, "Requesting TGT {princ} using TGT {princ}", next, cur)
crypto/krb5/src/include/kdb.h
285
struct _krb5_actkvno_node *next;
crypto/krb5/src/include/kdb.h
291
struct _krb5_mkey_aux_node *next;
crypto/krb5/src/include/kdb.h
299
struct _krb5_keylist_node *next;
crypto/krb5/src/kadmin/cli/kadmin.c
978
krb5_tl_data *tl_data = *tl_datap, *next;
crypto/krb5/src/kadmin/cli/kadmin.c
986
next = tl_data->tl_data_next;
crypto/krb5/src/kadmin/cli/kadmin.c
989
tl_data = next;
crypto/krb5/src/kadmin/dbutil/kdb5_create.c
429
actkvno.next = NULL;
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
1190
actkvno_entry = actkvno_entry->next) {
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
1195
actkvno_list = actkvno_entry->next;
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
1196
} else if (actkvno_entry->next == NULL) {
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
1198
prev_actkvno_entry->next = NULL;
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
1201
prev_actkvno_entry->next = actkvno_entry->next;
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
1203
actkvno_entry->next = NULL;
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
1213
mkey_aux_entry = mkey_aux_entry->next) {
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
1217
mkey_aux_list = mkey_aux_entry->next;
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
1218
} else if (mkey_aux_entry->next == NULL) {
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
1219
prev_mkey_aux_entry->next = NULL;
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
1221
prev_mkey_aux_entry->next = mkey_aux_entry->next;
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
1223
mkey_aux_entry->next = NULL;
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
128
keylist_node = keylist_node->next, i++) {
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
155
mkey_aux_data = &((*mkey_aux_data)->next);
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
362
keylist_node = keylist_node->next) {
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
426
prev_actkvno = cur_actkvno, cur_actkvno = cur_actkvno->next) {
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
431
prev_actkvno->next = cur_actkvno->next;
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
432
cur_actkvno->next = NULL;
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
435
if (cur_actkvno->next) {
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
437
actkvno_list = cur_actkvno->next;
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
438
cur_actkvno->next = NULL;
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
470
prev_actkvno = cur_actkvno, cur_actkvno = cur_actkvno->next) {
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
474
prev_actkvno->next = new_actkvno;
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
475
new_actkvno->next = cur_actkvno;
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
477
new_actkvno->next = actkvno_list;
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
481
} else if (cur_actkvno->next == NULL) {
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
483
cur_actkvno->next = new_actkvno;
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
575
cur_kb_node = cur_kb_node->next) {
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
586
cur_actkvno = cur_actkvno->next) {
crypto/krb5/src/kadmin/ktutil/ktutil.c
228
for (i = 1, lp = ktlist; lp; i++, lp = lp->next) {
crypto/krb5/src/kadmin/ktutil/ktutil.h
28
struct _krb5_kt_list *next;
crypto/krb5/src/kadmin/ktutil/ktutil_funcs.c
243
lp->next = NULL;
crypto/krb5/src/kadmin/ktutil/ktutil_funcs.c
246
for (last = list; *last != NULL; last = &(*last)->next);
crypto/krb5/src/kadmin/ktutil/ktutil_funcs.c
274
for (lp = *list; lp->next; lp = lp->next);
crypto/krb5/src/kadmin/ktutil/ktutil_funcs.c
301
lp->next = (krb5_kt_list)malloc(sizeof (*lp));
crypto/krb5/src/kadmin/ktutil/ktutil_funcs.c
302
if (!lp->next) {
crypto/krb5/src/kadmin/ktutil/ktutil_funcs.c
306
lp = lp->next;
crypto/krb5/src/kadmin/ktutil/ktutil_funcs.c
310
lp->next = NULL;
crypto/krb5/src/kadmin/ktutil/ktutil_funcs.c
322
back->next = NULL;
crypto/krb5/src/kadmin/ktutil/ktutil_funcs.c
351
for (lp = list; lp; lp = lp->next) {
crypto/krb5/src/kadmin/ktutil/ktutil_funcs.c
52
lp = lp->next;
crypto/krb5/src/kadmin/ktutil/ktutil_funcs.c
68
for (lp = *list, i = 1; lp; prev = lp, lp = lp->next, i++) {
crypto/krb5/src/kadmin/ktutil/ktutil_funcs.c
71
*list = lp->next;
crypto/krb5/src/kadmin/ktutil/ktutil_funcs.c
73
prev->next = lp->next;
crypto/krb5/src/kadmin/ktutil/ktutil_funcs.c
74
lp->next = NULL;
crypto/krb5/src/kadmin/server/auth_acl.c
376
struct acl_entry *entry, *next;
crypto/krb5/src/kadmin/server/auth_acl.c
378
for (entry = state->list; entry != NULL; entry = next) {
crypto/krb5/src/kadmin/server/auth_acl.c
379
next = entry->next;
crypto/krb5/src/kadmin/server/auth_acl.c
429
entry_slot = &(*entry_slot)->next;
crypto/krb5/src/kadmin/server/auth_acl.c
503
for (entry = state->list; entry != NULL; entry = entry->next) {
crypto/krb5/src/kadmin/server/auth_acl.c
64
struct acl_entry *next;
crypto/krb5/src/kdc/kdc_preauth.c
1307
goto next;
crypto/krb5/src/kdc/kdc_preauth.c
1309
goto next;
crypto/krb5/src/kdc/kdc_preauth.c
1314
goto next;
crypto/krb5/src/kdc/kdc_preauth.c
1324
next:
crypto/krb5/src/kdc/kdc_preauth.c
957
goto next;
crypto/krb5/src/kdc/kdc_preauth.c
959
goto next;
crypto/krb5/src/kdc/kdc_preauth.c
969
next:
crypto/krb5/src/kdc/kdc_transit.c
157
char next[MAX_REALM_LN];
crypto/krb5/src/kdc/kdc_transit.c
269
next[i++] = *otrans++;
crypto/krb5/src/kdc/kdc_transit.c
275
next[i] = '\0';
crypto/krb5/src/kdc/kdc_transit.c
296
assert(nlst < 0 || nlst < (int)sizeof(next));
crypto/krb5/src/kdc/kdc_transit.c
297
if ((nlst < 0 || next[nlst] != '.') &&
crypto/krb5/src/kdc/kdc_transit.c
298
(next[0] != '/') &&
crypto/krb5/src/kdc/kdc_transit.c
385
strncpy(current, next, sizeof(current) - 1);
crypto/krb5/src/kdc/replay.c
200
struct entry *e, *next;
crypto/krb5/src/kdc/replay.c
208
K5_TAILQ_FOREACH_SAFE(e, &expiration_queue, links, next) {
crypto/krb5/src/kdc/replay.c
223
struct entry *e, *next;
crypto/krb5/src/kdc/replay.c
225
K5_TAILQ_FOREACH_SAFE(e, &expiration_queue, links, next) {
crypto/krb5/src/lib/crypto/krb/derive.c
33
for (; list; list = list->next) {
crypto/krb5/src/lib/crypto/krb/derive.c
66
dkent->next = key->derived;
crypto/krb5/src/lib/crypto/krb/key.c
83
key->derived = dk->next;
crypto/krb5/src/lib/gssapi/generic/util_seqstate.c
106
offset = state->next - rel_seqnum;
crypto/krb5/src/lib/gssapi/generic/util_seqstate.c
52
uint64_t next;
crypto/krb5/src/lib/gssapi/generic/util_seqstate.c
78
state->next = state->recvmap = 0;
crypto/krb5/src/lib/gssapi/generic/util_seqstate.c
94
if (rel_seqnum >= state->next) {
crypto/krb5/src/lib/gssapi/generic/util_seqstate.c
97
offset = rel_seqnum - state->next;
crypto/krb5/src/lib/gssapi/generic/util_seqstate.c
99
state->next = (rel_seqnum + 1) & state->seqmask;
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
1040
minfo = minfo->next;
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
1066
for (minfo = g_mechList; minfo != NULL; minfo = minfo->next) {
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
1151
aMech = aMech->next;
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
1221
aMech = aMech->next;
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
1270
char *sharedLib, *kernMod, *modOptions, *modType, *oid, *next;
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
1293
next = delimit_ws(sharedLib);
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
1296
if (*next != '\0' && *next != '[' && *next != '<') {
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
1297
kernMod = next;
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
1298
next = delimit_ws(kernMod);
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
1304
if (*next == '[') {
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
1305
modOptions = next + 1;
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
1306
next = delimit(modOptions, ']');
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
1312
if (*next == '<') {
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
1313
modType = next + 1;
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
1614
tmp->next = aMech;
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
207
aMech = aMech->next;
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
354
mList = mList->next;
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
372
for (mList = g_mechList; mList != NULL; mList = mList->next) {
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
532
for (minfo = g_mechList; minfo != NULL; minfo = minfo->next) {
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
614
new_cf->next = NULL;
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
649
new_cf->next = g_mechList;
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
654
for (cf = g_mechList; cf != NULL; cf = cf->next) {
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
655
if (cf->next == NULL ||
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
656
new_cf->priority < cf->next->priority) {
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
657
new_cf->next = cf->next;
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
658
cf->next = new_cf;
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
993
next_cf = cf->next;
crypto/krb5/src/lib/gssapi/mechglue/g_mechname.c
28
for (p = name_list; p; p = p->next) {
crypto/krb5/src/lib/gssapi/mechglue/g_mechname.c
99
p->next = name_list;
crypto/krb5/src/lib/gssapi/mechglue/mglueP.h
54
struct gss_mech_spec_name_t *next, *prev;
crypto/krb5/src/lib/gssapi/mechglue/mglueP.h
751
struct gss_mech_config *next; /* next element in the list */
crypto/krb5/src/lib/gssapi/spnego/negoex_ctx.c
196
struct negoex_auth_mech *p, *next;
crypto/krb5/src/lib/gssapi/spnego/negoex_ctx.c
198
K5_TAILQ_FOREACH_SAFE(p, &ctx->negoex_mechs, links, next) {
crypto/krb5/src/lib/gssapi/spnego/negoex_util.c
103
struct negoex_auth_mech *mech, *next;
crypto/krb5/src/lib/gssapi/spnego/negoex_util.c
105
K5_TAILQ_FOREACH_SAFE(mech, &ctx->negoex_mechs, links, next)
crypto/krb5/src/lib/gssapi/spnego/negoex_util.c
804
struct negoex_auth_mech *mech, *next;
crypto/krb5/src/lib/gssapi/spnego/negoex_util.c
808
K5_TAILQ_FOREACH_SAFE(mech, &ctx->negoex_mechs, links, next) {
crypto/krb5/src/lib/kdb/kdb5.c
1189
list.next = NULL;
crypto/krb5/src/lib/kdb/kdb5.c
1342
while (list->next != NULL && !ts_after(list->next->act_time, now))
crypto/krb5/src/lib/kdb/kdb5.c
1343
list = list->next;
crypto/krb5/src/lib/kdb/kdb5.c
1354
for (n = context->dal_handle->master_keylist; n != NULL; n = n->next) {
crypto/krb5/src/lib/kdb/kdb5.c
141
temp = temp->next;
crypto/krb5/src/lib/kdb/kdb5.c
1427
cur_keyblock = cur_keyblock->next;
crypto/krb5/src/lib/kdb/kdb5.c
154
temp = temp->next;
crypto/krb5/src/lib/kdb/kdb5.c
166
temp = temp->next;
crypto/krb5/src/lib/kdb/kdb5.c
1718
mkey_list = mkey_list->next;
crypto/krb5/src/lib/kdb/kdb5.c
1803
new_data->next = NULL;
crypto/krb5/src/lib/kdb/kdb5.c
1805
prev_data->next = new_data;
crypto/krb5/src/lib/kdb/kdb5.c
1847
aux_data_entry = aux_data_entry->next) {
crypto/krb5/src/lib/kdb/kdb5.c
1866
aux_data_entry = aux_data_entry->next) {
crypto/krb5/src/lib/kdb/kdb5.c
1976
prev_data->next = new_data;
crypto/krb5/src/lib/kdb/kdb5.c
2023
cur_actkvno = cur_actkvno->next) {
crypto/krb5/src/lib/kdb/kdb5.c
2568
for (; n; n = n->next) {
crypto/krb5/src/lib/kdb/kdb5.c
523
curr_elt = curr_elt->next;
crypto/krb5/src/lib/kdb/kdb5.c
533
prev_elt->next = *lib;
crypto/krb5/src/lib/kdb/kdb5.c
571
lib_list = lib->next; /* first element in the list */
crypto/krb5/src/lib/kdb/kdb5.c
573
lib->prev->next = lib->next;
crypto/krb5/src/lib/kdb/kdb5.c
575
if (lib->next)
crypto/krb5/src/lib/kdb/kdb5.c
576
lib->next->prev = lib->prev;
crypto/krb5/src/lib/kdb/kdb5.c
68
krb5_keylist_node *cur, *next;
crypto/krb5/src/lib/kdb/kdb5.c
70
for (cur = mkey_list; cur != NULL; cur = next) {
crypto/krb5/src/lib/kdb/kdb5.c
71
next = cur->next;
crypto/krb5/src/lib/kdb/kdb5.c
849
krb5_tl_data *next;
crypto/krb5/src/lib/kdb/kdb5.c
851
for (; list != NULL; list = next) {
crypto/krb5/src/lib/kdb/kdb5.c
852
next = list->tl_data_next;
crypto/krb5/src/lib/kdb/kdb5.c
898
krb5_tl_data *prev, *curr, *next;
crypto/krb5/src/lib/kdb/kdb5.c
931
next = curr->tl_data_next;
crypto/krb5/src/lib/kdb/kdb5.c
942
curr = next;
crypto/krb5/src/lib/kdb/kdb5.h
24
struct _db_library *next, *prev;
crypto/krb5/src/lib/kdb/kdb_default.c
191
keylist = keylist->next;
crypto/krb5/src/lib/kdb/kdb_default.c
445
aux_data_entry = aux_data_entry->next) {
crypto/krb5/src/lib/kdb/kdb_default.c
483
mkey_list_node = &mkey_list_head->next;
crypto/krb5/src/lib/kdb/kdb_default.c
502
mkey_list_node = &((*mkey_list_node)->next);
crypto/krb5/src/lib/krad/remote.c
223
request *r, *next;
crypto/krb5/src/lib/krad/remote.c
228
K5_TAILQ_FOREACH_SAFE(r, &rr->list, list, next) {
crypto/krb5/src/lib/krb5/ccache/cc_memory.c
101
struct _krb5_mcc_link *next;
crypto/krb5/src/lib/krb5/ccache/cc_memory.c
155
krb5_mcc_link *curr, *next;
crypto/krb5/src/lib/krb5/ccache/cc_memory.c
157
for (curr = d->link; curr != NULL; curr = next) {
crypto/krb5/src/lib/krb5/ccache/cc_memory.c
158
next = curr->next;
crypto/krb5/src/lib/krb5/ccache/cc_memory.c
195
new_node->next = NULL;
crypto/krb5/src/lib/krb5/ccache/cc_memory.c
204
d->tail = &new_node->next;
crypto/krb5/src/lib/krb5/ccache/cc_memory.c
438
mcursor->next_link = mcursor->next_link->next;
crypto/krb5/src/lib/krb5/ccache/cc_memory.c
446
mcursor->next_link = mcursor->next_link->next;
crypto/krb5/src/lib/krb5/ccache/cc_memory.c
647
for (l = data->link; l != NULL; l = l->next) {
crypto/krb5/src/lib/krb5/ccache/ccbase.c
149
t_next = t->next;
crypto/krb5/src/lib/krb5/ccache/ccbase.c
167
for (t = cc_typehead;t && strcmp(t->ops->prefix,ops->prefix);t = t->next)
crypto/krb5/src/lib/krb5/ccache/ccbase.c
183
t->next = cc_typehead;
crypto/krb5/src/lib/krb5/ccache/ccbase.c
268
for (tlist = cc_typehead; tlist; tlist = tlist->next) {
crypto/krb5/src/lib/krb5/ccache/ccbase.c
344
t->tptr = t->tptr->next;
crypto/krb5/src/lib/krb5/ccache/ccbase.c
35
struct krb5_cc_typelist *next;
crypto/krb5/src/lib/krb5/keytab/kt_memory.c
151
next_node = node->next;
crypto/krb5/src/lib/krb5/keytab/kt_memory.c
158
next_cursor = cursor->next;
crypto/krb5/src/lib/krb5/keytab/kt_memory.c
223
list->next = NULL;
crypto/krb5/src/lib/krb5/keytab/kt_memory.c
254
for (list = krb5int_mkt_list; list; list = list->next) {
crypto/krb5/src/lib/krb5/keytab/kt_memory.c
267
list->next = krb5int_mkt_list;
crypto/krb5/src/lib/krb5/keytab/kt_memory.c
302
for (listp = &krb5int_mkt_list; *listp; listp = &((*listp)->next))
crypto/krb5/src/lib/krb5/keytab/kt_memory.c
333
*listp = node->next;
crypto/krb5/src/lib/krb5/keytab/kt_memory.c
340
next_cursor = cursor->next;
crypto/krb5/src/lib/krb5/keytab/kt_memory.c
384
for (cursor = KTLINK(id); cursor && cursor->entry; cursor = cursor->next) {
crypto/krb5/src/lib/krb5/keytab/kt_memory.c
506
*cursor = (krb5_kt_cursor *)mkt_cursor->next;
crypto/krb5/src/lib/krb5/keytab/kt_memory.c
566
cursor->next = NULL;
crypto/krb5/src/lib/krb5/keytab/kt_memory.c
569
cursor->next = KTLINK(id);
crypto/krb5/src/lib/krb5/keytab/kt_memory.c
585
krb5_mkt_cursor *pcursor, next;
crypto/krb5/src/lib/krb5/keytab/kt_memory.c
595
for ( pcursor = &KTLINK(id); *pcursor; pcursor = &(*pcursor)->next ) {
crypto/krb5/src/lib/krb5/keytab/kt_memory.c
60
struct _krb5_mkt_link *next;
crypto/krb5/src/lib/krb5/keytab/kt_memory.c
609
next = (*pcursor)->next;
crypto/krb5/src/lib/krb5/keytab/kt_memory.c
611
(*pcursor) = next;
crypto/krb5/src/lib/krb5/keytab/kt_memory.c
74
struct _krb5_mkt_list_node *next;
crypto/krb5/src/lib/krb5/keytab/ktbase.c
103
t_next = t->next;
crypto/krb5/src/lib/krb5/keytab/ktbase.c
123
for (t = kt_typehead; t && strcmp(t->ops->prefix,ops->prefix);t = t->next)
crypto/krb5/src/lib/krb5/keytab/ktbase.c
133
newt->next = kt_typehead;
crypto/krb5/src/lib/krb5/keytab/ktbase.c
196
for (; tlist; tlist = tlist->next) {
crypto/krb5/src/lib/krb5/keytab/ktbase.c
62
const struct krb5_kt_typelist *next;
crypto/krb5/src/lib/krb5/os/dnssrv.c
100
new->next = entry->next;
crypto/krb5/src/lib/krb5/os/dnssrv.c
101
entry->next = new;
crypto/krb5/src/lib/krb5/os/dnssrv.c
39
struct srv_dns_entry *next;
crypto/krb5/src/lib/krb5/os/dnssrv.c
41
next = p->next;
crypto/krb5/src/lib/krb5/os/dnssrv.c
44
p = next;
crypto/krb5/src/lib/krb5/os/dnssrv.c
88
new->next = *head;
crypto/krb5/src/lib/krb5/os/dnssrv.c
93
for (entry = *head; entry != NULL; entry = entry->next) {
crypto/krb5/src/lib/krb5/os/dnssrv.c
99
if (entry->next == NULL || entry->next->priority > new->priority) {
crypto/krb5/src/lib/krb5/os/localaddr.c
1018
for (lx_v6 = linux_ipv6_addrs; lx_v6; lx_v6 = lx_v6->next)
crypto/krb5/src/lib/krb5/os/localaddr.c
1042
for (lx_v6 = linux_ipv6_addrs; lx_v6; lx_v6 = lx_v6->next)
crypto/krb5/src/lib/krb5/os/localaddr.c
1054
lx_v6 = linux_ipv6_addrs->next;
crypto/krb5/src/lib/krb5/os/localaddr.c
1257
char *cp = *iter, *next, *current;
crypto/krb5/src/lib/krb5/os/localaddr.c
1264
for (cp = *iter, next = 0; *cp; cp = next) {
crypto/krb5/src/lib/krb5/os/localaddr.c
1277
next = cp + 1;
crypto/krb5/src/lib/krb5/os/localaddr.c
1280
next = cp;
crypto/krb5/src/lib/krb5/os/localaddr.c
361
struct linux_ipv6_addr_list *next;
crypto/krb5/src/lib/krb5/os/localaddr.c
399
nw->next = lst;
crypto/krb5/src/lib/krb5/os/locate_kdc.c
380
if (head->next == NULL && head->host[0] == '\0') {
crypto/krb5/src/lib/krb5/os/locate_kdc.c
385
for (entry = head; entry != NULL; entry = entry->next) {
crypto/krb5/src/lib/krb5/os/locate_kdc.c
671
for (entry = answers; entry != NULL; entry = entry->next) {
crypto/krb5/src/lib/krb5/os/os-proto.h
170
struct srv_dns_entry *next;
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
136
struct conn_state *next;
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
1393
for (state = conns; state != NULL; state = state->next) {
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
1440
for (state = conns; state != NULL; state = state->next) {
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
1512
struct conn_state *conns = NULL, *state, **tailptr, *next, *winner;
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
1541
for (tailptr = &conns; *tailptr != NULL; tailptr = &(*tailptr)->next);
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
1546
for (state = *tailptr; state != NULL && !done; state = state->next) {
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
1562
for (state = conns; state != NULL && !done; state = state->next) {
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
1581
for (state = conns; state != NULL && !done; state = state->next) {
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
1617
for (state = conns; state != NULL; state = next) {
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
1618
next = state->next;
crypto/krb5/src/lib/krb5/os/sendto_kdc.c
746
for (tailptr = conns; *tailptr != NULL; tailptr = &(*tailptr)->next);
crypto/krb5/src/lib/krb5/rcache/memrcache.c
130
struct entry *e, *next;
crypto/krb5/src/lib/krb5/rcache/memrcache.c
142
K5_TAILQ_FOREACH_SAFE(e, &mrc->expiration_queue, links, next) {
crypto/krb5/src/lib/krb5/rcache/memrcache.c
156
struct entry *e, *next;
crypto/krb5/src/lib/krb5/rcache/memrcache.c
160
K5_TAILQ_FOREACH_SAFE(e, &mrc->expiration_queue, links, next) {
crypto/krb5/src/lib/krb5/rcache/rc_base.c
20
struct typelist *next;
crypto/krb5/src/lib/krb5/rcache/rc_base.c
87
for (t = typehead; t != NULL; t = t->next) {
crypto/krb5/src/lib/rpc/pmap_prot2.c
110
next = &((*rp)->pml_next);
crypto/krb5/src/lib/rpc/pmap_prot2.c
115
rp = (freeing) ? next : &((*rp)->pml_next);
crypto/krb5/src/lib/rpc/pmap_prot2.c
96
struct pmaplist **next = NULL;
crypto/krb5/src/lib/rpc/svc_auth_gssapi.c
140
struct _client_list *next;
crypto/krb5/src/lib/rpc/svc_auth_gssapi.c
672
c = c->next;
crypto/krb5/src/lib/rpc/svc_auth_gssapi.c
724
c->next = NULL;
crypto/krb5/src/lib/rpc/svc_auth_gssapi.c
730
c->next = clients;
crypto/krb5/src/lib/rpc/svc_auth_gssapi.c
796
c = c->next;
crypto/krb5/src/lib/rpc/svc_auth_gssapi.c
850
clients = clients->next;
crypto/krb5/src/lib/rpc/svc_auth_gssapi.c
854
c = clients->next;
crypto/krb5/src/lib/rpc/svc_auth_gssapi.c
857
c2->next = c->next;
crypto/krb5/src/lib/rpc/svc_auth_gssapi.c
862
c = c->next;
crypto/krb5/src/lib/rpc/svc_auth_gssapi.c
888
c = c->next;
crypto/krb5/src/lib/rpc/svc_auth_gssapi.c
914
c = c->next;
crypto/krb5/src/plugins/kdb/db2/adb_openclose.c
124
lockp = lockp->next;
crypto/krb5/src/plugins/kdb/db2/adb_openclose.c
140
lockp->next = locklist;
crypto/krb5/src/plugins/kdb/db2/adb_openclose.c
18
struct _locklist *next;
crypto/krb5/src/plugins/kdb/db2/libdb2/btree/bt_search.c
128
next: BT_PUSH(t, h->pgno, idx);
crypto/krb5/src/plugins/kdb/db2/libdb2/btree/bt_search.c
87
goto next;
crypto/krb5/src/plugins/kdb/db2/libdb2/test/btree.tests/main.c
119
void next __P((DB *, char **));
crypto/krb5/src/plugins/kdb/db2/libdb2/test/btree.tests/main.c
162
"n", 0, 0, next, "next", "move cursor forward one record",
crypto/krb5/src/plugins/kdb/ldap/ldap_util/kdb5_ldap_realm.c
1375
actkvno.next = NULL;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/kdb_ldap.h
175
struct _krb5_ldap_server_handle *next;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/kdb_ldap.h
186
struct _krb5_ldap_server_info *next;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/kdb_ldap_conn.c
197
server->next = info->ldap_server_handles;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_handle.c
109
ldap_server_info->ldap_server_handles = ldap_server_handle->next;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_handle.c
50
ldap_server_info->ldap_server_handles = ldap_server_handle->next;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_handle.c
92
ldap_server_handle->next = ldap_server_handle->server_info->ldap_server_handles;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
444
krb5_ldap_server_handle *h, *next;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
452
for (h = list[i]->ldap_server_handles; h != NULL; h = next) {
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
453
next = h->next;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
815
char *next;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
825
ret = ldap_str2rdn(newrdn, &lrdn, &next, LDAP_DN_FORMAT_LDAPV3);
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
133
struct _rule_component *next;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
173
trc = rc->next;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
293
rc->next = NULL;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
430
for (trc = rs->crs; trc != NULL && trc->next != NULL; trc = trc->next);
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
434
trc->next = rc;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
576
for (rc = rs->crs; rc != NULL; rc = rc->next) {
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
737
for (rc = rs->crs; rc != NULL; rc = rc->next) {
crypto/krb5/src/util/et/error_message.c
143
for (e = et_list; e != NULL; e = e->next) {
crypto/krb5/src/util/et/error_message.c
267
e->next = et_list;
crypto/krb5/src/util/et/error_message.c
293
for (ep = &et_list; *ep; ep = &(*ep)->next) {
crypto/krb5/src/util/et/error_message.c
296
*ep = e->next;
crypto/krb5/src/util/et/error_message.c
69
enext = e->next;
crypto/krb5/src/util/et/error_table.h
16
struct et_list *next;
crypto/krb5/src/util/profile/prof_file.c
160
d->next = NULL;
crypto/krb5/src/util/profile/prof_file.c
215
for (data = g_shared_trees; data; data = data->next) {
crypto/krb5/src/util/profile/prof_file.c
254
data->next = g_shared_trees;
crypto/krb5/src/util/profile/prof_file.c
283
file->next = NULL;
crypto/krb5/src/util/profile/prof_file.c
607
g_shared_trees = data->next;
crypto/krb5/src/util/profile/prof_file.c
609
prf_data_t prev, next;
crypto/krb5/src/util/profile/prof_file.c
611
next = prev->next;
crypto/krb5/src/util/profile/prof_file.c
612
while (next) {
crypto/krb5/src/util/profile/prof_file.c
613
if (next == data) {
crypto/krb5/src/util/profile/prof_file.c
614
prev->next = next->next;
crypto/krb5/src/util/profile/prof_file.c
617
prev = next;
crypto/krb5/src/util/profile/prof_file.c
618
next = next->next;
crypto/krb5/src/util/profile/prof_init.c
212
last->next = new_file;
crypto/krb5/src/util/profile/prof_init.c
310
for (p = old_profile->first_file; p != NULL; p = p->next) {
crypto/krb5/src/util/profile/prof_init.c
317
nextp = &q->next;
crypto/krb5/src/util/profile/prof_init.c
475
prf_file_t p, next;
crypto/krb5/src/util/profile/prof_init.c
496
for (p = profile->first_file; p; p = next) {
crypto/krb5/src/util/profile/prof_init.c
497
next = p->next;
crypto/krb5/src/util/profile/prof_init.c
508
prf_file_t p, next;
crypto/krb5/src/util/profile/prof_init.c
520
for (p = profile->first_file; p; p = next) {
crypto/krb5/src/util/profile/prof_init.c
521
next = p->next;
crypto/krb5/src/util/profile/prof_init.c
538
for (pfp = profile->first_file; pfp; pfp = pfp->next) {
crypto/krb5/src/util/profile/prof_init.c
572
for (pfp = profile->first_file; pfp; pfp = pfp->next)
crypto/krb5/src/util/profile/prof_init.c
576
for (pfp = profile->first_file; pfp; pfp = pfp->next) {
crypto/krb5/src/util/profile/prof_int.h
55
struct _prf_data_t *next;
crypto/krb5/src/util/profile/prof_int.h
68
struct _prf_file_t *next;
crypto/krb5/src/util/profile/prof_tree.c
140
for (p = oldnode->first_child; p != NULL; p = p->next) {
crypto/krb5/src/util/profile/prof_tree.c
150
nextp = &q->next;
crypto/krb5/src/util/profile/prof_tree.c
176
for (p = node->first_child; p; last = p, p = p->next) {
crypto/krb5/src/util/profile/prof_tree.c
179
if (last && (last->next != p))
crypto/krb5/src/util/profile/prof_tree.c
214
for (p=section->first_child, last = 0; p; last = p, p = p->next) {
crypto/krb5/src/util/profile/prof_tree.c
240
new->next = p;
crypto/krb5/src/util/profile/prof_tree.c
244
last->next = new;
crypto/krb5/src/util/profile/prof_tree.c
318
for (; p; p = p->next) {
crypto/krb5/src/util/profile/prof_tree.c
346
for (p = p->next; p; p = p->next) {
crypto/krb5/src/util/profile/prof_tree.c
40
struct profile_node *next, *prev;
crypto/krb5/src/util/profile/prof_tree.c
52
struct profile_node *child, *next;
crypto/krb5/src/util/profile/prof_tree.c
568
iter->file = iter->file->next;
crypto/krb5/src/util/profile/prof_tree.c
587
for (p=section->first_child; p; p = p->next) {
crypto/krb5/src/util/profile/prof_tree.c
601
iter->file = iter->file->next;
crypto/krb5/src/util/profile/prof_tree.c
614
for (p = iter->node; p; p = p->next) {
crypto/krb5/src/util/profile/prof_tree.c
62
for (child=node->first_child; child; child = next) {
crypto/krb5/src/util/profile/prof_tree.c
63
next = child->next;
crypto/krb5/src/util/profile/prof_tree.c
636
iter->file = iter->file->next;
crypto/krb5/src/util/profile/prof_tree.c
644
if ((iter->node = p->next) == NULL)
crypto/krb5/src/util/profile/prof_tree.c
645
iter->file = iter->file->next;
crypto/krb5/src/util/profile/prof_tree.c
724
for (p=node->parent->first_child, last = 0; p; last = p, p = p->next) {
crypto/krb5/src/util/profile/prof_tree.c
737
node->prev->next = node->next;
crypto/krb5/src/util/profile/prof_tree.c
739
node->parent->first_child = node->next;
crypto/krb5/src/util/profile/prof_tree.c
740
if (node->next)
crypto/krb5/src/util/profile/prof_tree.c
741
node->next->prev = node->prev;
crypto/krb5/src/util/profile/prof_tree.c
749
last->next = node;
crypto/krb5/src/util/profile/prof_tree.c
752
node->next = p;
crypto/krb5/src/util/support/cache-addrinfo.h
119
struct face *next;
crypto/krb5/src/util/support/fake-addrinfo.c
582
entry->next = krb5int_fac.data;
crypto/krb5/src/util/support/fake-addrinfo.c
616
*fpp = fp->next;
crypto/krb5/src/util/support/fake-addrinfo.c
621
fpp = &(*fpp)->next;
crypto/krb5/src/util/support/fake-addrinfo.c
624
for (fp = krb5int_fac.data; fp; fp = fp->next) {
crypto/krb5/src/util/support/fake-addrinfo.c
806
struct addrinfo *next;
crypto/krb5/src/util/support/fake-addrinfo.c
808
next = ai->ai_next;
crypto/krb5/src/util/support/fake-addrinfo.c
814
ai = next;
crypto/krb5/src/util/support/hashtab.c
162
K5_SLIST_REMOVE_HEAD(&ht->buckets[i], next);
crypto/krb5/src/util/support/hashtab.c
186
K5_SLIST_REMOVE_HEAD(&ht->buckets[i], next);
crypto/krb5/src/util/support/hashtab.c
187
K5_SLIST_INSERT_HEAD(&newbuckets[j], ent, next);
crypto/krb5/src/util/support/hashtab.c
216
K5_SLIST_INSERT_HEAD(&ht->buckets[i], ent, next);
crypto/krb5/src/util/support/hashtab.c
229
K5_SLIST_FOREACH(ent, &ht->buckets[i], next) {
crypto/krb5/src/util/support/hashtab.c
231
K5_SLIST_REMOVE(&ht->buckets[i], ent, entry, next);
crypto/krb5/src/util/support/hashtab.c
247
K5_SLIST_FOREACH(ent, &ht->buckets[i], next) {
crypto/krb5/src/util/support/hashtab.c
41
K5_SLIST_ENTRY(entry) next;
crypto/krb5/src/util/support/threads.c
110
struct tsd_block *next;
crypto/krb5/src/util/support/threads.c
308
t->next = 0;
crypto/krb5/src/util/verto/ev.c
2043
for (w = (ev_io *)anfd->head; w; w = (ev_io *)((WL)w)->next)
crypto/krb5/src/util/verto/ev.c
2117
for (w = (ev_io *)anfd->head; w; w = (ev_io *)((WL)w)->next)
crypto/krb5/src/util/verto/ev.c
2597
for (w = signals [signum].head; w; w = w->next)
crypto/krb5/src/util/verto/ev.c
2641
for (w = (ev_child *)childs [chain & ((EV_PID_HASHSIZE) - 1)]; w; w = (ev_child *)((WL)w)->next)
crypto/krb5/src/util/verto/ev.c
3154
for (w = w2 = anfds [i].head; w; w = w->next)
crypto/krb5/src/util/verto/ev.c
3161
w2 = w2->next;
crypto/krb5/src/util/verto/ev.c
3214
for (w = (ev_child *)childs [chain & ((EV_PID_HASHSIZE) - 1)]; w; w = (ev_child *)((WL)w)->next)
crypto/krb5/src/util/verto/ev.c
3762
elem->next = *head;
crypto/krb5/src/util/verto/ev.c
3773
*head = elem->next;
crypto/krb5/src/util/verto/ev.c
3777
head = &(*head)->next;
crypto/krb5/src/util/verto/ev.c
3853
assert (("libev: ev_io_start called with corrupted watcher", ((WL)w)->next != (WL)w));
crypto/krb5/src/util/verto/ev.c
4092
if (!((WL)w)->next)
crypto/krb5/src/util/verto/ev.c
4321
w_ = w_->next; /* lets us remove this watcher and all before it */
crypto/krb5/src/util/verto/ev.c
4427
w_ = w_->next; /* lets us add this watcher */
crypto/krb5/src/util/verto/ev.c
4998
wn = wl->next;
crypto/krb5/src/util/verto/ev.c
5080
wn = wl->next;
crypto/krb5/src/util/verto/ev.c
5091
wn = wl->next;
crypto/krb5/src/util/verto/ev.h
291
struct ev_watcher_list *next; /* private */
crypto/krb5/src/util/verto/verto.c
276
for (*record = loaded_modules ; *record ; *record = (*record)->next) {
crypto/krb5/src/util/verto/verto.c
320
for (tmp = loaded_modules ; tmp && tmp->next; tmp = tmp->next)
crypto/krb5/src/util/verto/verto.c
323
tmp->next = *record;
crypto/krb5/src/util/verto/verto.c
389
for (*record = loaded_modules ; *record ; *record = (*record)->next) {
crypto/krb5/src/util/verto/verto.c
397
for (*record = loaded_modules ; *record ; *record = (*record)->next) {
crypto/krb5/src/util/verto/verto.c
513
ctx->events->next = tmp;
crypto/krb5/src/util/verto/verto.c
523
*origin = (*origin)->next;
crypto/krb5/src/util/verto/verto.c
525
remove_ev(&((*origin)->next), item);
crypto/krb5/src/util/verto/verto.c
611
for (record = loaded_modules; record; record = record->next) {
crypto/krb5/src/util/verto/verto.c
661
verto_ev *tmp, *next;
crypto/krb5/src/util/verto/verto.c
668
for (tmp = ctx->events; tmp; tmp = next) {
crypto/krb5/src/util/verto/verto.c
669
next = tmp->next;
crypto/krb5/src/util/verto/verto.c
682
for (tmp = ctx->events; tmp; tmp = tmp->next) {
crypto/krb5/src/util/verto/verto.c
71
verto_ev *next;
crypto/krb5/src/util/verto/verto.c
92
module_record *next;
crypto/krb5/src/util/verto/verto.c
927
for (mr = loaded_modules ; mr ; mr = mr->next) {
crypto/krb5/src/util/verto/verto.c
966
for (mr = loaded_modules ; mr ; mr = mr->next) {
crypto/krb5/src/util/verto/verto.c
974
if (!mr->next) {
crypto/krb5/src/util/verto/verto.c
975
tmp = &mr->next;
crypto/krb5/src/windows/include/leashwin.h
107
TicketList *next;
crypto/krb5/src/windows/include/leashwin.h
118
TICKETINFO *next;
crypto/krb5/src/windows/leash/KrbListTickets.cpp
12
tempList = tempList->next;
crypto/krb5/src/windows/leash/KrbListTickets.cpp
169
*ticketListTail = &list->next;
crypto/krb5/src/windows/leash/KrbListTickets.cpp
235
ticketinfo->next = NULL;
crypto/krb5/src/windows/leash/KrbListTickets.cpp
314
ticketinfotail = &((*ticketinfotail)->next);
crypto/krb5/src/windows/leash/KrbListTickets.cpp
337
ticketinfo->next = NULL;
crypto/krb5/src/windows/leash/KrbListTickets.cpp
40
TICKETINFO *ticketinfo = *ticketinfolist, *next;
crypto/krb5/src/windows/leash/KrbListTickets.cpp
42
next = ticketinfo->next;
crypto/krb5/src/windows/leash/KrbListTickets.cpp
45
ticketinfo = next;
crypto/krb5/src/windows/leash/LeashView.cpp
1205
tempList = tempList->next) {
crypto/krb5/src/windows/leash/LeashView.cpp
1226
principal = principal->next;
crypto/krb5/src/windows/leash/LeashView.cpp
1235
principal = principal->next) {
crypto/krb5/src/windows/leash/LeashView.cpp
1251
ticket != NULL; ticket = ticket->next) {
crypto/krb5/src/windows/leash/LeashView.cpp
1262
CCacheDisplayData *next = prevCCacheDisplay->m_next;
crypto/krb5/src/windows/leash/LeashView.cpp
1264
prevCCacheDisplay = next;
crypto/krb5/src/windows/leash/LeashView.cpp
362
CCacheDisplayData *next = elem->m_next;
crypto/krb5/src/windows/leash/LeashView.cpp
364
elem = next;
crypto/krb5/src/windows/leashdll/leasherr.c
49
HANDLE next;
crypto/krb5/src/windows/leashdll/leasherr.c
51
struct et_list *next;
crypto/krb5/src/windows/leashdll/leasherr.c
66
_link->next=*__et_list;
crypto/krb5/src/windows/leashdll/leasherr.c
76
_link->next=*__et_list;
crypto/krb5/src/windows/leashdll/lsh_pwd.c
1024
struct _slider_info * next;
crypto/krb5/src/windows/leashdll/lsh_pwd.c
1034
n = s->next;
crypto/krb5/src/windows/leashdll/lsh_pwd.c
1061
s = s->next;
crypto/krb5/src/windows/leashdll/lsh_pwd.c
1092
s = s->next;
crypto/krb5/src/windows/leashdll/lsh_pwd.c
1170
new_info->next = sliders;
crypto/openssh/match.c
313
match_list(const char *client, const char *server, u_int *next)
crypto/openssh/match.c
336
if (next != NULL)
crypto/openssh/match.c
337
*next = (cp == NULL) ?
crypto/openssh/match.c
345
if (next != NULL)
crypto/openssh/match.c
346
*next = strlen(c);
crypto/openssh/nchan.c
101
chan_set_ostate(Channel *c, u_int next)
crypto/openssh/nchan.c
103
if (c->ostate > CHAN_OUTPUT_CLOSED || next > CHAN_OUTPUT_CLOSED)
crypto/openssh/nchan.c
104
fatal("chan_set_ostate: bad state %d -> %d", c->ostate, next);
crypto/openssh/nchan.c
106
ostates[next]);
crypto/openssh/nchan.c
107
c->ostate = next;
crypto/openssh/nchan.c
91
chan_set_istate(Channel *c, u_int next)
crypto/openssh/nchan.c
93
if (c->istate > CHAN_INPUT_CLOSED || next > CHAN_INPUT_CLOSED)
crypto/openssh/nchan.c
94
fatal("chan_set_istate: bad state %d -> %d", c->istate, next);
crypto/openssh/nchan.c
96
istates[next]);
crypto/openssh/nchan.c
97
c->istate = next;
crypto/openssh/openbsd-compat/fake-rfc2553.c
113
struct addrinfo *next;
crypto/openssh/openbsd-compat/fake-rfc2553.c
116
next = ai->ai_next;
crypto/openssh/openbsd-compat/fake-rfc2553.c
118
ai = next;
crypto/openssh/openbsd-compat/getrrsetbyname.c
157
struct dns_query *next;
crypto/openssh/openbsd-compat/getrrsetbyname.c
167
struct dns_rr *next;
crypto/openssh/openbsd-compat/getrrsetbyname.c
317
rr; rr = rr->next) {
crypto/openssh/openbsd-compat/getrrsetbyname.c
482
prev->next = curr;
crypto/openssh/openbsd-compat/getrrsetbyname.c
542
prev->next = curr;
crypto/openssh/openbsd-compat/getrrsetbyname.c
598
struct dns_query *next;
crypto/openssh/openbsd-compat/getrrsetbyname.c
601
next = p->next;
crypto/openssh/openbsd-compat/getrrsetbyname.c
604
p = next;
crypto/openssh/openbsd-compat/getrrsetbyname.c
611
struct dns_rr *next;
crypto/openssh/openbsd-compat/getrrsetbyname.c
614
next = p->next;
crypto/openssh/openbsd-compat/getrrsetbyname.c
618
p = next;
crypto/openssh/openbsd-compat/getrrsetbyname.c
643
p = p->next;
crypto/openssh/packet.c
109
TAILQ_ENTRY(packet) next;
crypto/openssh/packet.c
1435
TAILQ_INSERT_TAIL(&state->outgoing, p, next);
crypto/openssh/packet.c
1476
TAILQ_REMOVE(&state->outgoing, p, next);
crypto/openssh/packet.c
707
TAILQ_REMOVE(&state->outgoing, p, next);
crypto/openssh/packet.h
51
TAILQ_ENTRY(key_entry) next;
crypto/openssh/readconf.c
772
goto next;
crypto/openssh/readconf.c
883
goto next;
crypto/openssh/readconf.c
907
next:
crypto/openssh/regress/misc/fuzz-harness/agent_fuzz_helper.c
101
TAILQ_REMOVE(&idtab->idlist, id, next);
crypto/openssh/regress/misc/fuzz-harness/agent_fuzz_helper.c
66
TAILQ_INSERT_TAIL(&idtab->idlist, id, next);
crypto/openssh/regress/misc/fuzz-harness/agent_fuzz_helper.c
75
TAILQ_INSERT_TAIL(&idtab->idlist, id, next);
crypto/openssh/scp.c
1406
goto next;
crypto/openssh/scp.c
1410
goto next;
crypto/openssh/scp.c
1419
goto next;
crypto/openssh/scp.c
1424
goto next;
crypto/openssh/scp.c
1433
goto next;
crypto/openssh/scp.c
1443
goto next;
crypto/openssh/scp.c
1445
next: if (fd != -1) {
crypto/openssh/servconf.c
1012
goto next;
crypto/openssh/servconf.c
1034
next:
crypto/openssh/servconf.c
872
goto next;
crypto/openssh/servconf.c
878
goto next;
crypto/openssh/servconf.c
905
goto next;
crypto/openssh/servconf.c
917
goto next;
crypto/openssh/servconf.c
931
goto next;
crypto/openssh/servconf.c
946
goto next;
crypto/openssh/servconf.c
970
goto next;
crypto/openssh/servconf.c
998
goto next;
crypto/openssh/ssh-agent.c
1036
TAILQ_REMOVE(&idtab->idlist, id, next);
crypto/openssh/ssh-agent.c
1054
TAILQ_REMOVE(&idtab->idlist, id, next);
crypto/openssh/ssh-agent.c
1079
nxt = TAILQ_NEXT(id, next);
crypto/openssh/ssh-agent.c
1084
TAILQ_REMOVE(&idtab->idlist, id, next);
crypto/openssh/ssh-agent.c
136
TAILQ_ENTRY(identity) next;
crypto/openssh/ssh-agent.c
1431
TAILQ_INSERT_TAIL(&idtab->idlist, id, next);
crypto/openssh/ssh-agent.c
1568
TAILQ_INSERT_TAIL(&idtab->idlist, id, next);
crypto/openssh/ssh-agent.c
1683
nxt = TAILQ_NEXT(id, next);
crypto/openssh/ssh-agent.c
1688
TAILQ_REMOVE(&idtab->idlist, id, next);
crypto/openssh/ssh-agent.c
596
TAILQ_FOREACH(id, &idtab->idlist, next) {
crypto/openssh/ssh-agent.c
652
TAILQ_FOREACH(id, &idtab->idlist, next) {
crypto/openssh/ssh-keygen.c
1046
goto next;
crypto/openssh/ssh-keygen.c
1117
goto next;
crypto/openssh/ssh-keygen.c
1119
next:
crypto/openssh/ssh-pkcs11.c
154
TAILQ_FOREACH(p, &pkcs11_providers, next) {
crypto/openssh/ssh-pkcs11.c
169
TAILQ_REMOVE(&pkcs11_providers, p, next);
crypto/openssh/ssh-pkcs11.c
1988
TAILQ_INSERT_TAIL(&pkcs11_providers, p, next);
crypto/openssh/ssh-pkcs11.c
2030
TAILQ_REMOVE(&pkcs11_keys, k11, next);
crypto/openssh/ssh-pkcs11.c
2034
TAILQ_REMOVE(&pkcs11_providers, p, next);
crypto/openssh/ssh-pkcs11.c
2056
TAILQ_REMOVE(&pkcs11_providers, p, next);
crypto/openssh/ssh-pkcs11.c
417
TAILQ_FOREACH(k11, &pkcs11_keys, next) {
crypto/openssh/ssh-pkcs11.c
440
TAILQ_INSERT_TAIL(&pkcs11_keys, k11, next);
crypto/openssh/ssh-pkcs11.c
457
TAILQ_FOREACH(k11, &pkcs11_keys, next) {
crypto/openssh/ssh-pkcs11.c
71
TAILQ_ENTRY(pkcs11_provider) next;
crypto/openssh/ssh-pkcs11.c
82
TAILQ_ENTRY(pkcs11_key) next;
crypto/openssh/ssh_api.c
176
TAILQ_REMOVE(&ssh->public_keys, k, next);
crypto/openssh/ssh_api.c
182
TAILQ_REMOVE(&ssh->private_keys, k, next);
crypto/openssh/ssh_api.c
219
TAILQ_INSERT_TAIL(&ssh->private_keys, k_prv, next);
crypto/openssh/ssh_api.c
223
TAILQ_INSERT_TAIL(&ssh->public_keys, k, next);
crypto/openssh/ssh_api.c
229
TAILQ_INSERT_TAIL(&ssh->public_keys, k, next);
crypto/openssh/ssh_api.c
489
TAILQ_FOREACH(k, &ssh->public_keys, next) {
crypto/openssh/ssh_api.c
504
TAILQ_FOREACH(k, &ssh->private_keys, next) {
crypto/openssh/ssh_api.c
519
TAILQ_FOREACH(k, &ssh->public_keys, next) {
crypto/openssh/ssh_api.c
555
TAILQ_FOREACH(k, &ssh->public_keys, next) {
crypto/openssh/sshconnect2.c
1352
TAILQ_FOREACH(private_id, &authctxt->keys, next) {
crypto/openssh/sshconnect2.c
1369
TAILQ_FOREACH(private_id, &authctxt->keys, next) {
crypto/openssh/sshconnect2.c
1716
TAILQ_INSERT_TAIL(&files, id, next);
crypto/openssh/sshconnect2.c
1739
TAILQ_INSERT_TAIL(preferred, id, next);
crypto/openssh/sshconnect2.c
1751
TAILQ_FOREACH(id, &files, next) {
crypto/openssh/sshconnect2.c
1757
TAILQ_REMOVE(&files, id, next);
crypto/openssh/sshconnect2.c
1758
TAILQ_INSERT_TAIL(preferred, id, next);
crypto/openssh/sshconnect2.c
1772
TAILQ_INSERT_TAIL(&agent, id, next);
crypto/openssh/sshconnect2.c
1777
TAILQ_CONCAT(preferred, &agent, next);
crypto/openssh/sshconnect2.c
1781
TAILQ_FOREACH_SAFE(id, &files, next, tmp) {
crypto/openssh/sshconnect2.c
1785
TAILQ_FOREACH(id2, &files, next) {
crypto/openssh/sshconnect2.c
1790
TAILQ_REMOVE(&files, id, next);
crypto/openssh/sshconnect2.c
1791
TAILQ_INSERT_TAIL(preferred, id, next);
crypto/openssh/sshconnect2.c
1798
TAILQ_REMOVE(&files, id, next);
crypto/openssh/sshconnect2.c
1803
TAILQ_CONCAT(preferred, &files, next);
crypto/openssh/sshconnect2.c
1805
TAILQ_FOREACH_SAFE(id, preferred, next, id2) {
crypto/openssh/sshconnect2.c
1826
TAILQ_REMOVE(preferred, id, next);
crypto/openssh/sshconnect2.c
1832
TAILQ_FOREACH_SAFE(id, preferred, next, id2) {
crypto/openssh/sshconnect2.c
1852
TAILQ_REMOVE(&authctxt->keys, id, next);
crypto/openssh/sshconnect2.c
1864
TAILQ_FOREACH(id, &authctxt->keys, next)
crypto/openssh/sshconnect2.c
1886
TAILQ_REMOVE(&authctxt->keys, id, next);
crypto/openssh/sshconnect2.c
1887
TAILQ_INSERT_TAIL(&authctxt->keys, id, next);
crypto/openssh/sshconnect2.c
2324
u_int next;
crypto/openssh/sshconnect2.c
2341
if ((name = match_list(preferred, supported, &next)) == NULL) {
crypto/openssh/sshconnect2.c
2346
preferred += next;
crypto/openssh/sshconnect2.c
306
TAILQ_ENTRY(identity) next;
crypto/openssh/sshconnect2.c
725
TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) {
crypto/openssl/apps/cmp.c
1044
char *next;
crypto/openssl/apps/cmp.c
1046
for (; names != NULL; names = next) {
crypto/openssl/apps/cmp.c
1049
next = next_item(names);
crypto/openssl/apps/cmp.c
2032
char *next = next_item(opt_policy_oids);
crypto/openssl/apps/cmp.c
2052
opt_policy_oids = next;
crypto/openssl/apps/cmp.c
3313
goto next;
crypto/openssl/apps/cmp.c
3327
goto next;
crypto/openssl/apps/cmp.c
3345
next:
crypto/openssl/apps/cms.c
1068
for (kparam = key_first; kparam; kparam = kparam->next) {
crypto/openssl/apps/cms.c
1193
for (kparam = key_first; kparam; kparam = kparam->next) {
crypto/openssl/apps/cms.c
1372
tparam = key_param->next;
crypto/openssl/apps/cms.c
59
cms_key_param *next;
crypto/openssl/apps/cms.c
739
nparam->next = NULL;
crypto/openssl/apps/cms.c
743
key_param->next = nparam;
crypto/openssl/apps/lib/apps.c
740
char *next = next_item(files);
crypto/openssl/apps/lib/apps.c
749
files = next;
crypto/openssl/apps/lib/apps.c
790
char *next = next_item(input);
crypto/openssl/apps/lib/apps.c
802
input = next;
crypto/openssl/apps/lib/opt.c
175
const OPTIONS *next;
crypto/openssl/apps/lib/opt.c
219
for (next = o + 1; next->name; ++next) {
crypto/openssl/apps/lib/opt.c
223
duplicated = next->retval != OPT_DUP
crypto/openssl/apps/lib/opt.c
224
&& strcmp(o->name, next->name) == 0;
crypto/openssl/apps/lib/s_cb.c
1016
while (exc->next != NULL)
crypto/openssl/apps/lib/s_cb.c
1017
exc = exc->next;
crypto/openssl/apps/lib/s_cb.c
1063
exc->next = *pexc;
crypto/openssl/apps/lib/s_cb.c
1066
if (exc->next) {
crypto/openssl/apps/lib/s_cb.c
1067
exc->certform = exc->next->certform;
crypto/openssl/apps/lib/s_cb.c
1068
exc->keyform = exc->next->keyform;
crypto/openssl/apps/lib/s_cb.c
1069
exc->next->prev = exc;
crypto/openssl/apps/lib/s_cb.c
1088
exc = exc->next;
crypto/openssl/apps/lib/s_cb.c
1100
if (exc->certfile == NULL && exc->next == NULL) {
crypto/openssl/apps/lib/s_cb.c
1105
for (; exc; exc = exc->next) {
crypto/openssl/apps/lib/s_cb.c
957
struct ssl_excert_st *next, *prev;
crypto/openssl/apps/lib/s_socket.c
307
const BIO_ADDRINFO *next;
crypto/openssl/apps/lib/s_socket.c
334
next = BIO_ADDRINFO_next(res);
crypto/openssl/apps/lib/s_socket.c
340
if (next != NULL
crypto/openssl/apps/lib/s_socket.c
341
&& BIO_ADDRINFO_socktype(next) == sock_type
crypto/openssl/apps/lib/s_socket.c
342
&& BIO_ADDRINFO_protocol(next) == sock_protocol) {
crypto/openssl/apps/lib/s_socket.c
344
&& BIO_ADDRINFO_family(next) == AF_INET6) {
crypto/openssl/apps/lib/s_socket.c
350
sock_address = BIO_ADDRINFO_address(next);
crypto/openssl/apps/lib/s_socket.c
352
&& BIO_ADDRINFO_family(next) == AF_INET) {
crypto/openssl/apps/rehash.c
130
for (bp = hash_table[ndx]; bp; bp = bp->next)
crypto/openssl/apps/rehash.c
136
bp->next = hash_table[ndx];
crypto/openssl/apps/rehash.c
142
for (ep = bp->first_entry; ep; ep = ep->next) {
crypto/openssl/apps/rehash.c
175
bp->last_entry->next = ep;
crypto/openssl/apps/rehash.c
416
nextbp = bp->next;
crypto/openssl/apps/rehash.c
419
for (ep = bp->first_entry; ep; ep = ep->next)
crypto/openssl/apps/rehash.c
424
nextep = ep->next;
crypto/openssl/apps/rehash.c
71
struct hentry_st *next;
crypto/openssl/apps/rehash.c
79
struct bucket_st *next;
crypto/openssl/apps/s_server.c
323
BIO *next = BIO_next(b);
crypto/openssl/apps/s_server.c
327
if (next == NULL)
crypto/openssl/apps/s_server.c
330
ret = BIO_read(next, out, outl);
crypto/openssl/apps/s_server.c
339
BIO *next = BIO_next(b);
crypto/openssl/apps/s_server.c
345
if (next == NULL)
crypto/openssl/apps/s_server.c
365
ret = BIO_write(next, wbuf->buff, inl);
crypto/openssl/apps/s_server.c
373
BIO *next = BIO_next(b);
crypto/openssl/apps/s_server.c
375
if (next == NULL)
crypto/openssl/apps/s_server.c
382
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/apps/s_server.c
391
BIO *next = BIO_next(bp);
crypto/openssl/apps/s_server.c
393
if (next == NULL)
crypto/openssl/apps/s_server.c
3930
struct simple_ssl_session_st *next;
crypto/openssl/apps/s_server.c
3968
sess->next = first;
crypto/openssl/apps/s_server.c
3979
for (sess = first; sess; sess = sess->next) {
crypto/openssl/apps/s_server.c
3997
for (sess = first; sess; sess = sess->next) {
crypto/openssl/apps/s_server.c
4000
prev->next = sess->next;
crypto/openssl/apps/s_server.c
4002
first = sess->next;
crypto/openssl/apps/s_server.c
4028
sess = sess->next;
crypto/openssl/apps/s_time.c
285
goto next;
crypto/openssl/apps/s_time.c
341
next:
crypto/openssl/crypto/asn1/bio_asn1.c
159
BIO *next;
crypto/openssl/crypto/asn1/bio_asn1.c
162
next = BIO_next(b);
crypto/openssl/crypto/asn1/bio_asn1.c
163
if (in == NULL || inl < 0 || ctx == NULL || next == NULL)
crypto/openssl/crypto/asn1/bio_asn1.c
201
ret = BIO_write(next, ctx->buf + ctx->bufpos, ctx->buflen);
crypto/openssl/crypto/asn1/bio_asn1.c
221
ret = BIO_write(next, in, wrmax);
crypto/openssl/crypto/asn1/bio_asn1.c
252
asn1_ps_func *cleanup, asn1_bio_state_t next)
crypto/openssl/crypto/asn1/bio_asn1.c
268
ctx->state = next;
crypto/openssl/crypto/asn1/bio_asn1.c
294
BIO *next = BIO_next(b);
crypto/openssl/crypto/asn1/bio_asn1.c
295
if (next == NULL)
crypto/openssl/crypto/asn1/bio_asn1.c
297
return BIO_read(next, in, inl);
crypto/openssl/crypto/asn1/bio_asn1.c
307
BIO *next = BIO_next(b);
crypto/openssl/crypto/asn1/bio_asn1.c
308
if (next == NULL)
crypto/openssl/crypto/asn1/bio_asn1.c
310
return BIO_gets(next, str, size);
crypto/openssl/crypto/asn1/bio_asn1.c
315
BIO *next = BIO_next(b);
crypto/openssl/crypto/asn1/bio_asn1.c
316
if (next == NULL)
crypto/openssl/crypto/asn1/bio_asn1.c
318
return BIO_callback_ctrl(next, cmd, fp);
crypto/openssl/crypto/asn1/bio_asn1.c
326
BIO *next;
crypto/openssl/crypto/asn1/bio_asn1.c
331
next = BIO_next(b);
crypto/openssl/crypto/asn1/bio_asn1.c
367
if (next == NULL)
crypto/openssl/crypto/asn1/bio_asn1.c
385
return BIO_ctrl(next, cmd, arg1, arg2);
crypto/openssl/crypto/asn1/bio_asn1.c
392
if (next == NULL)
crypto/openssl/crypto/asn1/bio_asn1.c
394
return BIO_ctrl(next, cmd, arg1, arg2);
crypto/openssl/crypto/asn1/bio_asn1.c
73
asn1_ps_func *cleanup, asn1_bio_state_t next);
crypto/openssl/crypto/async/async_local.h
56
struct fd_lookup_st *next;
crypto/openssl/crypto/async/async_wait.c
105
curr = curr->next;
crypto/openssl/crypto/async/async_wait.c
133
curr = curr->next;
crypto/openssl/crypto/async/async_wait.c
149
curr = curr->next;
crypto/openssl/crypto/async/async_wait.c
156
ctx->fds = curr->next;
crypto/openssl/crypto/async/async_wait.c
158
prev->next = curr->next;
crypto/openssl/crypto/async/async_wait.c
179
curr = curr->next;
crypto/openssl/crypto/async/async_wait.c
23
struct fd_lookup_st *next;
crypto/openssl/crypto/async/async_wait.c
231
ctx->fds = curr->next;
crypto/openssl/crypto/async/async_wait.c
233
prev->next = curr->next;
crypto/openssl/crypto/async/async_wait.c
238
curr = prev->next;
crypto/openssl/crypto/async/async_wait.c
245
curr = curr->next;
crypto/openssl/crypto/async/async_wait.c
36
next = curr->next;
crypto/openssl/crypto/async/async_wait.c
38
curr = next;
crypto/openssl/crypto/async/async_wait.c
59
fdlookup->next = ctx->fds;
crypto/openssl/crypto/async/async_wait.c
74
curr = curr->next;
crypto/openssl/crypto/async/async_wait.c
82
curr = curr->next;
crypto/openssl/crypto/async/async_wait.c
97
curr = curr->next;
crypto/openssl/crypto/bio/bio_addr.c
474
BIO_ADDRINFO *next = bai->bai_next;
crypto/openssl/crypto/bio/bio_addr.c
477
bai = next;
crypto/openssl/crypto/bio/bio_lib.c
840
void BIO_set_next(BIO *b, BIO *next)
crypto/openssl/crypto/bio/bio_lib.c
842
b->next_bio = next;
crypto/openssl/crypto/bn/bn_ctx.c
174
pool = pool->next;
crypto/openssl/crypto/bn/bn_ctx.c
28
struct bignum_pool_item *prev, *next;
crypto/openssl/crypto/bn/bn_ctx.c
309
p->current = p->head->next;
crypto/openssl/crypto/bn/bn_ctx.c
332
item->next = NULL;
crypto/openssl/crypto/bn/bn_ctx.c
337
p->tail->next = item;
crypto/openssl/crypto/bn/bn_ctx.c
350
p->current = p->current->next;
crypto/openssl/crypto/bn/bn_ctx.c
94
item = item->next;
crypto/openssl/crypto/comp/c_brotli.c
505
BIO *next = BIO_next(b);
crypto/openssl/crypto/comp/c_brotli.c
556
ret = BIO_read(next, ctx->decode.buf, ctx->decode.bufsize);
crypto/openssl/crypto/comp/c_brotli.c
576
BIO *next = BIO_next(b);
crypto/openssl/crypto/comp/c_brotli.c
611
ret = BIO_write(next, ctx->encode.ptr, ctx->encode.count);
crypto/openssl/crypto/comp/c_brotli.c
652
BIO *next = BIO_next(b);
crypto/openssl/crypto/comp/c_brotli.c
667
ret = BIO_write(next, ctx->encode.ptr, ctx->encode.count);
crypto/openssl/crypto/comp/c_brotli.c
704
BIO *next = BIO_next(b);
crypto/openssl/crypto/comp/c_brotli.c
706
if (next == NULL)
crypto/openssl/crypto/comp/c_brotli.c
720
ret = BIO_flush(next);
crypto/openssl/crypto/comp/c_brotli.c
765
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_brotli.c
773
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_brotli.c
780
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_brotli.c
784
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_brotli.c
793
BIO *next = BIO_next(b);
crypto/openssl/crypto/comp/c_brotli.c
794
if (next == NULL)
crypto/openssl/crypto/comp/c_brotli.c
796
return BIO_callback_ctrl(next, cmd, fp);
crypto/openssl/crypto/comp/c_zlib.c
449
BIO *next = BIO_next(b);
crypto/openssl/crypto/comp/c_zlib.c
490
ret = BIO_read(next, ctx->ibuf, ctx->ibufsize);
crypto/openssl/crypto/comp/c_zlib.c
509
BIO *next = BIO_next(b);
crypto/openssl/crypto/comp/c_zlib.c
539
ret = BIO_write(next, ctx->optr, ctx->ocount);
crypto/openssl/crypto/comp/c_zlib.c
578
BIO *next = BIO_next(b);
crypto/openssl/crypto/comp/c_zlib.c
592
ret = BIO_write(next, ctx->optr, ctx->ocount);
crypto/openssl/crypto/comp/c_zlib.c
627
BIO *next = BIO_next(b);
crypto/openssl/crypto/comp/c_zlib.c
629
if (next == NULL)
crypto/openssl/crypto/comp/c_zlib.c
643
ret = BIO_flush(next);
crypto/openssl/crypto/comp/c_zlib.c
678
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_zlib.c
695
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_zlib.c
701
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_zlib.c
705
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_zlib.c
714
BIO *next = BIO_next(b);
crypto/openssl/crypto/comp/c_zlib.c
716
if (next == NULL)
crypto/openssl/crypto/comp/c_zlib.c
718
return BIO_callback_ctrl(next, cmd, fp);
crypto/openssl/crypto/comp/c_zstd.c
582
BIO *next = BIO_next(b);
crypto/openssl/crypto/comp/c_zstd.c
626
ret = BIO_read(next, ctx->decompress.buffer, ctx->decompress.bufsize);
crypto/openssl/crypto/comp/c_zstd.c
645
BIO *next = BIO_next(b);
crypto/openssl/crypto/comp/c_zstd.c
670
ret = BIO_write(next, (unsigned char *)ctx->compress.outbuf.dst + ctx->compress.write_pos,
crypto/openssl/crypto/comp/c_zstd.c
706
BIO *next = BIO_next(b);
crypto/openssl/crypto/comp/c_zstd.c
722
ret = BIO_write(next, (unsigned char *)ctx->compress.outbuf.dst + ctx->compress.write_pos,
crypto/openssl/crypto/comp/c_zstd.c
753
BIO *next = BIO_next(b);
crypto/openssl/crypto/comp/c_zstd.c
755
if (next == NULL)
crypto/openssl/crypto/comp/c_zstd.c
769
ret = BIO_flush(next);
crypto/openssl/crypto/comp/c_zstd.c
813
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_zstd.c
821
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_zstd.c
828
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_zstd.c
832
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_zstd.c
841
BIO *next = BIO_next(b);
crypto/openssl/crypto/comp/c_zstd.c
842
if (next == NULL)
crypto/openssl/crypto/comp/c_zstd.c
844
return BIO_callback_ctrl(next, cmd, fp);
crypto/openssl/crypto/conf/conf_def.c
286
BIO *next;
crypto/openssl/crypto/conf/conf_def.c
288
if ((next = get_next_file(dirpath, &dirctx)) != NULL) {
crypto/openssl/crypto/conf/conf_def.c
290
in = next;
crypto/openssl/crypto/conf/conf_def.c
439
BIO *next;
crypto/openssl/crypto/conf/conf_def.c
495
next = process_include(include_path, &dirctx, &dirpath);
crypto/openssl/crypto/conf/conf_def.c
501
next = BIO_new_file(include_path, "r");
crypto/openssl/crypto/conf/conf_def.c
505
if (next != NULL) {
crypto/openssl/crypto/conf/conf_def.c
510
BIO_free(next);
crypto/openssl/crypto/conf/conf_def.c
516
BIO_free(next);
crypto/openssl/crypto/conf/conf_def.c
520
in = next;
crypto/openssl/crypto/conf/conf_def.c
809
BIO *next;
crypto/openssl/crypto/conf/conf_def.c
824
if ((next = get_next_file(include, dirctx)) != NULL)
crypto/openssl/crypto/conf/conf_def.c
826
return next;
crypto/openssl/crypto/conf/conf_def.c
829
next = BIO_new_file(include, "r");
crypto/openssl/crypto/conf/conf_def.c
830
return next;
crypto/openssl/crypto/engine/eng_list.c
104
if ((engine_list_tail == NULL) || (engine_list_tail->next != NULL)) {
crypto/openssl/crypto/engine/eng_list.c
109
engine_list_tail->next = e;
crypto/openssl/crypto/engine/eng_list.c
115
e->next = NULL;
crypto/openssl/crypto/engine/eng_list.c
130
iterator = iterator->next;
crypto/openssl/crypto/engine/eng_list.c
136
if (e->next)
crypto/openssl/crypto/engine/eng_list.c
137
e->next->prev = e->prev;
crypto/openssl/crypto/engine/eng_list.c
139
e->prev->next = e->next;
crypto/openssl/crypto/engine/eng_list.c
142
engine_list_head = e->next;
crypto/openssl/crypto/engine/eng_list.c
170
iterator = iterator->next;
crypto/openssl/crypto/engine/eng_list.c
293
ret = e->next;
crypto/openssl/crypto/engine/eng_list.c
428
iterator = iterator->next;
crypto/openssl/crypto/engine/eng_list.c
70
iterator = iterator->next;
crypto/openssl/crypto/engine/eng_local.h
150
struct engine_st *next;
crypto/openssl/crypto/err/err_prn.c
100
next += len_next;
crypto/openssl/crypto/err/err_prn.c
103
next += available_len;
crypto/openssl/crypto/err/err_prn.c
104
curr = next; /* will split at this point */
crypto/openssl/crypto/err/err_prn.c
107
while (*next != '\0' && (size_t)(next - txt) <= available_len) {
crypto/openssl/crypto/err/err_prn.c
108
curr = next;
crypto/openssl/crypto/err/err_prn.c
109
next = strstr(curr, separator);
crypto/openssl/crypto/err/err_prn.c
110
if (next != NULL) {
crypto/openssl/crypto/err/err_prn.c
111
next += strlen(separator);
crypto/openssl/crypto/err/err_prn.c
112
trailing_separator = *next == '\0';
crypto/openssl/crypto/err/err_prn.c
114
next = curr + strlen(curr);
crypto/openssl/crypto/err/err_prn.c
117
if ((size_t)(next - txt) <= available_len)
crypto/openssl/crypto/err/err_prn.c
133
tmp = OPENSSL_strndup(txt, next - strlen(separator) - txt);
crypto/openssl/crypto/err/err_prn.c
142
txt = next; /* finished */
crypto/openssl/crypto/err/err_prn.c
76
const char *curr = txt, *next = txt;
crypto/openssl/crypto/err/err_prn.c
97
const size_t len_next = strlen(next);
crypto/openssl/crypto/evp/bio_b64.c
119
BIO *next;
crypto/openssl/crypto/evp/bio_b64.c
125
next = BIO_next(b);
crypto/openssl/crypto/evp/bio_b64.c
126
if (ctx == NULL || next == NULL)
crypto/openssl/crypto/evp/bio_b64.c
170
i = BIO_read(next, &(ctx->tmp[ctx->tmp_len]),
crypto/openssl/crypto/evp/bio_b64.c
177
if (!BIO_should_retry(next)) {
crypto/openssl/crypto/evp/bio_b64.c
323
BIO *next;
crypto/openssl/crypto/evp/bio_b64.c
326
next = BIO_next(b);
crypto/openssl/crypto/evp/bio_b64.c
327
if (ctx == NULL || next == NULL)
crypto/openssl/crypto/evp/bio_b64.c
345
i = BIO_write(next, &(ctx->buf[ctx->buf_off]), n);
crypto/openssl/crypto/evp/bio_b64.c
415
i = BIO_write(next, &(ctx->buf[ctx->buf_off]), n);
crypto/openssl/crypto/evp/bio_b64.c
437
BIO *next;
crypto/openssl/crypto/evp/bio_b64.c
440
next = BIO_next(b);
crypto/openssl/crypto/evp/bio_b64.c
441
if (ctx == NULL || next == NULL)
crypto/openssl/crypto/evp/bio_b64.c
449
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_b64.c
455
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_b64.c
464
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_b64.c
470
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_b64.c
496
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_b64.c
502
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_b64.c
512
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_b64.c
520
BIO *next = BIO_next(b);
crypto/openssl/crypto/evp/bio_b64.c
522
if (next == NULL)
crypto/openssl/crypto/evp/bio_b64.c
525
return BIO_callback_ctrl(next, cmd, fp);
crypto/openssl/crypto/evp/bio_enc.c
108
BIO *next;
crypto/openssl/crypto/evp/bio_enc.c
114
next = BIO_next(b);
crypto/openssl/crypto/evp/bio_enc.c
115
if ((ctx == NULL) || (next == NULL))
crypto/openssl/crypto/evp/bio_enc.c
153
i = BIO_read(next, ctx->read_start, ENC_BLOCK_SIZE);
crypto/openssl/crypto/evp/bio_enc.c
162
if (!BIO_should_retry(next)) {
crypto/openssl/crypto/evp/bio_enc.c
241
BIO *next;
crypto/openssl/crypto/evp/bio_enc.c
244
next = BIO_next(b);
crypto/openssl/crypto/evp/bio_enc.c
245
if ((ctx == NULL) || (next == NULL))
crypto/openssl/crypto/evp/bio_enc.c
253
i = BIO_write(next, &(ctx->buf[ctx->buf_off]), n);
crypto/openssl/crypto/evp/bio_enc.c
282
i = BIO_write(next, &(ctx->buf[ctx->buf_off]), n);
crypto/openssl/crypto/evp/bio_enc.c
304
BIO *next;
crypto/openssl/crypto/evp/bio_enc.c
308
next = BIO_next(b);
crypto/openssl/crypto/evp/bio_enc.c
319
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_enc.c
325
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_enc.c
330
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_enc.c
335
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_enc.c
367
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_enc.c
375
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_enc.c
394
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_enc.c
402
BIO *next = BIO_next(b);
crypto/openssl/crypto/evp/bio_enc.c
404
if (next == NULL)
crypto/openssl/crypto/evp/bio_enc.c
407
return BIO_callback_ctrl(next, cmd, fp);
crypto/openssl/crypto/evp/bio_md.c
106
BIO *next;
crypto/openssl/crypto/evp/bio_md.c
112
next = BIO_next(b);
crypto/openssl/crypto/evp/bio_md.c
113
if ((ctx != NULL) && (next != NULL))
crypto/openssl/crypto/evp/bio_md.c
114
ret = BIO_write(next, in, inl);
crypto/openssl/crypto/evp/bio_md.c
125
if (next != NULL) {
crypto/openssl/crypto/evp/bio_md.c
138
BIO *dbio, *next;
crypto/openssl/crypto/evp/bio_md.c
141
next = BIO_next(b);
crypto/openssl/crypto/evp/bio_md.c
150
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_md.c
172
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_md.c
190
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_md.c
198
BIO *next;
crypto/openssl/crypto/evp/bio_md.c
200
next = BIO_next(b);
crypto/openssl/crypto/evp/bio_md.c
202
if (next == NULL)
crypto/openssl/crypto/evp/bio_md.c
205
return BIO_callback_ctrl(next, cmd, fp);
crypto/openssl/crypto/evp/bio_md.c
77
BIO *next;
crypto/openssl/crypto/evp/bio_md.c
83
next = BIO_next(b);
crypto/openssl/crypto/evp/bio_md.c
85
if ((ctx == NULL) || (next == NULL))
crypto/openssl/crypto/evp/bio_md.c
88
ret = BIO_read(next, out, outl);
crypto/openssl/crypto/evp/bio_ok.c
173
BIO *next;
crypto/openssl/crypto/evp/bio_ok.c
179
next = BIO_next(b);
crypto/openssl/crypto/evp/bio_ok.c
181
if ((ctx == NULL) || (next == NULL) || (BIO_get_init(b) == 0))
crypto/openssl/crypto/evp/bio_ok.c
221
i = BIO_read(next, &(ctx->buf[ctx->buf_len]), n);
crypto/openssl/crypto/evp/bio_ok.c
258
BIO *next;
crypto/openssl/crypto/evp/bio_ok.c
264
next = BIO_next(b);
crypto/openssl/crypto/evp/bio_ok.c
267
if ((ctx == NULL) || (next == NULL) || (BIO_get_init(b) == 0))
crypto/openssl/crypto/evp/bio_ok.c
277
i = BIO_write(next, &(ctx->buf[ctx->buf_off]), n);
crypto/openssl/crypto/evp/bio_ok.c
325
BIO *next;
crypto/openssl/crypto/evp/bio_ok.c
328
next = BIO_next(b);
crypto/openssl/crypto/evp/bio_ok.c
340
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_ok.c
346
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_ok.c
352
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_ok.c
373
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_ok.c
378
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_ok.c
398
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_ok.c
406
BIO *next;
crypto/openssl/crypto/evp/bio_ok.c
408
next = BIO_next(b);
crypto/openssl/crypto/evp/bio_ok.c
410
if (next == NULL)
crypto/openssl/crypto/evp/bio_ok.c
413
return BIO_callback_ctrl(next, cmd, fp);
crypto/openssl/crypto/evp/p_lib.c
1165
BIO *next = BIO_pop(*out);
crypto/openssl/crypto/evp/p_lib.c
1168
*out = next;
crypto/openssl/crypto/init.c
402
currhandler = currhandler->next;
crypto/openssl/crypto/init.c
45
OPENSSL_INIT_STOP *next;
crypto/openssl/crypto/init.c
754
newhand->next = stop_handlers;
crypto/openssl/crypto/initthread.c
366
curr = curr->next;
crypto/openssl/crypto/initthread.c
371
*hands = curr->next;
crypto/openssl/crypto/initthread.c
373
prev->next = curr->next;
crypto/openssl/crypto/initthread.c
376
curr = curr->next;
crypto/openssl/crypto/initthread.c
42
THREAD_EVENT_HANDLER *next;
crypto/openssl/crypto/initthread.c
435
hand->next = *hands;
crypto/openssl/crypto/initthread.c
470
prev->next = curr->next;
crypto/openssl/crypto/initthread.c
472
*hands = curr->next;
crypto/openssl/crypto/initthread.c
474
curr = curr->next;
crypto/openssl/crypto/initthread.c
479
curr = curr->next;
crypto/openssl/crypto/lhash/lh_stats.c
111
for (n = lh->b[i], num = 0; n != NULL; n = n->next)
crypto/openssl/crypto/lhash/lh_stats.c
97
for (n = lh->b[i], num = 0; n != NULL; n = n->next)
crypto/openssl/crypto/lhash/lhash.c
107
nn = n->next;
crypto/openssl/crypto/lhash/lhash.c
135
nn->next = NULL;
crypto/openssl/crypto/lhash/lhash.c
160
*rn = nn->next;
crypto/openssl/crypto/lhash/lhash.c
205
n = a->next;
crypto/openssl/crypto/lhash/lhash.c
275
*n1 = (*n1)->next;
crypto/openssl/crypto/lhash/lhash.c
276
np->next = *n2;
crypto/openssl/crypto/lhash/lhash.c
279
n1 = &((*n1)->next);
crypto/openssl/crypto/lhash/lhash.c
313
while (n1->next != NULL)
crypto/openssl/crypto/lhash/lhash.c
314
n1 = n1->next;
crypto/openssl/crypto/lhash/lhash.c
315
n1->next = np;
crypto/openssl/crypto/lhash/lhash.c
337
for (n1 = *ret; n1 != NULL; n1 = n1->next) {
crypto/openssl/crypto/lhash/lhash.c
339
ret = &(n1->next);
crypto/openssl/crypto/lhash/lhash.c
350
ret = &(n1->next);
crypto/openssl/crypto/lhash/lhash_local.h
15
struct lhash_node_st *next;
crypto/openssl/crypto/mem_sec.c
322
struct sh_list_st *next;
crypto/openssl/crypto/mem_sec.c
398
temp->next = *(SH_LIST **)list;
crypto/openssl/crypto/mem_sec.c
399
OPENSSL_assert(temp->next == NULL || WITHIN_ARENA(temp->next));
crypto/openssl/crypto/mem_sec.c
402
if (temp->next != NULL) {
crypto/openssl/crypto/mem_sec.c
403
OPENSSL_assert((char **)temp->next->p_next == list);
crypto/openssl/crypto/mem_sec.c
404
temp->next->p_next = &(temp->next);
crypto/openssl/crypto/mem_sec.c
415
if (temp->next != NULL)
crypto/openssl/crypto/mem_sec.c
416
temp->next->p_next = temp->p_next;
crypto/openssl/crypto/mem_sec.c
417
*temp->p_next = temp->next;
crypto/openssl/crypto/mem_sec.c
418
if (temp->next == NULL)
crypto/openssl/crypto/mem_sec.c
421
temp2 = temp->next;
crypto/openssl/crypto/pkcs7/pk7_smime.c
225
BIO *next = NULL;
crypto/openssl/crypto/pkcs7/pk7_smime.c
357
next = BIO_pop(p7bio);
crypto/openssl/crypto/pkcs7/pk7_smime.c
359
p7bio = next;
crypto/openssl/crypto/rcu_internal.h
19
struct rcu_cb_item *next;
crypto/openssl/crypto/sha/keccak1600.c
1127
int next)
crypto/openssl/crypto/sha/keccak1600.c
1135
if (next)
crypto/openssl/crypto/sha/keccak1600.c
1137
next = 1;
crypto/openssl/crypto/sha/keccak1600.c
18
void SHA3_squeeze(uint64_t A[5][5], unsigned char *out, size_t len, size_t r, int next);
crypto/openssl/crypto/sha/sha3.c
145
int next = 1;
crypto/openssl/crypto/sha/sha3.c
16
void SHA3_squeeze(uint64_t A[5][5], unsigned char *out, size_t len, size_t r, int next);
crypto/openssl/crypto/sha/sha3.c
170
next = 0;
crypto/openssl/crypto/sha/sha3.c
193
SHA3_squeeze(ctx->A, out, len, bsz, next);
crypto/openssl/crypto/sha/sha3.c
194
next = 1;
crypto/openssl/crypto/sha/sha3.c
200
SHA3_squeeze(ctx->A, ctx->buf, bsz, bsz, next);
crypto/openssl/crypto/threads_none.c
69
tmp = items->next;
crypto/openssl/crypto/threads_none.c
91
item->next = lock->cb_items;
crypto/openssl/crypto/threads_pthread.c
498
cb_items = cb_items->next;
crypto/openssl/crypto/threads_pthread.c
523
item->next = lock->cb_items;
crypto/openssl/crypto/threads_win.c
391
cb_items = cb_items->next;
crypto/openssl/crypto/threads_win.c
418
item->next = lock->cb_items;
crypto/openssl/doc/designs/ddd/ddd-06-mem-uv.c
261
op->prev->next = op;
crypto/openssl/doc/designs/ddd/ddd-06-mem-uv.c
273
if (conn->pending_upper_write_head->next == NULL) {
crypto/openssl/doc/designs/ddd/ddd-06-mem-uv.c
277
conn->pending_upper_write_head = conn->pending_upper_write_head->next;
crypto/openssl/doc/designs/ddd/ddd-06-mem-uv.c
45
struct upper_write_op_st *prev, *next;
crypto/openssl/doc/designs/ddd/ddd-06-mem-uv.c
661
next_op = op->next;
crypto/openssl/include/internal/list.h
107
assert(elem->ossl_list_##name.next == NULL \
crypto/openssl/include/internal/list.h
108
|| elem->ossl_list_##name.next \
crypto/openssl/include/internal/list.h
111
return elem->ossl_list_##name.next; \
crypto/openssl/include/internal/list.h
118
->ossl_list_##name.next \
crypto/openssl/include/internal/list.h
128
list->alpha = elem->ossl_list_##name.next; \
crypto/openssl/include/internal/list.h
132
elem->ossl_list_##name.prev->ossl_list_##name.next = elem->ossl_list_##name.next; \
crypto/openssl/include/internal/list.h
133
if (elem->ossl_list_##name.next != NULL) \
crypto/openssl/include/internal/list.h
134
elem->ossl_list_##name.next->ossl_list_##name.prev = elem->ossl_list_##name.prev; \
crypto/openssl/include/internal/list.h
146
elem->ossl_list_##name.next = list->alpha; \
crypto/openssl/include/internal/list.h
159
list->omega->ossl_list_##name.next = elem; \
crypto/openssl/include/internal/list.h
161
elem->ossl_list_##name.next = NULL; \
crypto/openssl/include/internal/list.h
173
elem->ossl_list_##name.next = e; \
crypto/openssl/include/internal/list.h
176
e->ossl_list_##name.prev->ossl_list_##name.next = elem; \
crypto/openssl/include/internal/list.h
189
elem->ossl_list_##name.next = e->ossl_list_##name.next; \
crypto/openssl/include/internal/list.h
190
if (e->ossl_list_##name.next != NULL) \
crypto/openssl/include/internal/list.h
191
e->ossl_list_##name.next->ossl_list_##name.prev = elem; \
crypto/openssl/include/internal/list.h
192
e->ossl_list_##name.next = elem; \
crypto/openssl/include/internal/list.h
57
type *next, *prev; \
crypto/openssl/include/internal/quic_stream_map.h
35
QUIC_STREAM_LIST_NODE *prev, *next;
crypto/openssl/include/internal/recordmethod.h
134
BIO *next,
crypto/openssl/include/openssl/bio.h
767
void BIO_set_next(BIO *b, BIO *next);
crypto/openssl/providers/implementations/encode_decode/decode_der2key.c
264
goto next;
crypto/openssl/providers/implementations/encode_decode/decode_der2key.c
282
goto next;
crypto/openssl/providers/implementations/encode_decode/decode_der2key.c
293
goto next;
crypto/openssl/providers/implementations/encode_decode/decode_der2key.c
302
goto next;
crypto/openssl/providers/implementations/encode_decode/decode_der2key.c
327
next:
crypto/openssl/providers/implementations/encode_decode/decode_msblob2key.c
112
goto next;
crypto/openssl/providers/implementations/encode_decode/decode_msblob2key.c
119
goto next;
crypto/openssl/providers/implementations/encode_decode/decode_msblob2key.c
126
goto next;
crypto/openssl/providers/implementations/encode_decode/decode_msblob2key.c
131
goto next;
crypto/openssl/providers/implementations/encode_decode/decode_msblob2key.c
139
goto next;
crypto/openssl/providers/implementations/encode_decode/decode_msblob2key.c
154
goto next;
crypto/openssl/providers/implementations/encode_decode/decode_msblob2key.c
162
goto next;
crypto/openssl/providers/implementations/encode_decode/decode_msblob2key.c
168
next:
crypto/openssl/providers/implementations/encode_decode/decode_pvk2key.c
164
goto next;
crypto/openssl/providers/implementations/encode_decode/decode_pvk2key.c
170
next:
crypto/openssl/providers/implementations/kdfs/argon2.c
235
static void fill_block(const BLOCK *prev, const BLOCK *ref, BLOCK *next,
crypto/openssl/providers/implementations/kdfs/argon2.c
370
BLOCK *next, int with_xor)
crypto/openssl/providers/implementations/kdfs/argon2.c
380
xor_block(&tmp, next);
crypto/openssl/providers/implementations/kdfs/argon2.c
388
copy_block(next, &tmp);
crypto/openssl/providers/implementations/kdfs/argon2.c
389
xor_block(next, &blockR);
crypto/openssl/providers/implementations/rands/fips_crng_test.c
107
static int RCT_test(CRNG_TEST *crngt, uint8_t next)
crypto/openssl/providers/implementations/rands/fips_crng_test.c
122
&& ossl_unlikely(next == crngt->rct.a))
crypto/openssl/providers/implementations/rands/fips_crng_test.c
124
crngt->rct.a = next;
crypto/openssl/providers/implementations/rands/fips_crng_test.c
132
static int APT_test(CRNG_TEST *crngt, uint8_t next)
crypto/openssl/providers/implementations/rands/fips_crng_test.c
146
if (ossl_unlikely(crngt->apt.a == next)
crypto/openssl/providers/implementations/rands/fips_crng_test.c
155
crngt->apt.a = next;
crypto/openssl/providers/implementations/storemgmt/file_store_any2obj.c
183
goto next;
crypto/openssl/providers/implementations/storemgmt/file_store_any2obj.c
190
goto next;
crypto/openssl/providers/implementations/storemgmt/file_store_any2obj.c
204
next:
crypto/openssl/providers/implementations/storemgmt/file_store_any2obj.c
251
goto next;
crypto/openssl/providers/implementations/storemgmt/file_store_any2obj.c
258
goto next;
crypto/openssl/providers/implementations/storemgmt/file_store_any2obj.c
272
next:
crypto/openssl/ssl/bio_ssl.c
233
BIO *next;
crypto/openssl/ssl/bio_ssl.c
237
next = BIO_next(b);
crypto/openssl/ssl/bio_ssl.c
259
if (next != NULL)
crypto/openssl/ssl/bio_ssl.c
260
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/ssl/bio_ssl.c
306
if (next != NULL)
crypto/openssl/ssl/bio_ssl.c
307
BIO_push(bio, next);
crypto/openssl/ssl/bio_ssl.c
339
if ((next != NULL) && (next != SSL_get_rbio(ssl))) {
crypto/openssl/ssl/bio_ssl.c
344
if (!BIO_up_ref(next))
crypto/openssl/ssl/bio_ssl.c
347
SSL_set_bio(ssl, next, next);
crypto/openssl/ssl/bio_ssl.c
372
BIO_set_retry_reason(b, BIO_get_retry_reason(next));
crypto/openssl/ssl/d1_lib.c
419
int next, n, ret = 0;
crypto/openssl/ssl/d1_lib.c
625
next = LISTEN_SEND_VERIFY_REQUEST;
crypto/openssl/ssl/d1_lib.c
643
next = LISTEN_SEND_VERIFY_REQUEST;
crypto/openssl/ssl/d1_lib.c
646
next = LISTEN_SUCCESS;
crypto/openssl/ssl/d1_lib.c
650
if (next == LISTEN_SEND_VERIFY_REQUEST) {
crypto/openssl/ssl/d1_lib.c
790
} while (next != LISTEN_SUCCESS);
crypto/openssl/ssl/pqueue.c
101
pitem *next;
crypto/openssl/ssl/pqueue.c
107
for (next = pq->items; next->next != NULL; next = next->next) {
crypto/openssl/ssl/pqueue.c
108
if (memcmp(next->priority, prio64be, 8) == 0) {
crypto/openssl/ssl/pqueue.c
109
found = next;
crypto/openssl/ssl/pqueue.c
115
if (memcmp(next->priority, prio64be, 8) == 0)
crypto/openssl/ssl/pqueue.c
116
found = next;
crypto/openssl/ssl/pqueue.c
138
*item = (*item)->next;
crypto/openssl/ssl/pqueue.c
150
item = item->next;
crypto/openssl/ssl/pqueue.c
27
item->next = NULL;
crypto/openssl/ssl/pqueue.c
50
pitem *curr, *next;
crypto/openssl/ssl/pqueue.c
57
for (curr = NULL, next = pq->items;
crypto/openssl/ssl/pqueue.c
58
next != NULL; curr = next, next = next->next) {
crypto/openssl/ssl/pqueue.c
62
int cmp = memcmp(next->priority, item->priority, 8);
crypto/openssl/ssl/pqueue.c
64
item->next = next;
crypto/openssl/ssl/pqueue.c
69
curr->next = item;
crypto/openssl/ssl/pqueue.c
78
item->next = NULL;
crypto/openssl/ssl/pqueue.c
79
curr->next = item;
crypto/openssl/ssl/pqueue.c
94
pq->items = pq->items->next;
crypto/openssl/ssl/quic/quic_cfq.c
103
l->head = n->next;
crypto/openssl/ssl/quic/quic_cfq.c
107
n->prev->next = n->next;
crypto/openssl/ssl/quic/quic_cfq.c
108
if (n->next != NULL)
crypto/openssl/ssl/quic/quic_cfq.c
109
n->next->prev = n->prev;
crypto/openssl/ssl/quic/quic_cfq.c
110
n->prev = n->next = NULL;
crypto/openssl/ssl/quic/quic_cfq.c
115
n->next = l->head;
crypto/openssl/ssl/quic/quic_cfq.c
118
if (n->next != NULL)
crypto/openssl/ssl/quic/quic_cfq.c
119
n->next->prev = n;
crypto/openssl/ssl/quic/quic_cfq.c
127
n->next = NULL;
crypto/openssl/ssl/quic/quic_cfq.c
130
n->prev->next = n;
crypto/openssl/ssl/quic/quic_cfq.c
140
n->next = ref->next;
crypto/openssl/ssl/quic/quic_cfq.c
141
if (ref->next != NULL)
crypto/openssl/ssl/quic/quic_cfq.c
142
ref->next->prev = n;
crypto/openssl/ssl/quic/quic_cfq.c
143
ref->next = n;
crypto/openssl/ssl/quic/quic_cfq.c
156
n->prev = n->next = NULL;
crypto/openssl/ssl/quic/quic_cfq.c
160
for (; p != NULL && cmp(p, n) < 0; pprev = p, p = p->next)
crypto/openssl/ssl/quic/quic_cfq.c
18
QUIC_CFQ_ITEM_EX *prev, *next;
crypto/openssl/ssl/quic/quic_cfq.c
199
pnext = p->next;
crypto/openssl/ssl/quic/quic_cfq.c
355
for (; item != NULL && item->pn_space != pn_space; item = item->next)
crypto/openssl/ssl/quic/quic_cfq.c
372
ex = ex->next;
crypto/openssl/ssl/quic/quic_cfq.c
374
for (; ex != NULL && ex->pn_space != pn_space; ex = ex->next)
crypto/openssl/ssl/quic/quic_sf_list.c
118
sf = sf->next)
crypto/openssl/ssl/quic/quic_sf_list.c
140
next_frame = next_frame->next;
crypto/openssl/ssl/quic/quic_sf_list.c
144
prev_frame->next = drop_frame->next;
crypto/openssl/ssl/quic/quic_sf_list.c
15
struct stream_frame_st *prev, *next;
crypto/openssl/ssl/quic/quic_sf_list.c
165
new_frame->next = next_frame;
crypto/openssl/ssl/quic/quic_sf_list.c
169
prev_frame->next = new_frame;
crypto/openssl/ssl/quic/quic_sf_list.c
193
sf = sf->next;
crypto/openssl/ssl/quic/quic_sf_list.c
213
*fin = sf->next == NULL ? fl->fin : 0;
crypto/openssl/ssl/quic/quic_sf_list.c
235
sf = sf->next;
crypto/openssl/ssl/quic/quic_sf_list.c
283
sf = sf->next;
crypto/openssl/ssl/quic/quic_sf_list.c
285
for (; sf != NULL; sf = sf->next) {
crypto/openssl/ssl/quic/quic_sf_list.c
317
prev_frame->next = sf->next;
crypto/openssl/ssl/quic/quic_sf_list.c
319
if (sf->next != NULL)
crypto/openssl/ssl/quic/quic_sf_list.c
320
sf->next->prev = prev_frame;
crypto/openssl/ssl/quic/quic_sf_list.c
58
next_frame = sf->next;
crypto/openssl/ssl/quic/quic_sf_list.c
73
fl->tail->next = new_frame;
crypto/openssl/ssl/quic/quic_stream_map.c
179
if (stream->active_node.next != NULL)
crypto/openssl/ssl/quic/quic_stream_map.c
181
if (stream->accept_node.next != NULL)
crypto/openssl/ssl/quic/quic_stream_map.c
183
if (stream->ready_for_gc_node.next != NULL)
crypto/openssl/ssl/quic/quic_stream_map.c
26
assert(n->prev == NULL && n->next == NULL
crypto/openssl/ssl/quic/quic_stream_map.c
27
&& l->prev != NULL && l->next != NULL);
crypto/openssl/ssl/quic/quic_stream_map.c
30
n->prev->next = n;
crypto/openssl/ssl/quic/quic_stream_map.c
32
n->next = l;
crypto/openssl/ssl/quic/quic_stream_map.c
38
assert(n->prev != NULL && n->next != NULL
crypto/openssl/ssl/quic/quic_stream_map.c
39
&& n->prev != n && n->next != n);
crypto/openssl/ssl/quic/quic_stream_map.c
41
n->prev->next = n->next;
crypto/openssl/ssl/quic/quic_stream_map.c
42
n->next->prev = n->prev;
crypto/openssl/ssl/quic/quic_stream_map.c
43
n->next = n->prev = NULL;
crypto/openssl/ssl/quic/quic_stream_map.c
49
assert(n->prev != NULL && n->next != NULL
crypto/openssl/ssl/quic/quic_stream_map.c
50
&& (n == l || (n->prev != n && n->next != n))
crypto/openssl/ssl/quic/quic_stream_map.c
51
&& l->prev != NULL && l->next != NULL);
crypto/openssl/ssl/quic/quic_stream_map.c
53
n = n->next;
crypto/openssl/ssl/quic/quic_stream_map.c
56
n = n->next;
crypto/openssl/ssl/quic/quic_stream_map.c
96
qsm->active_list.prev = qsm->active_list.next = &qsm->active_list;
crypto/openssl/ssl/quic/quic_stream_map.c
97
qsm->accept_list.prev = qsm->accept_list.next = &qsm->accept_list;
crypto/openssl/ssl/quic/quic_stream_map.c
98
qsm->ready_for_gc_list.prev = qsm->ready_for_gc_list.next
crypto/openssl/ssl/quic/quic_tls.c
108
BIO *next, BIO_ADDR *local, BIO_ADDR *peer,
crypto/openssl/ssl/quic/quic_txpim.c
17
QUIC_TXPIM_PKT_EX *prev, *next;
crypto/openssl/ssl/quic/quic_txpim.c
49
nnext = n->next;
crypto/openssl/ssl/quic/quic_txpim.c
71
l->head = n->next;
crypto/openssl/ssl/quic/quic_txpim.c
75
n->prev->next = n->next;
crypto/openssl/ssl/quic/quic_txpim.c
76
if (n->next != NULL)
crypto/openssl/ssl/quic/quic_txpim.c
77
n->next->prev = n->prev;
crypto/openssl/ssl/quic/quic_txpim.c
78
n->prev = n->next = NULL;
crypto/openssl/ssl/quic/quic_txpim.c
84
n->next = NULL;
crypto/openssl/ssl/quic/quic_txpim.c
87
n->prev->next = n;
crypto/openssl/ssl/record/methods/dtls_meth.c
600
ret = BIO_write_ex(rl->next, rbuf->buf + rbuf->offset, left, &written);
crypto/openssl/ssl/record/methods/dtls_meth.c
608
ret &= BIO_write_ex(rl->next, rdata->packet, rdata->packet_length,
crypto/openssl/ssl/record/methods/dtls_meth.c
640
BIO *next, BIO_ADDR *local, BIO_ADDR *peer,
crypto/openssl/ssl/record/methods/dtls_meth.c
649
transport, next, settings,
crypto/openssl/ssl/record/methods/ktls_meth.c
408
BIO *next, BIO_ADDR *local, BIO_ADDR *peer,
crypto/openssl/ssl/record/methods/ktls_meth.c
417
transport, next, settings,
crypto/openssl/ssl/record/methods/recmethod_local.h
235
BIO *next;
crypto/openssl/ssl/record/methods/recmethod_local.h
442
BIO *transport, BIO *next,
crypto/openssl/ssl/record/methods/tls_common.c
1262
BIO *transport, BIO *next, const OSSL_PARAM *settings,
crypto/openssl/ssl/record/methods/tls_common.c
1347
if (next != NULL && !BIO_up_ref(next))
crypto/openssl/ssl/record/methods/tls_common.c
1349
rl->next = next;
crypto/openssl/ssl/record/methods/tls_common.c
1406
BIO *next, BIO_ADDR *local, BIO_ADDR *peer,
crypto/openssl/ssl/record/methods/tls_common.c
1415
transport, next, settings,
crypto/openssl/ssl/record/methods/tls_common.c
1459
BIO_free(rl->next);
crypto/openssl/ssl/record/methods/tls_common.c
1497
ret = BIO_write_ex(rl->next, rbuf->buf + rbuf->offset, left, &written);
crypto/openssl/ssl/record/rec_layer_s3.c
1372
BIO *next = NULL;
crypto/openssl/ssl/record/rec_layer_s3.c
1385
next = BIO_new(BIO_s_dgram_mem());
crypto/openssl/ssl/record/rec_layer_s3.c
1388
next = BIO_new(BIO_s_mem());
crypto/openssl/ssl/record/rec_layer_s3.c
1390
if (next == NULL) {
crypto/openssl/ssl/record/rec_layer_s3.c
1394
s->rlayer.rrlnext = next;
crypto/openssl/ssl/record/rec_layer_s3.c
1426
thisbio, next, NULL, NULL, settings,
crypto/openssl/ssl/ssl_ciph.c
154
struct cipher_order_st *next, *prev;
crypto/openssl/ssl/ssl_ciph.c
1637
for (curr = head; curr != NULL; curr = curr->next) {
crypto/openssl/ssl/ssl_ciph.c
610
*head = curr->next;
crypto/openssl/ssl/ssl_ciph.c
612
curr->prev->next = curr->next;
crypto/openssl/ssl/ssl_ciph.c
613
if (curr->next != NULL)
crypto/openssl/ssl/ssl_ciph.c
614
curr->next->prev = curr->prev;
crypto/openssl/ssl/ssl_ciph.c
615
(*tail)->next = curr;
crypto/openssl/ssl/ssl_ciph.c
617
curr->next = NULL;
crypto/openssl/ssl/ssl_ciph.c
628
if (curr->next != NULL)
crypto/openssl/ssl/ssl_ciph.c
629
curr->next->prev = curr->prev;
crypto/openssl/ssl/ssl_ciph.c
631
curr->prev->next = curr->next;
crypto/openssl/ssl/ssl_ciph.c
633
curr->next = *head;
crypto/openssl/ssl/ssl_ciph.c
673
co_list[co_list_num].next = NULL;
crypto/openssl/ssl/ssl_ciph.c
686
co_list[0].next = &co_list[1];
crypto/openssl/ssl/ssl_ciph.c
690
co_list[i].next = &co_list[i + 1];
crypto/openssl/ssl/ssl_ciph.c
696
co_list[co_list_num - 1].next = NULL;
crypto/openssl/ssl/ssl_ciph.c
727
ciph_curr = ciph_curr->next;
crypto/openssl/ssl/ssl_ciph.c
772
CIPHER_ORDER *head, *tail, *curr, *next, *last;
crypto/openssl/ssl/ssl_ciph.c
793
next = tail;
crypto/openssl/ssl/ssl_ciph.c
796
next = head;
crypto/openssl/ssl/ssl_ciph.c
805
curr = next;
crypto/openssl/ssl/ssl_ciph.c
810
next = reverse ? curr->prev : curr->next;
crypto/openssl/ssl/ssl_ciph.c
888
head = curr->next;
crypto/openssl/ssl/ssl_ciph.c
890
curr->prev->next = curr->next;
crypto/openssl/ssl/ssl_ciph.c
894
if (curr->next != NULL)
crypto/openssl/ssl/ssl_ciph.c
895
curr->next->prev = curr->prev;
crypto/openssl/ssl/ssl_ciph.c
897
curr->prev->next = curr->next;
crypto/openssl/ssl/ssl_ciph.c
898
curr->next = NULL;
crypto/openssl/ssl/ssl_ciph.c
926
curr = curr->next;
crypto/openssl/ssl/ssl_ciph.c
940
curr = curr->next;
crypto/openssl/ssl/ssl_local.h
1935
pitem *next;
crypto/openssl/ssl/ssl_local.h
562
struct ssl_session_st *prev, *next;
crypto/openssl/ssl/ssl_sess.c
1271
if ((s->next == NULL) || (s->prev == NULL))
crypto/openssl/ssl/ssl_sess.c
1274
if (s->next == (SSL_SESSION *)&(ctx->session_cache_tail)) {
crypto/openssl/ssl/ssl_sess.c
1282
s->prev->next = (SSL_SESSION *)&(ctx->session_cache_tail);
crypto/openssl/ssl/ssl_sess.c
1287
ctx->session_cache_head = s->next;
crypto/openssl/ssl/ssl_sess.c
1288
s->next->prev = (SSL_SESSION *)&(ctx->session_cache_head);
crypto/openssl/ssl/ssl_sess.c
1291
s->next->prev = s->prev;
crypto/openssl/ssl/ssl_sess.c
1292
s->prev->next = s->next;
crypto/openssl/ssl/ssl_sess.c
1295
s->prev = s->next = NULL;
crypto/openssl/ssl/ssl_sess.c
1301
SSL_SESSION *next;
crypto/openssl/ssl/ssl_sess.c
1303
if ((s->next != NULL) && (s->prev != NULL))
crypto/openssl/ssl/ssl_sess.c
1310
s->next = (SSL_SESSION *)&(ctx->session_cache_tail);
crypto/openssl/ssl/ssl_sess.c
1317
s->next = ctx->session_cache_head;
crypto/openssl/ssl/ssl_sess.c
1318
s->next->prev = s;
crypto/openssl/ssl/ssl_sess.c
1324
s->prev->next = s;
crypto/openssl/ssl/ssl_sess.c
1325
s->next = (SSL_SESSION *)&(ctx->session_cache_tail);
crypto/openssl/ssl/ssl_sess.c
1332
next = ctx->session_cache_head->next;
crypto/openssl/ssl/ssl_sess.c
1333
while (next != (SSL_SESSION *)&(ctx->session_cache_tail)) {
crypto/openssl/ssl/ssl_sess.c
1334
if (timeoutcmp(s, next) >= 0) {
crypto/openssl/ssl/ssl_sess.c
1335
s->next = next;
crypto/openssl/ssl/ssl_sess.c
1336
s->prev = next->prev;
crypto/openssl/ssl/ssl_sess.c
1337
next->prev->next = s;
crypto/openssl/ssl/ssl_sess.c
1338
next->prev = s;
crypto/openssl/ssl/ssl_sess.c
1341
next = next->next;
crypto/openssl/ssl/ssl_sess.c
172
dest->next = NULL;
crypto/openssl/ssl/statem/statem_dtls.c
523
pitem *next;
crypto/openssl/ssl/statem/statem_dtls.c
547
next = pqueue_next(&iter);
crypto/openssl/ssl/statem/statem_dtls.c
548
if (next != NULL) {
crypto/openssl/ssl/statem/statem_dtls.c
549
nextfrag = (hm_fragment *)next->data;
crypto/openssl/ssl/statem/statem_dtls.c
558
item = next;
crypto/openssl/test/asynciotest.c
105
ret = BIO_read(next, out, 1);
crypto/openssl/test/asynciotest.c
106
if (ret <= 0 && BIO_should_read(next))
crypto/openssl/test/asynciotest.c
129
BIO *next = BIO_next(bio);
crypto/openssl/test/asynciotest.c
133
if (next == NULL)
crypto/openssl/test/asynciotest.c
222
ret = BIO_write(next, smallrec, MIN_RECORD_LEN);
crypto/openssl/test/asynciotest.c
242
ret = BIO_write(next, in + written, inl - written);
crypto/openssl/test/asynciotest.c
245
if (ret <= 0 && BIO_should_write(next))
crypto/openssl/test/asynciotest.c
260
BIO *next = BIO_next(bio);
crypto/openssl/test/asynciotest.c
262
if (next == NULL)
crypto/openssl/test/asynciotest.c
270
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/test/asynciotest.c
93
BIO *next = BIO_next(bio);
crypto/openssl/test/asynciotest.c
97
if (next == NULL)
crypto/openssl/test/bio_prefix_text.c
107
next = bio_out;
crypto/openssl/test/bio_prefix_text.c
114
chain[i] = BIO_push(curr, next);
crypto/openssl/test/bio_prefix_text.c
117
next = chain[i];
crypto/openssl/test/bio_prefix_text.c
123
BIO_free_all(next);
crypto/openssl/test/bio_prefix_text.c
96
BIO *next = NULL;
crypto/openssl/test/evp_test.c
4454
key->next = private_keys;
crypto/openssl/test/evp_test.c
4997
for (; lst != NULL; lst = lst->next) {
crypto/openssl/test/evp_test.c
5010
KEY_LIST *next = lst->next;
crypto/openssl/test/evp_test.c
5015
lst = next;
crypto/openssl/test/evp_test.c
5248
key->next = *klist;
crypto/openssl/test/evp_test.c
71
struct key_list_st *next;
crypto/openssl/test/fake_rsaprov.c
1004
next:
crypto/openssl/test/fake_rsaprov.c
954
goto next;
crypto/openssl/test/fake_rsaprov.c
968
goto next;
crypto/openssl/test/fake_rsaprov.c
977
goto next;
crypto/openssl/test/fake_rsaprov.c
984
goto next;
crypto/openssl/test/helpers/noisydgrambio.c
106
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/test/helpers/noisydgrambio.c
173
BIO *next = BIO_next(bio);
crypto/openssl/test/helpers/noisydgrambio.c
177
if (next == NULL)
crypto/openssl/test/helpers/noisydgrambio.c
199
return BIO_sendmmsg(next, msg, stride, num_msg, flags, msgs_processed);
crypto/openssl/test/helpers/noisydgrambio.c
306
BIO *next = BIO_next(bio);
crypto/openssl/test/helpers/noisydgrambio.c
312
if (!TEST_ptr(next))
crypto/openssl/test/helpers/noisydgrambio.c
336
if (!BIO_recvmmsg(next, msg, stride, num_msg, flags, msgs_processed))
crypto/openssl/test/helpers/noisydgrambio.c
44
BIO *next = BIO_next(bio);
crypto/openssl/test/helpers/noisydgrambio.c
46
if (next == NULL)
crypto/openssl/test/helpers/pktsplitbio.c
17
BIO *next = BIO_next(bio);
crypto/openssl/test/helpers/pktsplitbio.c
19
if (next == NULL)
crypto/openssl/test/helpers/pktsplitbio.c
27
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/test/helpers/pktsplitbio.c
37
BIO *next = BIO_next(bio);
crypto/openssl/test/helpers/pktsplitbio.c
39
if (next == NULL)
crypto/openssl/test/helpers/pktsplitbio.c
46
return BIO_sendmmsg(next, msg, stride, num_msg, flags, msgs_processed);
crypto/openssl/test/helpers/pktsplitbio.c
53
BIO *next = BIO_next(bio);
crypto/openssl/test/helpers/pktsplitbio.c
58
if (!TEST_ptr(next) || !TEST_ptr(bdata))
crypto/openssl/test/helpers/pktsplitbio.c
75
if (!BIO_recvmmsg(next, msg, stride, num_msg, flags, msgs_processed))
crypto/openssl/test/helpers/quictestlib.c
1170
BIO *next = BIO_next(b);
crypto/openssl/test/helpers/quictestlib.c
1178
if (next == NULL)
crypto/openssl/test/helpers/quictestlib.c
1184
return BIO_sendmmsg(next, msg, stride, num_msg, flags, num_processed);
crypto/openssl/test/helpers/quictestlib.c
1236
if (!BIO_sendmmsg(next, &bdata->fault->msg, stride, 1, flags, &tmpnump)) {
crypto/openssl/test/helpers/quictestlib.c
1256
BIO *next = BIO_next(b);
crypto/openssl/test/helpers/quictestlib.c
1258
if (next == NULL)
crypto/openssl/test/helpers/quictestlib.c
1261
return BIO_ctrl(next, cmd, larg, parg);
crypto/openssl/test/helpers/ssltestlib.c
202
BIO *next = BIO_next(bio);
crypto/openssl/test/helpers/ssltestlib.c
204
ret = BIO_read(next, out, outl);
crypto/openssl/test/helpers/ssltestlib.c
217
BIO *next = BIO_next(bio);
crypto/openssl/test/helpers/ssltestlib.c
219
ret = BIO_write(next, in, inl);
crypto/openssl/test/helpers/ssltestlib.c
228
BIO *next = BIO_next(bio);
crypto/openssl/test/helpers/ssltestlib.c
230
if (next == NULL)
crypto/openssl/test/helpers/ssltestlib.c
238
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/test/helpers/ssltestlib.c
93
BIO *next = BIO_next(bio);
crypto/openssl/test/helpers/ssltestlib.c
95
flags = BIO_test_flags(next, BIO_FLAGS_SHOULD_RETRY | BIO_FLAGS_RWS);
crypto/openssl/test/sslapitest.c
9972
if (!TEST_ptr_eq(late->next, middle)
crypto/openssl/test/sslapitest.c
9973
|| !TEST_ptr_eq(middle->next, early)
crypto/openssl/test/sslcorrupttest.c
19
BIO *next = BIO_next(bio);
crypto/openssl/test/sslcorrupttest.c
21
flags = BIO_test_flags(next, BIO_FLAGS_SHOULD_RETRY | BIO_FLAGS_RWS);
crypto/openssl/test/sslcorrupttest.c
29
BIO *next = BIO_next(bio);
crypto/openssl/test/sslcorrupttest.c
31
ret = BIO_read(next, out, outl);
crypto/openssl/test/sslcorrupttest.c
40
BIO *next = BIO_next(bio);
crypto/openssl/test/sslcorrupttest.c
48
ret = BIO_write(next, copy, inl);
crypto/openssl/test/sslcorrupttest.c
51
ret = BIO_write(next, in, inl);
crypto/openssl/test/sslcorrupttest.c
61
BIO *next = BIO_next(bio);
crypto/openssl/test/sslcorrupttest.c
63
if (next == NULL)
crypto/openssl/test/sslcorrupttest.c
71
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/test/tls-provider.c
2339
goto next;
crypto/openssl/test/tls-provider.c
2353
goto next;
crypto/openssl/test/tls-provider.c
2362
goto next;
crypto/openssl/test/tls-provider.c
2369
goto next;
crypto/openssl/test/tls-provider.c
2389
next:
crypto/openssl/test/tls13ccstest.c
208
ret = BIO_write(next, in, inl);
crypto/openssl/test/tls13ccstest.c
209
if (ret <= 0 && BIO_should_write(next))
crypto/openssl/test/tls13ccstest.c
218
BIO *next = BIO_next(bio);
crypto/openssl/test/tls13ccstest.c
220
if (next == NULL)
crypto/openssl/test/tls13ccstest.c
228
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/test/tls13ccstest.c
73
BIO *next = BIO_next(bio);
crypto/openssl/test/tls13ccstest.c
77
if (next == NULL)
crypto/openssl/test/tls13ccstest.c
82
ret = BIO_read(next, out, outl);
crypto/openssl/test/tls13ccstest.c
83
if (ret <= 0 && BIO_should_read(next))
crypto/openssl/test/tls13ccstest.c
92
BIO *next = BIO_next(bio);
crypto/openssl/test/tls13ccstest.c
98
if (next == NULL)
crypto/openssl/test/x509aux.c
104
goto next;
crypto/openssl/test/x509aux.c
115
goto next;
crypto/openssl/test/x509aux.c
120
goto next;
crypto/openssl/test/x509aux.c
134
goto next;
crypto/openssl/test/x509aux.c
139
goto next;
crypto/openssl/test/x509aux.c
146
next:
crypto/openssl/test/x509aux.c
52
goto next;
crypto/openssl/test/x509aux.c
59
goto next;
crypto/openssl/test/x509aux.c
68
goto next;
crypto/openssl/test/x509aux.c
73
goto next;
crypto/openssl/test/x509aux.c
80
goto next;
crypto/openssl/test/x509aux.c
86
goto next;
crypto/openssl/test/x509aux.c
91
goto next;
crypto/openssl/test/x509aux.c
98
goto next;
include/res_update.h
39
struct ns_updrec *next;
include/search.h
43
struct que_elem *next;
krb5/lib/gssapi/error_map.h
108
e->next = head->first;
krb5/lib/gssapi/error_map.h
27
struct gsserrmap__element *next;
krb5/lib/gssapi/error_map.h
44
e_next = e->next;
krb5/lib/gssapi/error_map.h
58
for (e = head->first; e; e = e->next)
lib/clang/liblldb/LLDBWrapLua.cpp
380
struct swig_cast_info *next; /* pointer to next cast in linked list */
lib/clang/liblldb/LLDBWrapLua.cpp
390
struct swig_module_info *next; /* Pointer to next element in circularly linked list */
lib/clang/liblldb/LLDBWrapLua.cpp
454
iter->prev->next = iter->next;
lib/clang/liblldb/LLDBWrapLua.cpp
455
if (iter->next)
lib/clang/liblldb/LLDBWrapLua.cpp
456
iter->next->prev = iter->prev;
lib/clang/liblldb/LLDBWrapLua.cpp
457
iter->next = ty->cast;
lib/clang/liblldb/LLDBWrapLua.cpp
463
iter = iter->next;
lib/clang/liblldb/LLDBWrapLua.cpp
481
iter->prev->next = iter->next;
lib/clang/liblldb/LLDBWrapLua.cpp
482
if (iter->next)
lib/clang/liblldb/LLDBWrapLua.cpp
483
iter->next->prev = iter->prev;
lib/clang/liblldb/LLDBWrapLua.cpp
484
iter->next = ty->cast;
lib/clang/liblldb/LLDBWrapLua.cpp
490
iter = iter->next;
lib/clang/liblldb/LLDBWrapLua.cpp
564
cast = cast->next;
lib/clang/liblldb/LLDBWrapLua.cpp
612
iter = iter->next;
lib/clang/liblldb/LLDBWrapLua.cpp
644
iter = iter->next;
lib/clang/liblldb/LLDBWrapLua.cpp
84689
if (swig_module.next==0) {
lib/clang/liblldb/LLDBWrapLua.cpp
84693
swig_module.next = &swig_module;
lib/clang/liblldb/LLDBWrapLua.cpp
84713
iter=iter->next;
lib/clang/liblldb/LLDBWrapLua.cpp
84717
swig_module.next = module_head->next;
lib/clang/liblldb/LLDBWrapLua.cpp
84718
module_head->next = &swig_module;
lib/clang/liblldb/LLDBWrapLua.cpp
84741
if (swig_module.next != &swig_module) {
lib/clang/liblldb/LLDBWrapLua.cpp
84742
type = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, swig_module.type_initial[i]->name);
lib/clang/liblldb/LLDBWrapLua.cpp
84768
if (swig_module.next != &swig_module) {
lib/clang/liblldb/LLDBWrapLua.cpp
84769
ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name);
lib/clang/liblldb/LLDBWrapLua.cpp
84797
cast->next = type->cast;
lib/clang/liblldb/LLDBWrapLua.cpp
84847
equiv = equiv->next;
lib/lib80211/lib80211_regdomain.c
140
LIST_INSERT_HEAD(mt->curband, mt->netband, next);
lib/lib80211/lib80211_regdomain.c
159
LIST_INSERT_HEAD(&mt->rdp->countries, mt->country, next);
lib/lib80211/lib80211_regdomain.c
167
LIST_INSERT_HEAD(&mt->rdp->freqbands, mt->freqband, next);
lib/lib80211/lib80211_regdomain.c
451
LIST_FOREACH(dp, &rdp->domains, next) {
lib/lib80211/lib80211_regdomain.c
457
LIST_FOREACH(fp, &rdp->freqbands, next) {
lib/lib80211/lib80211_regdomain.c
463
LIST_FOREACH(cp, &rdp->countries, next) {
lib/lib80211/lib80211_regdomain.c
471
LIST_FOREACH(dp, &rdp->domains, next) {
lib/lib80211/lib80211_regdomain.c
482
LIST_FOREACH(nb, &dp->bands_11b, next) {
lib/lib80211/lib80211_regdomain.c
491
LIST_FOREACH(nb, &dp->bands_11g, next) {
lib/lib80211/lib80211_regdomain.c
500
LIST_FOREACH(nb, &dp->bands_11a, next) {
lib/lib80211/lib80211_regdomain.c
509
LIST_FOREACH(nb, &dp->bands_11ng, next) {
lib/lib80211/lib80211_regdomain.c
518
LIST_FOREACH(nb, &dp->bands_11na, next) {
lib/lib80211/lib80211_regdomain.c
527
LIST_FOREACH(nb, &dp->bands_11ac, next) {
lib/lib80211/lib80211_regdomain.c
536
LIST_FOREACH(nb, &dp->bands_11acg, next) {
lib/lib80211/lib80211_regdomain.c
546
LIST_FOREACH(cp, &rdp->countries, next) {
lib/lib80211/lib80211_regdomain.c
569
LIST_REMOVE(nb, next);
lib/lib80211/lib80211_regdomain.c
587
LIST_REMOVE(dp, next);
lib/lib80211/lib80211_regdomain.c
602
LIST_REMOVE(cp, next);
lib/lib80211/lib80211_regdomain.c
611
LIST_REMOVE(fp, next);
lib/lib80211/lib80211_regdomain.c
681
LIST_FOREACH(dp, &rdp->domains, next) {
lib/lib80211/lib80211_regdomain.c
696
LIST_FOREACH(dp, &rdp->domains, next) {
lib/lib80211/lib80211_regdomain.c
711
LIST_FOREACH(cp, &rdp->countries, next) {
lib/lib80211/lib80211_regdomain.c
728
LIST_FOREACH(cp, &rdp->countries, next) {
lib/lib80211/lib80211_regdomain.c
732
LIST_FOREACH(cp, &rdp->countries, next) {
lib/lib80211/lib80211_regdomain.c
98
LIST_INSERT_HEAD(&mt->rdp->domains, mt->rd, next);
lib/lib80211/lib80211_regdomain.h
43
LIST_ENTRY(freqband) next;
lib/lib80211/lib80211_regdomain.h
60
LIST_ENTRY(netband) next;
lib/lib80211/lib80211_regdomain.h
79
LIST_ENTRY(regdomain) next;
lib/lib80211/lib80211_regdomain.h
89
LIST_ENTRY(country) next;
lib/libc/db/btree/bt_search.c
122
next: BT_PUSH(t, h->pgno, idx);
lib/libc/db/btree/bt_search.c
81
goto next;
lib/libc/db/hash/hash.h
45
BUFHEAD *next; /* LRU links */
lib/libc/db/hash/hash_buf.c
303
bfp->next = bfp;
lib/libc/db/hash/hash_buf.c
71
(B)->prev->next = (B)->next; \
lib/libc/db/hash/hash_buf.c
72
(B)->next->prev = (B)->prev; \
lib/libc/db/hash/hash_buf.c
77
(B)->next = (P)->next; \
lib/libc/db/hash/hash_buf.c
79
(P)->next = (B); \
lib/libc/db/hash/hash_buf.c
80
(B)->next->prev = (B); \
lib/libc/db/hash/hash_buf.c
83
#define MRU hashp->bufhead.next
lib/libc/db/test/btree.tests/main.c
101
"n", 0, 0, next, "next", "move cursor forward one record",
lib/libc/db/test/btree.tests/main.c
74
void next(DB *, char **);
lib/libc/gen/fts-compat.c
405
next: tmp = p;
lib/libc/gen/fts-compat.c
428
goto next;
lib/libc/gen/fts-compat11.c
395
next: tmp = p;
lib/libc/gen/fts-compat11.c
418
goto next;
lib/libc/gen/fts.c
506
next: tmp = p;
lib/libc/gen/fts.c
529
goto next;
lib/libc/gen/popen.c
154
SLIST_FOREACH(p, &pidlist, next)
lib/libc/gen/popen.c
169
SLIST_INSERT_HEAD(&pidlist, cur, next);
lib/libc/gen/popen.c
199
SLIST_FOREACH(cur, &pidlist, next) {
lib/libc/gen/popen.c
209
SLIST_REMOVE_HEAD(&pidlist, next);
lib/libc/gen/popen.c
211
SLIST_REMOVE_AFTER(last, next);
lib/libc/gen/popen.c
53
SLIST_ENTRY(pid) next;
lib/libc/gen/sem_new.c
177
LIST_FOREACH(ni, &sem_list, next) {
lib/libc/gen/sem_new.c
239
LIST_INSERT_HEAD(&sem_list, ni, next);
lib/libc/gen/sem_new.c
273
LIST_FOREACH(ni, &sem_list, next) {
lib/libc/gen/sem_new.c
277
LIST_REMOVE(ni, next);
lib/libc/gen/sem_new.c
76
LIST_ENTRY(sem_nameinfo) next;
lib/libc/include/isc/list.h
104
(elt)->link.prev->link.next = (elt); \
lib/libc/include/isc/list.h
105
(elt)->link.next = (before); \
lib/libc/include/isc/list.h
112
if ((after)->link.next == NULL) \
lib/libc/include/isc/list.h
115
(elt)->link.next = (after)->link.next; \
lib/libc/include/isc/list.h
116
(after)->link.next = (elt); \
lib/libc/include/isc/list.h
117
(elt)->link.next->link.prev = (elt); \
lib/libc/include/isc/list.h
34
#define LINK(type) struct { type *prev, *next; }
lib/libc/include/isc/list.h
38
(elt)->link.next = (type *)(-1); \
lib/libc/include/isc/list.h
43
(void *)((elt)->link.next) != (void *)(-1))
lib/libc/include/isc/list.h
57
(elt)->link.next = (list).head; \
lib/libc/include/isc/list.h
65
(list).tail->link.next = (elt); \
lib/libc/include/isc/list.h
69
(elt)->link.next = NULL; \
lib/libc/include/isc/list.h
76
if ((elt)->link.next != NULL) \
lib/libc/include/isc/list.h
77
(elt)->link.next->link.prev = (elt)->link.prev; \
lib/libc/include/isc/list.h
83
(elt)->link.prev->link.next = (elt)->link.next; \
lib/libc/include/isc/list.h
86
(list).head = (elt)->link.next; \
lib/libc/include/isc/list.h
94
#define NEXT(elt, link) ((elt)->link.next)
lib/libc/isc/ev_streams.c
117
new->next = ctx->streams;
lib/libc/isc/ev_streams.c
165
old->prev->next = old->next;
lib/libc/isc/ev_streams.c
167
ctx->streams = old->next;
lib/libc/isc/ev_streams.c
168
if (old->next != NULL)
lib/libc/isc/ev_streams.c
169
old->next->prev = old->prev;
lib/libc/isc/ev_streams.c
83
new->next = ctx->streams;
lib/libc/isc/eventlib_p.h
123
struct evFile * next;
lib/libc/isc/eventlib_p.h
144
struct evStream *prev, *next;
lib/libc/isc/eventlib_p.h
160
struct evWait * next;
lib/libc/isc/eventlib_p.h
167
struct evWaitList * next;
lib/libc/isc/eventlib_p.h
178
struct { struct evEvent_p *next; } free;
lib/libc/isc/eventlib_p.h
89
struct evConn * next;
lib/libc/locale/collate.c
261
int next, compar, l;
lib/libc/locale/collate.c
269
next = (low + high) / 2;
lib/libc/locale/collate.c
270
p = tab + next;
lib/libc/locale/collate.c
281
low = next + 1;
lib/libc/locale/collate.c
283
high = next - 1;
lib/libc/locale/collate.c
293
int next, compar;
lib/libc/locale/collate.c
301
next = (low + high) / 2;
lib/libc/locale/collate.c
302
p = tab + next;
lib/libc/locale/collate.c
307
low = next + 1;
lib/libc/locale/collate.c
309
high = next - 1;
lib/libc/nameser/ns_name.c
947
goto next;
lib/libc/nameser/ns_name.c
952
goto next;
lib/libc/nameser/ns_name.c
958
goto next;
lib/libc/nameser/ns_name.c
968
next: ;
lib/libc/net/getaddrinfo.c
2307
q.next = &q2;
lib/libc/net/getaddrinfo.c
2354
if (q.next) {
lib/libc/net/getaddrinfo.c
236
struct res_target *next;
lib/libc/net/getaddrinfo.c
2734
for (t = target; t; t = t->next) {
lib/libc/net/getaddrinfo.c
359
struct addrinfo *next;
lib/libc/net/getaddrinfo.c
362
next = ai->ai_next;
lib/libc/net/getaddrinfo.c
366
ai = next;
lib/libc/net/getaddrinfo.c
817
goto next; /* not match */
lib/libc/net/getaddrinfo.c
834
next:
lib/libc/net/getifaddrs.c
134
for (next = buf; next < buf + needed; next += rtm->rtm_msglen) {
lib/libc/net/getifaddrs.c
135
rtm = (struct rt_msghdr *)(void *)next;
lib/libc/net/getifaddrs.c
217
for (next = buf; next < buf + needed; next += rtm->rtm_msglen) {
lib/libc/net/getifaddrs.c
218
rtm = (struct rt_msghdr *)(void *)next;
lib/libc/net/getifaddrs.c
86
char *next;
lib/libc/net/getifmaddrs.c
126
for (next = buf; next < buf + needed; next += rtm->rtm_msglen) {
lib/libc/net/getifmaddrs.c
127
rtm = (struct rt_msghdr *)(void *)next;
lib/libc/net/getifmaddrs.c
62
char *next;
lib/libc/net/getifmaddrs.c
90
for (next = buf; next < buf + needed; next += rtm->rtm_msglen) {
lib/libc/net/getifmaddrs.c
91
rtm = (struct rt_msghdr *)(void *)next;
lib/libc/net/name6.c
817
goto next; /* not match */
lib/libc/net/name6.c
834
next:
lib/libc/regex/regcomp.c
1026
if (p->end - p->next > 5) {
lib/libc/regex/regcomp.c
1027
if (strncmp(p->next, "[:<:]]", 6) == 0) {
lib/libc/regex/regcomp.c
1032
if (strncmp(p->next, "[:>:]]", 6) == 0) {
lib/libc/regex/regcomp.c
1209
const char *sp = p->next;
lib/libc/regex/regcomp.c
1215
len = p->next - sp;
lib/libc/regex/regcomp.c
1282
const char *sp = p->next;
lib/libc/regex/regcomp.c
1294
len = p->next - sp;
lib/libc/regex/regcomp.c
1382
const char *oldnext = p->next;
lib/libc/regex/regcomp.c
1389
p->next = bracket;
lib/libc/regex/regcomp.c
1397
assert(p->next == p->end);
lib/libc/regex/regcomp.c
1398
p->next = oldnext;
lib/libc/regex/regcomp.c
1436
const char *oldnext = p->next;
lib/libc/regex/regcomp.c
1440
p->next = bracket;
lib/libc/regex/regcomp.c
1447
assert(p->next == bracket+3);
lib/libc/regex/regcomp.c
1448
p->next = oldnext;
lib/libc/regex/regcomp.c
1536
n = mbrtowc(&wc, p->next, p->end - p->next, &mbs);
lib/libc/regex/regcomp.c
1543
p->next += n;
lib/libc/regex/regcomp.c
1556
p->next = nuls; /* try to bring things to a halt */
lib/libc/regex/regcomp.c
170
#define PEEK() (*p->next)
lib/libc/regex/regcomp.c
171
#define PEEK2() (*(p->next+1))
lib/libc/regex/regcomp.c
172
#define MORE() (p->end - p->next > 0)
lib/libc/regex/regcomp.c
173
#define MORE2() (p->end - p->next > 1)
lib/libc/regex/regcomp.c
180
#define NEXT() (p->next++)
lib/libc/regex/regcomp.c
181
#define NEXT2() (p->next += 2)
lib/libc/regex/regcomp.c
182
#define NEXTn(n) (p->next += (n))
lib/libc/regex/regcomp.c
183
#define GETNEXT() (*p->next++)
lib/libc/regex/regcomp.c
260
p->next = pattern; /* convenience; we do not modify it */
lib/libc/regex/regcomp.c
261
p->end = p->next + len;
lib/libc/regex/regcomp.c
549
p->next--;
lib/libc/regex/regcomp.c
84
const char *next; /* next character in RE */
lib/libc/regex/regcomp.c
949
p->next--;
lib/libc/resolv/res_mkupdate.c
1006
slp_next = slp->next;
lib/libc/resolv/res_mkupdate.c
1038
slp->next = protolist;
lib/libc/resolv/res_mkupdate.c
1053
plp_next = plp->next;
lib/libc/resolv/res_mkupdate.c
1066
for (; lp != NULL; lp = lp->next)
lib/libc/resolv/res_mkupdate.c
1069
lp->prev->next = lp->next;
lib/libc/resolv/res_mkupdate.c
1070
if (lp->next)
lib/libc/resolv/res_mkupdate.c
1071
lp->next->prev = lp->prev;
lib/libc/resolv/res_mkupdate.c
1073
lp->next = *list;
lib/libc/resolv/res_mkupdate.c
1117
for (; lp != NULL; lp = lp->next) {
lib/libc/resolv/res_mkupdate.c
1122
lp->prev->next = lp->next;
lib/libc/resolv/res_mkupdate.c
1123
if (lp->next)
lib/libc/resolv/res_mkupdate.c
1124
lp->next->prev = lp->prev;
lib/libc/resolv/res_mkupdate.c
1126
lp->next = *list;
lib/libc/resolv/res_mkupdate.c
1144
for (; lp != NULL; lp = lp->next)
lib/libc/resolv/res_mkupdate.c
1147
lp->prev->next = lp->next;
lib/libc/resolv/res_mkupdate.c
1148
if (lp->next)
lib/libc/resolv/res_mkupdate.c
1149
lp->next->prev = lp->prev;
lib/libc/resolv/res_mkupdate.c
1151
lp->next = *list;
lib/libc/resolv/res_mkupdate.c
960
struct valuelist * next;
lib/libc/resolv/res_mkupdate.c
991
slp->next = servicelist;
lib/libc/rpc/clnt_bcast.c
191
struct broadif *bip, *next;
lib/libc/rpc/clnt_bcast.c
196
next = TAILQ_NEXT(bip, link);
lib/libc/rpc/clnt_bcast.c
198
bip = next;
lib/libc/rpc/getnetconfig.c
107
struct netconfig_list *next;
lib/libc/rpc/getnetconfig.c
238
else if (ncp->nc_configs != NULL && ncp->nc_configs->next != NULL) {
lib/libc/rpc/getnetconfig.c
239
ncp->nc_configs = ncp->nc_configs->next;
lib/libc/rpc/getnetconfig.c
299
list->next = NULL;
lib/libc/rpc/getnetconfig.c
320
ni.tail->next = list;
lib/libc/rpc/getnetconfig.c
321
ni.tail = ni.tail->next;
lib/libc/rpc/getnetconfig.c
377
p = q->next;
lib/libc/rpc/getnetconfig.c
427
for (list = ni.head; list; list = list->next) {
lib/libc/rpc/pmap_prot2.c
116
next = &((*rp)->pml_next);
lib/libc/rpc/pmap_prot2.c
120
rp = (freeing) ? next : &((*rp)->pml_next);
lib/libc/rpc/pmap_prot2.c
97
struct pmaplist **next = NULL; /* pacify gcc */
lib/libc/rpc/rpcb_prot.c
105
rpcblist_ptr next;
lib/libc/rpc/rpcb_prot.c
108
next = NULL;
lib/libc/rpc/rpcb_prot.c
123
next = (*rp)->rpcb_next;
lib/libc/rpc/rpcb_prot.c
129
next_copy = next;
lib/libc/rpc/rpcb_prot.c
188
rpcb_entry_list_ptr next;
lib/libc/rpc/rpcb_prot.c
191
next = NULL;
lib/libc/rpc/rpcb_prot.c
206
next = (*rp)->rpcb_entry_next;
lib/libc/rpc/rpcb_prot.c
213
next_copy = next;
lib/libc/rpc/rpcb_st_xdr.c
70
pnext = &objp->next;
lib/libc/rpc/rpcb_st_xdr.c
88
pnext = &objp->next;
lib/libc/rpc/svc_auth.c
128
for (asp = Auths; asp; asp = asp->next) {
lib/libc/rpc/svc_auth.c
197
for (asp = Auths; asp; asp = asp->next) {
lib/libc/rpc/svc_auth.c
213
asp->next = Auths;
lib/libc/rpc/svc_auth.c
68
struct authsvc *next;
lib/libc/rpc/svc_generic.c
124
l->next = xprtlist;
lib/libc/rpc/svc_generic.c
81
struct xlist *next; /* Next item */
lib/libc/rpc/svc_generic.c
97
for (l = xprtlist; l; l = l->next) {
lib/libc/stdio/findfp.c
103
g->next = NULL;
lib/libc/stdio/findfp.c
127
for (g = &__sglue; g != NULL; g = g->next) {
lib/libc/stdio/findfp.c
136
SET_GLUE_PTR(lastglue->next, g); /* atomically append glue to list */
lib/libc/stdio/findfp.c
181
for (g = &__sglue; (n -= g->niobs) > 0 && g->next; g = g->next)
lib/libc/stdio/findfp.c
185
SET_GLUE_PTR(lastglue->next, g);
lib/libc/stdio/fwalk.c
56
for (g = &__sglue; g != NULL; g = g->next)
lib/libc/stdio/glue.h
40
struct glue *next;
lib/libc/stdlib/atexit.c
117
p->next = __atexit;
lib/libc/stdlib/atexit.c
220
for (p = __atexit; p; p = p->next) {
lib/libc/stdlib/atexit.c
68
struct atexit *next; /* next in list */
lib/libc/stdlib/insque.c
20
struct que_elem *prev, *next, *elem;
lib/libc/stdlib/insque.c
26
elem->prev = elem->next = NULL;
lib/libc/stdlib/insque.c
30
next = prev->next;
lib/libc/stdlib/insque.c
31
if (next != NULL) {
lib/libc/stdlib/insque.c
33
if (next->prev != prev) {
lib/libc/stdlib/insque.c
36
next, next->prev, prev);
lib/libc/stdlib/insque.c
39
next->prev = elem;
lib/libc/stdlib/insque.c
41
prev->next = elem;
lib/libc/stdlib/insque.c
43
elem->next = next;
lib/libc/stdlib/quick_exit.c
42
struct quick_exit_handler *next;
lib/libc/stdlib/quick_exit.c
57
while (!atomic_compare_exchange_strong(&handlers, &h->next, h)) {
lib/libc/stdlib/quick_exit.c
73
h != NULL; h = h->next) {
lib/libc/stdlib/rand.c
133
static u_long next = 1;
lib/libc/stdlib/rand.c
139
return (do_rand(&next));
lib/libc/stdlib/rand.c
147
next = seed;
lib/libc/stdlib/remque.c
16
struct que_elem *prev, *next, *elem;
lib/libc/stdlib/remque.c
21
next = elem->next;
lib/libc/stdlib/remque.c
24
prev->next = next;
lib/libc/stdlib/remque.c
25
if (next != NULL)
lib/libc/stdlib/remque.c
26
next->prev = prev;
lib/libcompat/4.3/rexec.c
155
next:
lib/libcompat/4.3/rexec.c
190
goto next;
lib/libfetch/common.c
663
goto next;
lib/libfetch/common.c
677
goto next;
lib/libfetch/common.c
704
next:
lib/libiconv_modules/iconv_std/citrus_iconv_std.c
552
goto next;
lib/libiconv_modules/iconv_std/citrus_iconv_std.c
582
goto next;
lib/libiconv_modules/iconv_std/citrus_iconv_std.c
592
next:
lib/libnetmap/libnetmap.h
575
struct nmreq_opt_parser *next; /* list of options */
lib/libnetmap/libnetmap.h
676
struct nmem_d *next;
lib/libnetmap/nmport.c
318
.next = NULL, \
lib/libnetmap/nmport.c
323
NPOPT_DESC(o).next = nmport_opt_parsers; \
lib/libnetmap/nmport.c
47
struct nmport_cleanup_d *next;
lib/libnetmap/nmport.c
514
for (p = nmport_opt_parsers; p != NULL; p = p->next) {
lib/libnetmap/nmport.c
526
for (p = nmport_opt_parsers; p != NULL; p = p->next) {
lib/libnetmap/nmport.c
54
c->next = d->clist;
lib/libnetmap/nmport.c
64
d->clist = d->clist->next;
lib/libnetmap/nmport.c
679
for (m = ctx->mem_descs; m != NULL; m = m->next)
lib/libnetmap/nmport.c
704
m->next = ctx->mem_descs;
lib/libnetmap/nmport.c
758
if (m->next != NULL)
lib/libnetmap/nmport.c
759
m->next->prev = m->prev;
lib/libnetmap/nmport.c
761
m->prev->next = m->next;
lib/libnetmap/nmport.c
763
ctx->mem_descs = m->next;
lib/libnetmap/nmreq.c
499
for (p = parsers; p != NULL; p = p->next) {
lib/libnetmap/nmreq.c
628
struct nmreq_option *o, *next;
lib/libnetmap/nmreq.c
636
o = next) {
lib/libnetmap/nmreq.c
637
next = (struct nmreq_option *)(uintptr_t)o->nro_next;
lib/libomp/omp-tools.h
731
ompt_buffer_cursor_t *next
lib/libopenbsd/imsg-buffer.c
198
struct ibuf *buf, *next;
lib/libopenbsd/imsg-buffer.c
201
buf = next) {
lib/libopenbsd/imsg-buffer.c
202
next = TAILQ_NEXT(buf, entry);
lib/libpam/modules/pam_guest/pam_guest.c
51
const char *next;
lib/libpam/modules/pam_guest/pam_guest.c
58
if ((next = strchr(list, ',')) == NULL)
lib/libpam/modules/pam_guest/pam_guest.c
59
next = strchr(list, '\0');
lib/libpam/modules/pam_guest/pam_guest.c
60
if (next - list == (ptrdiff_t)len &&
lib/libpam/modules/pam_guest/pam_guest.c
63
list = next;
lib/libpmc/pmu-events/jevents.c
103
struct sys_event_table *et, *next;
lib/libpmc/pmu-events/jevents.c
105
list_for_each_entry_safe(et, next, &sys_event_tables, list) {
lib/libpmc/pmu-events/jevents.c
461
struct event_struct *es, *next;
lib/libpmc/pmu-events/jevents.c
463
list_for_each_entry_safe(es, next, &arch_std_events, list) {
lib/libpmc/pmu-events/list.h
104
__list_del(entry->prev, entry->next);
lib/libpmc/pmu-events/list.h
111
__list_del(entry->prev, entry->next);
lib/libpmc/pmu-events/list.h
117
new->next = old->next;
lib/libpmc/pmu-events/list.h
118
new->next->prev = new;
lib/libpmc/pmu-events/list.h
120
new->prev->next = new;
lib/libpmc/pmu-events/list.h
132
struct list_head *next)
lib/libpmc/pmu-events/list.h
135
next->prev = new;
lib/libpmc/pmu-events/list.h
136
new->next = next;
lib/libpmc/pmu-events/list.h
138
prev->next = new;
lib/libpmc/pmu-events/list.h
152
list_entry((ptr)->next, type, member)
lib/libpmc/pmu-events/list.h
161
list_entry(((ptr)->member.next), typeof(*(ptr)), member)
lib/libpmc/pmu-events/list.h
170
for (p = (head)->next; p != (head); p = (p)->next)
lib/libpmc/pmu-events/list.h
173
for (p = (head)->next, n = (p)->next; p != (head); p = n, n = (p)->next)
lib/libpmc/pmu-events/list.h
176
for (p = list_entry((h)->next, typeof(*p), field); &(p)->field != (h); \
lib/libpmc/pmu-events/list.h
177
p = list_entry((p)->field.next, typeof(*p), field))
lib/libpmc/pmu-events/list.h
180
for (p = list_entry((h)->next, typeof(*p), field), \
lib/libpmc/pmu-events/list.h
181
n = list_entry((p)->field.next, typeof(*p), field); &(p)->field != (h);\
lib/libpmc/pmu-events/list.h
182
p = n, n = list_entry(n->field.next, typeof(*n), field))
lib/libpmc/pmu-events/list.h
186
p = list_entry((p)->field.next, typeof(*p), field))
lib/libpmc/pmu-events/list.h
193
for (n = list_entry((pos)->member.next, typeof(*pos), member); \
lib/libpmc/pmu-events/list.h
195
pos = n, n = list_entry(n->member.next, typeof(*n), member))
lib/libpmc/pmu-events/list.h
216
linux_list_add(new, head, head->next);
lib/libpmc/pmu-events/list.h
244
struct list_head *next)
lib/libpmc/pmu-events/list.h
251
first = list->next;
lib/libpmc/pmu-events/list.h
254
prev->next = first;
lib/libpmc/pmu-events/list.h
255
last->next = next;
lib/libpmc/pmu-events/list.h
256
next->prev = last;
lib/libpmc/pmu-events/list.h
263
linux_list_splice(list, head, head->next);
lib/libpmc/pmu-events/list.h
277
linux_list_splice(list, head, head->next);
lib/libpmc/pmu-events/list.h
298
struct hlist_node *next, **pprev;
lib/libpmc/pmu-events/list.h
306
(node)->next = NULL; \
lib/libpmc/pmu-events/list.h
328
if (n->next)
lib/libpmc/pmu-events/list.h
329
n->next->pprev = n->pprev;
lib/libpmc/pmu-events/list.h
330
*n->pprev = n->next;
lib/libpmc/pmu-events/list.h
347
n->next = h->first;
lib/libpmc/pmu-events/list.h
349
h->first->pprev = &n->next;
lib/libpmc/pmu-events/list.h
355
hlist_add_before(struct hlist_node *n, struct hlist_node *next)
lib/libpmc/pmu-events/list.h
358
n->pprev = next->pprev;
lib/libpmc/pmu-events/list.h
359
n->next = next;
lib/libpmc/pmu-events/list.h
360
next->pprev = &n->next;
lib/libpmc/pmu-events/list.h
365
hlist_add_after(struct hlist_node *n, struct hlist_node *next)
lib/libpmc/pmu-events/list.h
368
next->next = n->next;
lib/libpmc/pmu-events/list.h
369
n->next = next;
lib/libpmc/pmu-events/list.h
370
next->pprev = &n->next;
lib/libpmc/pmu-events/list.h
371
if (next->next)
lib/libpmc/pmu-events/list.h
372
next->next->pprev = &next->next;
lib/libpmc/pmu-events/list.h
387
return !list_empty(head) && (head->next == head->prev);
lib/libpmc/pmu-events/list.h
393
struct list_head *new_first = entry->next;
lib/libpmc/pmu-events/list.h
394
list->next = head->next;
lib/libpmc/pmu-events/list.h
395
list->next->prev = list;
lib/libpmc/pmu-events/list.h
397
entry->next = list;
lib/libpmc/pmu-events/list.h
398
head->next = new_first;
lib/libpmc/pmu-events/list.h
408
(head->next != entry && head != entry))
lib/libpmc/pmu-events/list.h
419
return list->next == head;
lib/libpmc/pmu-events/list.h
425
for (p = (head)->first; p; p = (p)->next)
lib/libpmc/pmu-events/list.h
428
for (p = (head)->first; p && ({ n = (p)->next; 1; }); p = n)
lib/libpmc/pmu-events/list.h
436
pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
lib/libpmc/pmu-events/list.h
439
for (pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member); \
lib/libpmc/pmu-events/list.h
441
pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
lib/libpmc/pmu-events/list.h
445
pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
lib/libpmc/pmu-events/list.h
449
(pos) && ({ n = (pos)->member.next; 1; }); \
lib/libpmc/pmu-events/list.h
46
struct list_head *next;
lib/libpmc/pmu-events/list.h
75
list->next = list->prev = list;
lib/libpmc/pmu-events/list.h
82
return (head->next == head);
lib/libpmc/pmu-events/list.h
88
struct list_head *next = head->next;
lib/libpmc/pmu-events/list.h
90
return ((next == head) && (next == head->prev));
lib/libpmc/pmu-events/list.h
94
__list_del(struct list_head *prev, struct list_head *next)
lib/libpmc/pmu-events/list.h
96
next->prev = prev;
lib/libpmc/pmu-events/list.h
97
WRITE_ONCE(prev->next, next);
lib/libprocstat/libprocstat.c
1687
struct mtab *next;
lib/libprocstat/libprocstat.c
1693
for (mt = mhead; mt != NULL; mt = mt->next)
lib/libprocstat/libprocstat.c
1705
mt->next = mhead;
lib/libprocstat/libprocstat.c
2732
STAILQ_INSERT_TAIL(res, a, next);
lib/libprocstat/libprocstat.c
2768
STAILQ_FOREACH_SAFE(a, lst, next, a1) {
lib/libprocstat/libprocstat.c
365
STAILQ_FOREACH_SAFE(fst, head, next, tmp) {
lib/libprocstat/libprocstat.c
517
STAILQ_INSERT_TAIL(head, entry, next);
lib/libprocstat/libprocstat.c
524
STAILQ_INSERT_TAIL(head, entry, next);
lib/libprocstat/libprocstat.c
531
STAILQ_INSERT_TAIL(head, entry, next);
lib/libprocstat/libprocstat.c
540
STAILQ_INSERT_TAIL(head, entry, next);
lib/libprocstat/libprocstat.c
547
STAILQ_INSERT_TAIL(head, entry, next);
lib/libprocstat/libprocstat.c
555
STAILQ_INSERT_TAIL(head, entry, next);
lib/libprocstat/libprocstat.c
639
STAILQ_INSERT_TAIL(head, entry, next);
lib/libprocstat/libprocstat.c
692
STAILQ_INSERT_TAIL(head, entry, next);
lib/libprocstat/libprocstat.c
913
STAILQ_INSERT_TAIL(head, entry, next);
lib/libprocstat/libprocstat.c
940
STAILQ_INSERT_TAIL(head, entry, next);
lib/libprocstat/libprocstat.h
128
STAILQ_ENTRY(filestat) next;
lib/libprocstat/libprocstat.h
187
STAILQ_ENTRY(advlock) next;
lib/libprocstat/msdosfs.c
107
mnt->next = mounts;
lib/libprocstat/msdosfs.c
67
struct dosmount *next;
lib/libprocstat/msdosfs.c
91
for (mnt = mounts; mnt; mnt = mnt->next)
lib/libsysdecode/tests/sysdecode_test.c
47
const char *next, *tok;
lib/libsysdecode/tests/sysdecode_test.c
57
for (tok = buf; (next = strsep(&buf, ",")), tok != NULL; tok = next) {
lib/libsysdecode/tests/sysdecode_test.c
69
for (tok = buf; (next = strsep(&buf, ",")), tok != NULL;
lib/libsysdecode/tests/sysdecode_test.c
70
tok = next) {
lib/libthr/thread/thr_printf.c
76
next: c = *fmt++;
lib/libthr/thread/thr_printf.c
82
goto next;
lib/libthr/thread/thr_printf.c
91
goto next;
lib/libusb/libusb01.c
55
ent->next = begin; \
lib/libusb/libusb01.c
56
ent->next->prev = ent; \
lib/libusb/libusb01.c
58
ent->next = NULL; \
lib/libusb/libusb01.c
67
ent->prev->next = ent->next; \
lib/libusb/libusb01.c
69
begin = ent->next; \
lib/libusb/libusb01.c
71
if (ent->next) { \
lib/libusb/libusb01.c
72
ent->next->prev = ent->prev; \
lib/libusb/libusb01.c
75
ent->next = NULL; \
lib/libusb/usb.h
228
struct usb_device *next;
lib/libusb/usb.h
247
struct usb_bus *next;
lib/libusbhid/usbhid.h
77
struct hid_item *next;
lib/libutil/libutil.h
76
struct _property *next;
lib/libutil/property.c
210
if ((ptr->next = property_alloc(hold_n, hold_v)) == NULL) {
lib/libutil/property.c
214
ptr = ptr->next;
lib/libutil/property.c
239
list = list->next;
lib/libutil/property.c
250
tmp = list->next;
lib/libutil/property.c
50
n->next = NULL;
lib/msun/tests/next_test.c
111
#define stest(next, eps, prec) \
lib/msun/tests/next_test.c
112
test##prec(next(-0.0, 42.0), eps, ex_under); \
lib/msun/tests/next_test.c
113
test##prec(next(0.0, -42.0), -eps, ex_under); \
lib/msun/tests/next_test.c
114
test##prec(next(0.0, INFINITY), eps, ex_under); \
lib/msun/tests/next_test.c
115
test##prec(next(-0.0, -INFINITY), -eps, ex_under)
libexec/bootpd/hash.c
103
nextbucket = bucketptr->next;
libexec/bootpd/hash.c
186
memberptr = memberptr->next;
libexec/bootpd/hash.c
218
temp->next = (hashtable->table)[hashcode];
libexec/bootpd/hash.c
249
(hashtable->table)[hashcode] = memberptr->next;
libexec/bootpd/hash.c
253
memberptr->next = NULL;
libexec/bootpd/hash.c
264
memberptr = memberptr->next;
libexec/bootpd/hash.c
269
previous->next = memberptr = memberptr->next;
libexec/bootpd/hash.c
273
tempptr->next = NULL;
libexec/bootpd/hash.c
278
memberptr = memberptr->next;
libexec/bootpd/hash.c
304
memberptr = memberptr->next;
libexec/bootpd/hash.c
326
hashtable->member = memberptr->next; /* Set up for next call */
libexec/bootpd/hash.c
357
hashtable->member = memberptr->next; /* Set up for next call */
libexec/bootpd/hash.h
103
hash_member *next;
libexec/mknetid/hash.c
118
cur = cur->next;
libexec/mknetid/hash.c
141
tmp->next = NULL;
libexec/mknetid/hash.c
147
tmp->next = cur->groups;
libexec/mknetid/hash.c
151
cur = cur->next;
libexec/mknetid/hash.c
161
new->next = table[i];
libexec/mknetid/hash.h
38
struct grouplist *next;
libexec/mknetid/hash.h
45
struct member_entry *next;
libexec/mknetid/mknetid.c
230
glist = glist->next;
libexec/rbootd/defs.h
108
struct client_s *next; /* ptr to next */
libexec/rbootd/defs.h
119
struct rmpconn_s *next; /* ptr to next */
libexec/rbootd/parseconf.c
198
client->next = Clients;
libexec/rbootd/rbootd.c
302
for (rtmp = RmpConns; rtmp != NULL; rtmp = rtmp->next)
libexec/rbootd/rbootd.c
332
for (ctmp = Clients; ctmp != NULL; ctmp = ctmp->next)
libexec/rbootd/utils.c
301
Clients = Clients->next;
libexec/rbootd/utils.c
375
rtmp->next = NULL;
libexec/rbootd/utils.c
434
RmpConns = RmpConns->next;
libexec/rbootd/utils.c
463
rconn->next = RmpConns;
libexec/rbootd/utils.c
491
for (rtmp = RmpConns; rtmp != NULL; rtmp = rtmp->next)
libexec/rbootd/utils.c
521
RmpConns = RmpConns->next;
libexec/rbootd/utils.c
525
thisrconn = lastrconn->next; /* set current ptr */
libexec/rbootd/utils.c
528
lastrconn->next = thisrconn->next;
libexec/rbootd/utils.c
533
thisrconn = thisrconn->next;
libexec/revnetgroup/hash.c
120
cur = cur->next;
libexec/revnetgroup/hash.c
154
new->next = table[i];
libexec/revnetgroup/hash.c
184
tmp->next = NULL;
libexec/revnetgroup/hash.c
189
tmp->next = cur->groups;
libexec/revnetgroup/hash.c
193
cur = cur->next;
libexec/revnetgroup/hash.c
201
new->next = table[i];
libexec/revnetgroup/hash.h
38
struct grouplist *next;
libexec/revnetgroup/hash.h
46
struct member_entry *next;
libexec/revnetgroup/hash.h
53
struct group_entry *next;
libexec/revnetgroup/revnetgroup.c
149
gcur = gcur->next;
libexec/revnetgroup/revnetgroup.c
165
tmp = tmp->next;
libexec/revnetgroup/revnetgroup.c
169
mcur = mcur->next;
libexec/rtld-elf/libmap.c
107
TAILQ_FOREACH(p, &lmc_head, next) {
libexec/rtld-elf/libmap.c
125
TAILQ_FOREACH(p, &lmc_head, next) {
libexec/rtld-elf/libmap.c
151
TAILQ_INSERT_HEAD(&lmc_head, p, next);
libexec/rtld-elf/libmap.c
165
TAILQ_FOREACH(p, &lmc_head, next) {
libexec/rtld-elf/libmap.c
177
TAILQ_INSERT_HEAD(&lmc_head, p, next);
libexec/rtld-elf/libmap.c
341
TAILQ_REMOVE(&lmc_head, p, next);
libexec/rtld-elf/libmap.c
41
TAILQ_ENTRY(lmc) next;
libexec/rtld-elf/map_object.c
454
obj->needed = needed->next;
libexec/rtld-elf/rtld.c
1013
TAILQ_FOREACH(obj, &obj_list, next) {
libexec/rtld-elf/rtld.c
1468
nep->next = NULL;
libexec/rtld-elf/rtld.c
1471
needed_tail = &nep->next;
libexec/rtld-elf/rtld.c
1480
nep->next = NULL;
libexec/rtld-elf/rtld.c
1483
needed_filtees_tail = &nep->next;
libexec/rtld-elf/rtld.c
1496
nep->next = NULL;
libexec/rtld-elf/rtld.c
1499
needed_aux_filtees_tail = &nep->next;
libexec/rtld-elf/rtld.c
1839
TAILQ_FOREACH(obj, &obj_list, next) {
libexec/rtld-elf/rtld.c
2364
needed = needed->next) {
libexec/rtld-elf/rtld.c
2391
obj = TAILQ_PREV(obj, obj_entry_q, next);
libexec/rtld-elf/rtld.c
2399
obj = TAILQ_NEXT(obj, next);
libexec/rtld-elf/rtld.c
2612
if (needed->next != NULL)
libexec/rtld-elf/rtld.c
2613
initlist_add_neededs(needed->next, list, iflist);
libexec/rtld-elf/rtld.c
2731
for (needed = n; needed != NULL; needed = needed->next) {
libexec/rtld-elf/rtld.c
2738
needed1 = needed->next;
libexec/rtld-elf/rtld.c
2757
for (; needed != NULL; needed = needed->next) {
libexec/rtld-elf/rtld.c
2782
for (; needed != NULL; needed = needed->next) {
libexec/rtld-elf/rtld.c
2802
for (obj = first; obj != NULL; obj = TAILQ_NEXT(obj, next)) {
libexec/rtld-elf/rtld.c
2884
TAILQ_FOREACH(obj, &obj_list, next) {
libexec/rtld-elf/rtld.c
2934
TAILQ_FOREACH(obj, &obj_list, next) {
libexec/rtld-elf/rtld.c
3010
TAILQ_INSERT_TAIL(&obj_list, obj, next);
libexec/rtld-elf/rtld.c
3093
TAILQ_INSERT_TAIL(&obj_list, obj, next);
libexec/rtld-elf/rtld.c
3109
TAILQ_FOREACH(obj, &obj_list, next) {
libexec/rtld-elf/rtld.c
3250
TAILQ_FOREACH(obj, &obj_list, next) {
libexec/rtld-elf/rtld.c
3542
for (error = 0, obj = first; obj != NULL; obj = TAILQ_NEXT(obj, next)) {
libexec/rtld-elf/rtld.c
4158
for (; obj != NULL; obj = TAILQ_NEXT(obj, next)) {
libexec/rtld-elf/rtld.c
4476
TAILQ_INSERT_AFTER(&obj_list, obj, &marker, next);
libexec/rtld-elf/rtld.c
4486
TAILQ_REMOVE(&obj_list, &marker, next);
libexec/rtld-elf/rtld.c
4968
for (n = needed; n != NULL; n = n->next) {
libexec/rtld-elf/rtld.c
5334
for (; obj != NULL; obj = TAILQ_NEXT(obj, next)) {
libexec/rtld-elf/rtld.c
5341
for (needed = obj->needed; needed; needed = needed->next) {
libexec/rtld-elf/rtld.c
5361
TAILQ_FOREACH(obj, &obj_list, next) {
libexec/rtld-elf/rtld.c
5387
Obj_Entry marker, *obj, *next;
libexec/rtld-elf/rtld.c
5398
for (obj = TAILQ_FIRST(&obj_list); obj != NULL; obj = next) {
libexec/rtld-elf/rtld.c
5399
next = TAILQ_NEXT(obj, next);
libexec/rtld-elf/rtld.c
5410
TAILQ_REMOVE(&obj_list, obj, next);
libexec/rtld-elf/rtld.c
5414
if (next != NULL) {
libexec/rtld-elf/rtld.c
5416
TAILQ_INSERT_BEFORE(next, &marker, next);
libexec/rtld-elf/rtld.c
5418
next = TAILQ_NEXT(&marker, next);
libexec/rtld-elf/rtld.c
5419
TAILQ_REMOVE(&obj_list, &marker, next);
libexec/rtld-elf/rtld.c
5548
TAILQ_INSERT_TAIL(&tcb_list, tcbelm, next);
libexec/rtld-elf/rtld.c
5557
TAILQ_REMOVE(&tcb_list, tcbelm, next);
libexec/rtld-elf/rtld.c
5772
for (obj = objs; obj != NULL; obj = TAILQ_NEXT(obj, next)) {
libexec/rtld-elf/rtld.c
5835
TAILQ_FOREACH(obj, &obj_list, next) {
libexec/rtld-elf/rtld.c
6004
for (needed = obj->needed; needed != NULL; needed = needed->next) {
libexec/rtld-elf/rtld.c
6312
TAILQ_FOREACH(tcbelm, &tcb_list, next) {
libexec/rtld-elf/rtld.c
846
TAILQ_INSERT_HEAD(&obj_list, obj_main, next);
libexec/rtld-elf/rtld.c
86
TAILQ_ENTRY(tcb_list_entry) next;
libexec/rtld-elf/rtld.c
881
TAILQ_FOREACH(obj, &obj_list, next) {
libexec/rtld-elf/rtld.h
140
TAILQ_ENTRY(Struct_Obj_Entry) next;
libexec/rtld-elf/rtld.h
80
struct Struct_Needed_Entry *next;
libexec/talkd/table.c
113
TABLE_ENTRY *ptr, *next;
libexec/talkd/table.c
124
for (ptr = table; ptr != NIL; ptr = next) {
libexec/talkd/table.c
125
next = ptr->next;
libexec/talkd/table.c
166
ptr->next = table;
libexec/talkd/table.c
167
if (ptr->next != NIL)
libexec/talkd/table.c
168
ptr->next->last = ptr;
libexec/talkd/table.c
198
for (ptr = table; ptr != NIL; ptr = ptr->next) {
libexec/talkd/table.c
221
table = ptr->next;
libexec/talkd/table.c
223
ptr->last->next = ptr->next;
libexec/talkd/table.c
224
if (ptr->next != NIL)
libexec/talkd/table.c
225
ptr->next->last = ptr->last;
libexec/talkd/table.c
64
TABLE_ENTRY *next;
libexec/talkd/table.c
79
TABLE_ENTRY *ptr, *next;
libexec/talkd/table.c
86
for (ptr = table; ptr != NIL; ptr = next) {
libexec/talkd/table.c
87
next = ptr->next;
sbin/dhclient/clparse.c
446
for (ip = dummy_interfaces; ip; ip = ip->next)
sbin/dhclient/clparse.c
459
ip->next = dummy_interfaces;
sbin/dhclient/clparse.c
553
for (lp = ip->client->leases; lp; lp = lp->next) {
sbin/dhclient/clparse.c
558
pl->next = lp->next;
sbin/dhclient/clparse.c
560
ip->client->leases = lp->next;
sbin/dhclient/clparse.c
571
lease->next = ip->client->leases;
sbin/dhclient/clparse.c
599
ip->client->active->next = ip->client->leases;
sbin/dhclient/clparse.c
895
for (cur = *lp; cur->next; cur = cur->next)
sbin/dhclient/clparse.c
913
tmp->next = NULL;
sbin/dhclient/clparse.c
917
cur->next = tmp;
sbin/dhclient/clparse.c
951
list->next = config->reject_list;
sbin/dhclient/dhclient.c
1017
ap; ap = ap->next) {
sbin/dhclient/dhclient.c
1063
lease; lease = lease->next) {
sbin/dhclient/dhclient.c
1107
lease->next = ip->client->offered_leases;
sbin/dhclient/dhclient.c
1123
lease->next = NULL;
sbin/dhclient/dhclient.c
1127
for (lp = ip->client->offered_leases; lp->next;
sbin/dhclient/dhclient.c
1128
lp = lp->next)
sbin/dhclient/dhclient.c
1130
lp->next = lease;
sbin/dhclient/dhclient.c
1357
ip->client->medium = ip->client->medium->next;
sbin/dhclient/dhclient.c
1495
for (lp = ip->client->leases; lp->next; lp = lp->next)
sbin/dhclient/dhclient.c
1497
lp->next = ip->client->active;
sbin/dhclient/dhclient.c
1498
if (lp->next)
sbin/dhclient/dhclient.c
1499
lp->next->next = NULL;
sbin/dhclient/dhclient.c
1501
ip->client->leases = ip->client->leases->next;
sbin/dhclient/dhclient.c
2027
for (lp = ifi->client->leases; lp; lp = lp->next)
sbin/dhclient/dhclient.c
271
for (l = ifi->client->active; l != NULL; l = l->next)
sbin/dhclient/dhclient.c
683
struct client_lease *lp, *next, *picked;
sbin/dhclient/dhclient.c
696
for (lp = ip->client->offered_leases; lp; lp = next) {
sbin/dhclient/dhclient.c
697
next = lp->next;
sbin/dhclient/dhclient.c
715
picked->next = NULL;
sbin/dhclient/dhclient.c
981
ap; ap = ap->next) {
sbin/dhclient/dhcpd.h
101
struct iaddrlist *next;
sbin/dhclient/dhcpd.h
124
struct client_lease *next;
sbin/dhclient/dhcpd.h
200
struct interface_info *next;
sbin/dhclient/dhcpd.h
220
struct timeout *next;
sbin/dhclient/dhcpd.h
227
struct protocol *next;
sbin/dhclient/dhcpd.h
236
struct hash_bucket *next;
sbin/dhclient/dhcpd.h
91
struct string_list *next;
sbin/dhclient/dispatch.c
165
for (l = protocols; l; l = l->next)
sbin/dhclient/dispatch.c
183
timeouts = timeouts->next;
sbin/dhclient/dispatch.c
185
t->next = free_timeouts;
sbin/dhclient/dispatch.c
205
for (i = 0, l = protocols; l; l = l->next) {
sbin/dhclient/dispatch.c
238
for (l = protocols; l; l = l->next) {
sbin/dhclient/dispatch.c
383
for (q = timeouts; q; q = q->next) {
sbin/dhclient/dispatch.c
386
t->next = q->next;
sbin/dhclient/dispatch.c
388
timeouts = q->next;
sbin/dhclient/dispatch.c
399
free_timeouts = q->next;
sbin/dhclient/dispatch.c
417
q->next = timeouts;
sbin/dhclient/dispatch.c
423
for (t = timeouts; t->next; t = t->next) {
sbin/dhclient/dispatch.c
424
if (timespeccmp(&t->next->when, &q->when, >)) {
sbin/dhclient/dispatch.c
425
q->next = t->next;
sbin/dhclient/dispatch.c
426
t->next = q;
sbin/dhclient/dispatch.c
432
t->next = q;
sbin/dhclient/dispatch.c
433
q->next = NULL;
sbin/dhclient/dispatch.c
443
for (q = timeouts; q; q = q->next) {
sbin/dhclient/dispatch.c
446
t->next = q->next;
sbin/dhclient/dispatch.c
448
timeouts = q->next;
sbin/dhclient/dispatch.c
456
q->next = free_timeouts;
sbin/dhclient/dispatch.c
475
p->next = protocols;
sbin/dhclient/dispatch.c
484
for (p = protocols, prev = NULL; p != NULL; prev = p, p = p->next) {
sbin/dhclient/dispatch.c
487
protocols = p->next;
sbin/dhclient/dispatch.c
489
prev->next = p->next;
sbin/dhclient/hash.c
117
for (bp = table->buckets[hashno]; bp; bp = bp->next)
sbin/dhclient/hash.c
98
bp->next = table->buckets[hashno];
sbin/dumpon/dumpon.c
138
for (next = buf; next < buf + sz; next += rtm->rtm_msglen) {
sbin/dumpon/dumpon.c
139
rtm = (struct rt_msghdr *)(void *)next;
sbin/dumpon/dumpon.c
96
char *buf, *next, *ret;
sbin/fsck_ffs/fsck.h
292
struct dups *next;
sbin/fsck_ffs/inode.c
264
ufs_lbn_t next;
sbin/fsck_ffs/inode.c
295
i++, tmpval *= NINDIR(&sblock), cur = next) {
sbin/fsck_ffs/inode.c
296
next = cur + tmpval;
sbin/fsck_ffs/inode.c
302
if (lbn < 0 && -lbn >= next)
sbin/fsck_ffs/inode.c
304
if (lbn > 0 && lbn >= next)
sbin/fsck_ffs/inode.c
707
for (dlp = duplist; dlp; dlp = dlp->next) {
sbin/fsck_ffs/inode.c
712
duplist = duplist->next;
sbin/fsck_ffs/main.c
526
for (dp = duplist; dp; dp = dp->next)
sbin/fsck_ffs/pass1.c
587
new->next = NULL;
sbin/fsck_ffs/pass1.c
589
new->next = muldup->next;
sbin/fsck_ffs/pass1.c
590
muldup->next = new;
sbin/fsck_ffs/pass1.c
592
for (dlp = duplist; dlp != muldup; dlp = dlp->next)
sbin/fsck_ffs/pass1b.c
101
for (dlp = duphead; dlp; dlp = dlp->next) {
sbin/fsck_ffs/pass1b.c
106
duphead = duphead->next;
sbin/fsck_ffs/pass1b.c
111
if (muldup == NULL || duphead == muldup->next) {
sbin/fsck_ffs/suj.c
1221
ufs_lbn_t next;
sbin/fsck_ffs/suj.c
1249
next = -(lbn + level) + ((i+1) * lbnadd);
sbin/fsck_ffs/suj.c
1250
if (next <= lastlbn)
sbin/fsck_ffs/suj.c
1254
nlbn = next - lbnadd;
sbin/fsck_msdosfs/dir.c
1058
struct dirTodoNode *n = pendingDirectories->next;
sbin/fsck_msdosfs/dir.c
1099
for (lostDir = rootDir->child; lostDir; lostDir = lostDir->next) {
sbin/fsck_msdosfs/dir.c
117
freede = de->next;
sbin/fsck_msdosfs/dir.c
124
de->next = freede;
sbin/fsck_msdosfs/dir.c
142
freedt = dt->next;
sbin/fsck_msdosfs/dir.c
149
dt->next = freedt;
sbin/fsck_msdosfs/dir.c
272
np = p->next;
sbin/fsck_msdosfs/dir.c
281
if (!(nd = d->next))
sbin/fsck_msdosfs/dir.c
807
dirent.next = dir->child;
sbin/fsck_msdosfs/dir.c
995
n->next = pendingDirectories;
sbin/fsck_msdosfs/dosfs.h
111
*next, /* next brother */
sbin/fsck_msdosfs/dosfs.h
129
struct dirTodoNode *next;
sbin/ifconfig/ifclone.c
106
SLIST_INSERT_HEAD(&clone_defcbh, dcp, next);
sbin/ifconfig/ifclone.c
138
SLIST_FOREACH(dcp, &clone_defcbh, next) {
sbin/ifconfig/ifclone.c
146
SLIST_FOREACH(dcp, &clone_defcbh, next) {
sbin/ifconfig/ifclone.c
79
SLIST_ENTRY(clone_defcb) next;
sbin/ifconfig/ifclone.c
94
SLIST_INSERT_HEAD(&clone_defcbh, dcp, next);
sbin/ifconfig/ifconfig.c
154
p->next = opts;
sbin/ifconfig/ifconfig.c
166
for (p = opts; p != NULL; p = p->next) {
sbin/ifconfig/ifconfig.c
377
struct ifaddrs *right, *temp, *last, *result, *next, *tail;
sbin/ifconfig/ifconfig.c
383
next = NULL;
sbin/ifconfig/ifconfig.c
403
next = list;
sbin/ifconfig/ifconfig.c
406
next = right;
sbin/ifconfig/ifconfig.c
409
next = list;
sbin/ifconfig/ifconfig.c
412
next = right;
sbin/ifconfig/ifconfig.c
417
result = next;
sbin/ifconfig/ifconfig.c
419
tail->ifa_next = next;
sbin/ifconfig/ifconfig.c
421
tail = next;
sbin/ifconfig/ifconfig.c
479
for (p = opts; p != NULL; p = p->next)
sbin/ifconfig/ifconfig.c
542
for (p = opts; p != NULL; p = p->next)
sbin/ifconfig/ifconfig.h
258
struct option *next;
sbin/ifconfig/ifconfig_netlink.c
121
struct ifa *next;
sbin/ifconfig/ifconfig_netlink.c
248
ifa->next = iface->ifa;
sbin/ifconfig/ifconfig_netlink.c
291
for (struct ifa *ifa = iface->ifa; ifa != NULL; ifa = ifa->next) {
sbin/ifconfig/ifconfig_netlink.c
330
struct ifa *ifa_next = ifa->next;
sbin/ifconfig/ifconfig_netlink.c
333
ifa->next = NULL;
sbin/ifconfig/ifconfig_netlink.c
340
ifa->next = sorted_ifaddrs[i];
sbin/ifconfig/ifconfig_netlink.c
397
for (struct ifa *ifa = iface->ifa; ifa != NULL; ifa = ifa->next) {
sbin/ifconfig/ifieee80211.c
2163
LIST_FOREACH(nb, bands, next) {
sbin/ifconfig/ifieee80211.c
2466
LIST_FOREACH(cp, &rdp->countries, next) {
sbin/ifconfig/ifieee80211.c
2473
LIST_FOREACH(dp, &rdp->domains, next) {
sbin/ipf/ipfs/ipfs.c
681
nat_save_t *ipnp = NULL, *next = NULL;
sbin/ipf/ipfs/ipfs.c
702
ng.ng_ptr = next;
sbin/ipf/ipfs/ipfs.c
732
ipnp->ipn_next = next;
sbin/ipf/ipfs/ipfs.c
751
next = ipnp->ipn_next;
sbin/ipf/ipfs/ipfs.c
752
} while (ipnp && next);
sbin/ipf/ippool/ippool_y.y
252
| range next addrlist { $$ = $1;
sbin/ipf/ippool/ippool_y.y
257
| range next { $$ = $1; }
sbin/ipf/ippool/ippool_y.y
262
| groupentry next grouplist { $$ = $1; $1->ipe_next = $3; }
sbin/ipf/ippool/ippool_y.y
263
| addrmask next grouplist { $$ = calloc(1, sizeof(iphtent_t));
sbin/ipf/ippool/ippool_y.y
269
| groupentry next { $$ = $1; }
sbin/ipf/ippool/ippool_y.y
270
| addrmask next { $$ = calloc(1, sizeof(iphtent_t));
sbin/ipf/ippool/ippool_y.y
287
| groupentry next { $$ = $1; }
sbin/ipf/ippool/ippool_y.y
288
| groupentry next setgrouplist { $1->ipe_next = $3; $$ = $1; }
sbin/ipf/ippool/ippool_y.y
343
| hashentry next { $$ = $1; }
sbin/ipf/ippool/ippool_y.y
344
| hashentry next hashlist { $1->ipe_next = $3; $$ = $1; }
sbin/ipf/ippool/ippool_y.y
435
next: ';' { yyexpectaddr = 1; }
sbin/ipf/ippool/ippool_y.y
538
dstentry next { $$ = $1; }
sbin/ipf/ippool/ippool_y.y
539
| dstentry next dstentries { $1->ipfd_next = $3; $$ = $1; }
sbin/ipf/ipsend/44arp.c
102
for (next = buf; next < lim; next += rtm->rtm_msglen)
sbin/ipf/ipsend/44arp.c
104
rtm = (struct rt_msghdr *)next;
sbin/ipf/ipsend/44arp.c
62
char *lim, *buf, *next;
sbin/ipf/libipf/alist_free.c
13
alist_t *a, *next;
sbin/ipf/libipf/alist_free.c
15
for (a = hosts; a != NULL; a = next) {
sbin/ipf/libipf/alist_free.c
16
next = a->al_next;
sbin/ipfw/nat.c
115
next = buf;
sbin/ipfw/nat.c
116
while (next < lim) {
sbin/ipfw/nat.c
117
ifm = (struct if_msghdr *)next;
sbin/ipfw/nat.c
118
next += ifm->ifm_msglen;
sbin/ipfw/nat.c
140
while (next < lim) {
sbin/ipfw/nat.c
141
ifam = (struct ifa_msghdr *)next;
sbin/ipfw/nat.c
142
next += ifam->ifam_msglen;
sbin/ipfw/nat.c
86
char *buf, *lim, *next;
sbin/ipfw/nat64lsn.c
101
next_idx = stg->next.index;
sbin/kldconfig/kldconfig.c
161
TAILQ_FOREACH(pe, pathq, next)
sbin/kldconfig/kldconfig.c
177
TAILQ_INSERT_TAIL(pathq, pe, next);
sbin/kldconfig/kldconfig.c
180
pskip = TAILQ_NEXT(pskip, next);
sbin/kldconfig/kldconfig.c
182
TAILQ_INSERT_BEFORE(pskip, pe, next);
sbin/kldconfig/kldconfig.c
184
TAILQ_INSERT_TAIL(pathq, pe, next);
sbin/kldconfig/kldconfig.c
208
TAILQ_FOREACH(pe, pathq, next)
sbin/kldconfig/kldconfig.c
218
TAILQ_REMOVE(pathq, pe, next);
sbin/kldconfig/kldconfig.c
250
TAILQ_INSERT_TAIL(pathq, pe, next);
sbin/kldconfig/kldconfig.c
264
TAILQ_FOREACH(pe, pathq, next) {
sbin/kldconfig/kldconfig.c
266
s, pe->path, (TAILQ_NEXT(pe, next) != NULL? ";": ""));
sbin/kldconfig/kldconfig.c
49
TAILQ_ENTRY(pathentry) next;
sbin/md5/md5.c
294
struct chksumrec *next;
sbin/md5/md5.c
298
static struct chksumrec **next = &head;
sbin/md5/md5.c
390
rec->next = NULL;
sbin/md5/md5.c
391
*next = rec;
sbin/md5/md5.c
392
next = &rec->next;
sbin/md5/md5.c
615
for (rec = head; rec != NULL; rec = rec->next) {
sbin/md5/md5.c
640
rec = rec->next;
sbin/mount_nfs/mount_nfs.c
1082
struct nc_entry *next;
sbin/mount_nfs/mount_nfs.c
1087
for (p = head; p != NULL; p = p->next)
sbin/mount_nfs/mount_nfs.c
1096
p->next = head;
sbin/natd/natd.c
891
char *buf, *lim, *next;
sbin/natd/natd.c
920
next = buf;
sbin/natd/natd.c
921
while (next < lim) {
sbin/natd/natd.c
922
ifm = (struct if_msghdr *)next;
sbin/natd/natd.c
923
next += ifm->ifm_msglen;
sbin/natd/natd.c
946
while (next < lim) {
sbin/natd/natd.c
947
ifam = (struct ifa_msghdr *)next;
sbin/natd/natd.c
948
next += ifam->ifam_msglen;
sbin/pfctl/parse.y
1082
proto = proto->next)
sbin/pfctl/parse.y
1163
if ($6.dst.port->next != NULL) {
sbin/pfctl/parse.y
1199
if ($5->next != NULL) {
sbin/pfctl/parse.y
139
struct node_etherproto *next;
sbin/pfctl/parse.y
145
struct node_proto *next;
sbin/pfctl/parse.y
152
struct node_port *next;
sbin/pfctl/parse.y
159
struct node_uid *next;
sbin/pfctl/parse.y
1619
for (i = $3; i; i = i->next) {
sbin/pfctl/parse.y
166
struct node_gid *next;
sbin/pfctl/parse.y
1708
$1->tail->next = $3;
sbin/pfctl/parse.y
174
struct node_icmp *next;
sbin/pfctl/parse.y
1782
nh = h->next;
sbin/pfctl/parse.y
1828
for (n = $3; n != NULL; n = n->next) {
sbin/pfctl/parse.y
210
struct node_state_opt *next;
sbin/pfctl/parse.y
224
struct node_queue *next;
sbin/pfctl/parse.y
2367
$1->tail->next = $3;
sbin/pfctl/parse.y
2386
$$->next = NULL;
sbin/pfctl/parse.y
2847
proto = proto->next)
sbin/pfctl/parse.y
3044
o = o->next;
sbin/pfctl/parse.y
3219
$2->tail->next = filter_opts.uid;
sbin/pfctl/parse.y
3224
$2->tail->next = filter_opts.gid;
sbin/pfctl/parse.y
3748
$1->tail->next = $3;
sbin/pfctl/parse.y
3776
$$->next = NULL;
sbin/pfctl/parse.y
3785
$$->next = NULL;
sbin/pfctl/parse.y
3802
$1->tail->next = $3;
sbin/pfctl/parse.y
3820
$$->next = NULL;
sbin/pfctl/parse.y
3852
$1->tail->next = $3;
sbin/pfctl/parse.y
3870
$$->next = NULL;
sbin/pfctl/parse.y
3963
for (n = $2; n != NULL; n = n->next)
sbin/pfctl/parse.y
3985
$1->tail->next = $3;
sbin/pfctl/parse.y
4021
$1->tail->next = $3;
sbin/pfctl/parse.y
4084
$1->tail->next = $3;
sbin/pfctl/parse.y
4094
for (n = $2; n != NULL; n = n->next)
sbin/pfctl/parse.y
4103
$$->next = NULL;
sbin/pfctl/parse.y
4112
$$->next = NULL;
sbin/pfctl/parse.y
4145
b->next != NULL || b->not ||
sbin/pfctl/parse.y
4146
e->next != NULL || e->not) {
sbin/pfctl/parse.y
4203
for (n = $1; n != NULL; n = n->next)
sbin/pfctl/parse.y
4221
$$->next = NULL;
sbin/pfctl/parse.y
4289
$$->next = NULL;
sbin/pfctl/parse.y
4300
$1->tail->next = $3;
sbin/pfctl/parse.y
4321
$$->next = NULL;
sbin/pfctl/parse.y
4340
$$->next = NULL;
sbin/pfctl/parse.y
4359
$$->next = NULL;
sbin/pfctl/parse.y
4388
$1->tail->next = $3;
sbin/pfctl/parse.y
4401
$$->next = NULL;
sbin/pfctl/parse.y
4416
$$->next = NULL;
sbin/pfctl/parse.y
4431
$$->next = NULL;
sbin/pfctl/parse.y
4466
$1->tail->next = $3;
sbin/pfctl/parse.y
4479
$$->next = NULL;
sbin/pfctl/parse.y
4494
$$->next = NULL;
sbin/pfctl/parse.y
4509
$$->next = NULL;
sbin/pfctl/parse.y
4564
$1->tail->next = $3;
sbin/pfctl/parse.y
4572
$1->tail->next = $3;
sbin/pfctl/parse.y
4585
$$->next = NULL;
sbin/pfctl/parse.y
4604
$$->next = NULL;
sbin/pfctl/parse.y
4618
$$->next = NULL;
sbin/pfctl/parse.y
4630
$$->next = NULL;
sbin/pfctl/parse.y
4649
$$->next = NULL;
sbin/pfctl/parse.y
4663
$$->next = NULL;
sbin/pfctl/parse.y
4782
$1->tail->next = $3;
sbin/pfctl/parse.y
4798
$$->next = NULL;
sbin/pfctl/parse.y
4806
$$->next = NULL;
sbin/pfctl/parse.y
4819
$$->next = NULL;
sbin/pfctl/parse.y
4832
$$->next = NULL;
sbin/pfctl/parse.y
4847
$$->next = NULL;
sbin/pfctl/parse.y
4865
$$->next = NULL;
sbin/pfctl/parse.y
4878
$$->next = NULL;
sbin/pfctl/parse.y
4887
$$->next = NULL;
sbin/pfctl/parse.y
4896
$$->next = NULL;
sbin/pfctl/parse.y
4904
$$->next = NULL;
sbin/pfctl/parse.y
4912
$$->next = NULL;
sbin/pfctl/parse.y
4920
$$->next = NULL;
sbin/pfctl/parse.y
4950
$$->next = NULL;
sbin/pfctl/parse.y
5001
$1->tail->next = $3;
sbin/pfctl/parse.y
5340
o = o->next;
sbin/pfctl/parse.y
5434
if ($8->next) {
sbin/pfctl/parse.y
5455
if ($9->next) {
sbin/pfctl/parse.y
5491
if ($13->host->next != NULL) {
sbin/pfctl/parse.y
5556
$$->next = NULL;
sbin/pfctl/parse.y
5563
for (n = $3; n != NULL; n = n->next) {
sbin/pfctl/parse.y
5575
$1->tail->next = $3;
sbin/pfctl/parse.y
5720
for (; h != NULL; h = h->next)
sbin/pfctl/parse.y
5731
for (; h != NULL; h = h->next)
sbin/pfctl/parse.y
5742
for (; h != NULL; h = h->next)
sbin/pfctl/parse.y
6044
node = node->next; \
sbin/pfctl/parse.y
6056
r->next = NULL; \
sbin/pfctl/parse.y
6063
n = n->next; \
sbin/pfctl/parse.y
6324
n->next = NULL;
sbin/pfctl/parse.y
6329
queues->tail->next = n;
sbin/pfctl/parse.y
6416
for (nq = nqueues; nq != NULL; nq = nq->next) {
sbin/pfctl/parse.y
6440
n->next = NULL;
sbin/pfctl/parse.y
6445
queues->tail->next = n;
sbin/pfctl/parse.y
6655
(rs->host->next != NULL ||
sbin/pfctl/parse.y
6665
if (rs->host->next != NULL &&
sbin/pfctl/parse.y
6671
if (rs->host->next != NULL) {
sbin/pfctl/parse.y
6686
for (h = rs->host; h != NULL; h = h->next) {
sbin/pfctl/parse.y
6717
if (src_host->next) {
sbin/pfctl/parse.y
6794
rdr_src_host->next = NULL;
sbin/pfctl/parse.y
6802
(*rdr_dst_host)->next = NULL;
sbin/pfctl/parse.y
7055
if (!interfaces || (!interfaces->next && !interfaces->not &&
sbin/pfctl/parse.y
7318
int c, next;
sbin/pfctl/parse.y
7331
next = igetc();
sbin/pfctl/parse.y
7332
if (next != '\n') {
sbin/pfctl/parse.y
7333
c = next;
sbin/pfctl/parse.y
7397
int quotec, next, c;
sbin/pfctl/parse.y
7452
if ((next = lgetc(quotec)) == EOF)
sbin/pfctl/parse.y
7454
if (next == quotec || next == ' ' ||
sbin/pfctl/parse.y
7455
next == '\t')
sbin/pfctl/parse.y
7456
c = next;
sbin/pfctl/parse.y
7457
else if (next == '\n') {
sbin/pfctl/parse.y
7462
lungetc(next);
sbin/pfctl/parse.y
7481
next = lgetc(0);
sbin/pfctl/parse.y
7482
if (next == '=')
sbin/pfctl/parse.y
7484
lungetc(next);
sbin/pfctl/parse.y
7487
next = lgetc(0);
sbin/pfctl/parse.y
7488
if (next == '>') {
sbin/pfctl/parse.y
7491
} else if (next == '=')
sbin/pfctl/parse.y
7493
lungetc(next);
sbin/pfctl/parse.y
7496
next = lgetc(0);
sbin/pfctl/parse.y
7497
if (next == '<') {
sbin/pfctl/parse.y
7500
} else if (next == '=')
sbin/pfctl/parse.y
7502
lungetc(next);
sbin/pfctl/parse.y
7505
next = lgetc(0);
sbin/pfctl/parse.y
7506
if (next == '>')
sbin/pfctl/parse.y
7508
lungetc(next);
sbin/pfctl/parse.y
7864
while ((n = n->next) != NULL) {
sbin/pfctl/parse.y
7880
struct node_host *next = n->next;
sbin/pfctl/parse.y
7887
*nh = next;
sbin/pfctl/parse.y
7889
prev->next = next;
sbin/pfctl/parse.y
7894
n = next;
sbin/pfctl/parse.y
7899
n = n->next;
sbin/pfctl/parse.y
7911
for (n = nh; n != NULL; n = n->next) {
sbin/pfctl/parse.y
8174
m->next = NULL;
sbin/pfctl/pfctl.c
3304
for (n = h; n != NULL; n = n->next)
sbin/pfctl/pfctl.c
519
for (n = h; n != NULL; n = n->next) {
sbin/pfctl/pfctl.c
543
for (n = h; n != NULL; n = n->next)
sbin/pfctl/pfctl_optimize.c
1023
struct pf_skip_step *sk, *next;
sbin/pfctl/pfctl_optimize.c
1044
while ((next = TAILQ_NEXT(sk, ps_entry)) &&
sbin/pfctl/pfctl_optimize.c
1045
next->ps_count > sk->ps_count) {
sbin/pfctl/pfctl_optimize.c
1047
TAILQ_INSERT_AFTER(head, next, sk, ps_entry);
sbin/pfctl/pfctl_optimize.c
1050
next = TAILQ_NEXT(sk, ps_entry);
sbin/pfctl/pfctl_optimize.c
1051
assert(next == NULL || next->ps_count <= sk->ps_count);
sbin/pfctl/pfctl_parser.c
1386
for (h = ti->host; h != NULL; h = h->next) {
sbin/pfctl/pfctl_parser.c
1455
for (n = h; n != NULL; n = n->next) {
sbin/pfctl/pfctl_parser.c
1482
n->next = NULL;
sbin/pfctl/pfctl_parser.c
1626
n->next = NULL;
sbin/pfctl/pfctl_parser.c
1631
h->tail->next = n;
sbin/pfctl/pfctl_parser.c
1694
for (p = iftab; p; p = p->next) {
sbin/pfctl/pfctl_parser.c
1707
for (p = iftab; p; p = p->next) {
sbin/pfctl/pfctl_parser.c
1735
for (n = iftab; n; n = n->next) {
sbin/pfctl/pfctl_parser.c
1771
h->tail->next = n;
sbin/pfctl/pfctl_parser.c
1797
for (p = iftab; p; p = p->next) {
sbin/pfctl/pfctl_parser.c
1846
n->next = NULL;
sbin/pfctl/pfctl_parser.c
1851
h->tail->next = n;
sbin/pfctl/pfctl_parser.c
1949
for (n = h; n != NULL; n = n->next)
sbin/pfctl/pfctl_parser.c
1993
h->next = NULL;
sbin/pfctl/pfctl_parser.c
2046
n->next = NULL;
sbin/pfctl/pfctl_parser.c
2051
h->tail->next = n;
sbin/pfctl/pfctl_parser.c
2083
n = n->next;
sbin/pfctl/pfctl_parser.c
2127
} while ((n = n->next) != NULL);
sbin/pfctl/pfctl_parser.h
149
struct node_if *next;
sbin/pfctl/pfctl_parser.h
162
struct node_host *next;
sbin/pfctl/pfctl_parser.h
173
struct node_mac *next;
sbin/pfctl/pfctl_parser.h
180
struct node_os *next;
sbin/pfctl/pfctl_qstats.c
108
for (node = root; node != NULL; node = node->next) {
sbin/pfctl/pfctl_qstats.c
124
for (node = root; node != NULL; node = node->next) {
sbin/pfctl/pfctl_qstats.c
223
node->next = node->children = NULL;
sbin/pfctl/pfctl_qstats.c
230
while (prev->next != NULL)
sbin/pfctl/pfctl_qstats.c
231
prev = prev->next;
sbin/pfctl/pfctl_qstats.c
232
prev->next = node;
sbin/pfctl/pfctl_qstats.c
244
while (prev->next != NULL)
sbin/pfctl/pfctl_qstats.c
245
prev = prev->next;
sbin/pfctl/pfctl_qstats.c
246
prev->next = node;
sbin/pfctl/pfctl_qstats.c
258
for (node = root; node != NULL; node = node->next) {
sbin/pfctl/pfctl_qstats.c
286
child = child->next) {
sbin/pfctl/pfctl_qstats.c
288
if (child->next != NULL)
sbin/pfctl/pfctl_qstats.c
304
child = child->next)
sbin/pfctl/pfctl_qstats.c
449
node = node->next;
sbin/pfctl/pfctl_qstats.c
69
struct pf_altq_node *next;
sbin/rcorder/hash.c
148
nexth = h->next;
sbin/rcorder/hash.c
191
for (e = t->bucketPtr[h & t->mask]; e != NULL; e = e->next)
sbin/rcorder/hash.c
237
for (e = t->bucketPtr[h & t->mask]; e != NULL; e = e->next) {
sbin/rcorder/hash.c
254
e->next = *hp;
sbin/rcorder/hash.c
291
(p = *hp) != NULL; hp = &p->next) {
sbin/rcorder/hash.c
293
*hp = p->next;
sbin/rcorder/hash.c
367
e = e->next;
sbin/rcorder/hash.c
401
register Hash_Entry *e, *next = NULL, **hp, **xp;
sbin/rcorder/hash.c
415
for (e = *hp++; e != NULL; e = next) {
sbin/rcorder/hash.c
416
next = e->next;
sbin/rcorder/hash.c
418
e->next = *xp;
sbin/rcorder/hash.h
57
struct Hash_Entry *next; /* Used to link together all the
sbin/rcorder/rcorder.c
1034
if (head == NULL || head->next == NULL) {
sbin/rcorder/rcorder.c
1041
if (head->next->next == NULL &&
sbin/rcorder/rcorder.c
1043
basename(head->next->fnode->filename)) == 0) {
sbin/rcorder/rcorder.c
1047
for (pnode = head->next; pnode; pnode = pnode->next)
sbin/rcorder/rcorder.c
108
provnode *next, *last;
sbin/rcorder/rcorder.c
1096
while (fn_head->next != NULL) {
sbin/rcorder/rcorder.c
1097
DPRINTF((stderr, "generate on %s\n", fn_head->next->filename));
sbin/rcorder/rcorder.c
1098
do_file(fn_head->next, NULL);
sbin/rcorder/rcorder.c
114
f_provnode *next;
sbin/rcorder/rcorder.c
119
f_reqnode *next;
sbin/rcorder/rcorder.c
124
strnodelist *next;
sbin/rcorder/rcorder.c
131
filenode *next, *last;
sbin/rcorder/rcorder.c
246
ent->next = *listp;
sbin/rcorder/rcorder.c
277
temp->next = fn_head->next;
sbin/rcorder/rcorder.c
278
if (temp->next != NULL)
sbin/rcorder/rcorder.c
279
temp->next->last = temp;
sbin/rcorder/rcorder.c
281
fn_head->next = temp;
sbin/rcorder/rcorder.c
300
rnode->next = fnode->req_list;
sbin/rcorder/rcorder.c
326
head->last = head->next = NULL;
sbin/rcorder/rcorder.c
365
head->next->fnode->filename);
sbin/rcorder/rcorder.c
373
pnode->next = head->next;
sbin/rcorder/rcorder.c
375
head->next = pnode;
sbin/rcorder/rcorder.c
376
if (pnode->next != NULL)
sbin/rcorder/rcorder.c
377
pnode->next->last = pnode;
sbin/rcorder/rcorder.c
382
f_pnode->next = fnode->prov_list;
sbin/rcorder/rcorder.c
397
bf_ent->next = bl_list;
sbin/rcorder/rcorder.c
561
head->last = head->next = NULL;
sbin/rcorder/rcorder.c
568
pnode->next = head->next;
sbin/rcorder/rcorder.c
570
head->next = pnode;
sbin/rcorder/rcorder.c
571
if (pnode->next != NULL)
sbin/rcorder/rcorder.c
572
pnode->next->last = pnode;
sbin/rcorder/rcorder.c
577
f_pnode->next = node->prov_list;
sbin/rcorder/rcorder.c
600
bl = bl_list->next;
sbin/rcorder/rcorder.c
613
for (pnode = Hash_GetValue(entry); pnode; pnode = pnode->next) {
sbin/rcorder/rcorder.c
619
rnode->next = pnode->fnode->req_list;
sbin/rcorder/rcorder.c
665
fpnode = fpnode->next) {
sbin/rcorder/rcorder.c
683
(head->next && head->in_progress == SET)) ?
sbin/rcorder/rcorder.c
689
if (head == NULL || head->next == NULL)
sbin/rcorder/rcorder.c
693
rfpnode = head->next->fnode->prov_list;
sbin/rcorder/rcorder.c
695
rfpnode = rfpnode->next;
sbin/rcorder/rcorder.c
718
for (pnode = head->next; pnode; pnode = pnode->next) {
sbin/rcorder/rcorder.c
723
stack_ptr = stack_ptr->next) {
sbin/rcorder/rcorder.c
753
stack_ptr = stack_ptr->next;
sbin/rcorder/rcorder.c
807
if (head->next == NULL)
sbin/rcorder/rcorder.c
834
stack_item.next = stack_ptr;
sbin/rcorder/rcorder.c
841
while (head->next != NULL)
sbin/rcorder/rcorder.c
842
do_file(head->next->fnode, &stack_item);
sbin/rcorder/rcorder.c
851
for (s = skip_list; s; s = s->next)
sbin/rcorder/rcorder.c
852
for (k = fnode->keyword_list; k; k = k->next)
sbin/rcorder/rcorder.c
865
for (s = keep_list; s; s = s->next)
sbin/rcorder/rcorder.c
866
for (k = fnode->keyword_list; k; k = k->next)
sbin/rcorder/rcorder.c
921
r = r->next;
sbin/rcorder/rcorder.c
954
if (pnode->next != NULL) {
sbin/rcorder/rcorder.c
955
pnode->next->last = pnode->last;
sbin/rcorder/rcorder.c
958
pnode->last->next = pnode->next;
sbin/rcorder/rcorder.c
961
p = p->next;
sbin/rcorder/rcorder.c
976
if (fnode->next != NULL) {
sbin/rcorder/rcorder.c
977
fnode->next->last = fnode->last;
sbin/rcorder/rcorder.c
980
fnode->last->next = fnode->next;
sbin/restore/restore.c
625
goto next;
sbin/restore/restore.c
648
next:
sbin/restore/restore.c
664
ino_t first, next, last;
sbin/restore/restore.c
715
next = lowerbnd(curfile.ino);
sbin/restore/restore.c
716
while (next > curfile.ino && volno == curvol)
sbin/restore/restore.c
729
next = first;
sbin/restore/restore.c
741
while (next < curfile.ino) {
sbin/restore/restore.c
742
ep = lookupino(next);
sbin/restore/restore.c
747
next = lowerbnd(next);
sbin/restore/restore.c
753
if (next == curfile.ino && next <= last) {
sbin/restore/restore.c
754
ep = lookupino(next);
sbin/restore/symtab.c
115
struct entry *next;
sbin/restore/symtab.c
121
for (next = *prev; next != NULL; next = next->e_next) {
sbin/restore/symtab.c
122
if (next->e_ino == inum) {
sbin/restore/symtab.c
123
next->e_ino = 0;
sbin/restore/symtab.c
124
*prev = next->e_next;
sbin/restore/symtab.c
127
prev = &next->e_next;
sbin/restore/symtab.c
365
struct strhdr *next;
sbin/restore/symtab.c
387
np = strtblhdr[len / STRTBLINCR].next;
sbin/restore/symtab.c
389
strtblhdr[len / STRTBLINCR].next = np->next;
sbin/restore/symtab.c
411
np->next = tp->next;
sbin/restore/symtab.c
412
tp->next = np;
sbin/route/route.c
1444
char *buf, *lim, *next, count = 0;
sbin/route/route.c
1468
for (next = buf; next < lim; next += rtm->rtm_msglen) {
sbin/route/route.c
1469
rtm = (struct rt_msghdr *)(void *)next;
sbin/route/route.c
497
char *buf, *next, *lim;
sbin/route/route.c
532
for (next = buf; next < lim; next += rtm->rtm_msglen) {
sbin/route/route.c
533
rtm = (struct rt_msghdr *)(void *)next;
sbin/route/route.c
548
rlen = write(s, next, rtm->rtm_msglen);
sbin/routed/radix.c
487
struct radix_mask *next)
sbin/routed/radix.c
503
m->rm_mklist = next;
sbin/routed/radix.c
809
struct radix_node *base, *next;
sbin/routed/radix.c
827
next = rn;
sbin/routed/radix.c
834
rn = next;
sbin/routed/rtquery/rtquery.c
353
struct seen *next;
sbin/routed/rtquery/rtquery.c
429
for (sp = seen; sp != NULL; sp = sp->next) {
sbin/routed/rtquery/rtquery.c
441
sp->next = seen;
sbin/routed/table.c
1036
char *next, *lim;
sbin/routed/table.c
1077
for (next = sysctl_buf; next < lim; next += rtm->rtm_msglen) {
sbin/routed/table.c
1078
rtm = (struct rt_msghdr *)next;
sbin/routed/table.c
1088
(struct sockaddr *)(next + rtm->rtm_msglen),
share/examples/sunrpc/dir/dir_proc.c
44
nlp = &nl->next;
share/examples/sunrpc/dir/rls.c
77
for (nl = result->readdir_res_u.list; nl != NULL; nl = nl->next) {
stand/common/console.c
252
char *curpos, *dup, *next;
stand/common/console.c
254
dup = next = strdup(string);
stand/common/console.c
256
while (next != NULL) {
stand/common/console.c
257
curpos = strsep(&next, " ,");
stand/common/console.c
290
char *curpos, *dup, *next;
stand/common/console.c
298
dup = next = strdup(string);
stand/common/console.c
300
while (next != NULL) {
stand/common/console.c
301
curpos = strsep(&next, " ,");
stand/common/gfx_fb.c
2314
struct fontlist *fl, *next;
stand/common/gfx_fb.c
2341
next = STAILQ_NEXT(fl, font_next);
stand/common/gfx_fb.c
2347
if (next == NULL || next->font_data->vfbd_height < size) {
stand/common/gfx_fb.c
2836
struct fontlist *fp, *previous, *entry, *next;
stand/common/gfx_fb.c
2936
next = STAILQ_NEXT(entry, font_next);
stand/common/gfx_fb.c
2937
if (next == NULL ||
stand/common/gfx_fb.c
2938
size > next->font_data->vfbd_width *
stand/common/gfx_fb.c
2939
next->font_data->vfbd_height) {
stand/common/gfx_fb.c
3141
TAILQ_INSERT_TAIL(res, rp, next);
stand/common/gfx_fb.c
3182
TAILQ_FOREACH(p, res, next) {
stand/common/gfx_fb.c
3186
TAILQ_INSERT_AFTER(res, p, rp, next);
stand/common/gfx_fb.c
3188
TAILQ_INSERT_BEFORE(p, rp, next);
stand/common/gfx_fb.c
3191
if (TAILQ_NEXT(p, next) == NULL) {
stand/common/gfx_fb.c
3192
TAILQ_INSERT_TAIL(res, rp, next);
stand/common/gfx_fb.h
143
TAILQ_ENTRY(resolution) next;
stand/common/interp_forth.c
374
struct includeline *next;
stand/common/interp_forth.c
417
script = script->next;
stand/common/interp_forth.c
427
sp->next = NULL;
stand/common/interp_forth.c
432
se->next = sp;
stand/common/interp_forth.c
444
for (sp = script; sp != NULL; sp = sp->next) {
stand/common/interp_forth.c
459
script = script->next;
stand/common/interp_simple.c
141
script = script->next;
stand/common/interp_simple.c
153
sp->next = NULL;
stand/common/interp_simple.c
158
se->next = sp;
stand/common/interp_simple.c
169
for (sp = script; sp != NULL; sp = sp->next) {
stand/common/interp_simple.c
200
script = script->next;
stand/common/interp_simple.c
78
struct includeline *next;
stand/common/isapnp.h
282
struct pnp_dlist_node *next;
stand/common/module.c
1003
struct file_metadata *md, *next;
stand/common/module.c
1005
for (md = fp->f_metadata; md != NULL; md = next)
stand/common/module.c
1007
next = md->md_next;
stand/common/module.c
1653
struct preloaded_file *cm, *next;
stand/common/module.c
1659
next = fp->f_next;
stand/common/module.c
1661
next = NULL;
stand/common/module.c
1664
preloaded_files = next;
stand/common/module.c
1670
cm->f_next = next;
stand/efi/boot1/boot1.c
287
for (dev = *devinfop; dev->next != NULL; dev = dev->next)
stand/efi/boot1/boot1.c
290
dev->next = devinfo;
stand/efi/boot1/boot_module.h
53
struct dev_info *next;
stand/efi/boot1/proto.c
106
devinfo->next = NULL;
stand/efi/boot1/proto.c
139
for (dev = mod->devices(); dev != NULL; dev = dev->next) {
stand/efi/boot1/ufs_module.c
196
for (dev = devices, i = 0; dev != NULL; dev = dev->next, i++)
stand/efi/gptboot/proto.c
185
devinfo->next = NULL;
stand/efi/gptboot/proto.c
217
for (dev = devices; dev != NULL; dev = dev->next)
stand/efi/gptboot/proto.c
264
goto next;
stand/efi/gptboot/proto.c
270
goto next;
stand/efi/gptboot/proto.c
273
next:
stand/efi/loader/framebuffer.c
949
TAILQ_REMOVE(&res, rp, next);
stand/fdt/fdt_loader_cmd.c
1663
int o, next, depth, rv;
stand/fdt/fdt_loader_cmd.c
1705
tag = fdt_next_tag(fdtp, o, &next);
stand/fdt/fdt_loader_cmd.c
1739
o = next;
stand/i386/libi386/biossmap.c
111
next = STAILQ_NEXT(cur, bufs);
stand/i386/libi386/biossmap.c
113
cur = next;
stand/i386/libi386/biossmap.c
59
struct smap_buf *cur, *next;
stand/i386/libi386/biossmap.c
79
next = malloc(sizeof(*next));
stand/i386/libi386/biossmap.c
80
if (next == NULL)
stand/i386/libi386/biossmap.c
82
next->smap = buf.smap;
stand/i386/libi386/biossmap.c
84
next->xattr = buf.xattr;
stand/i386/libi386/biossmap.c
87
STAILQ_INSERT_TAIL(&head, next, bufs);
stand/i386/libi386/bootinfo.c
41
char *curpos, *next, *string;
stand/i386/libi386/bootinfo.c
49
string = next = strdup(getenv("console"));
stand/i386/libi386/bootinfo.c
51
while (next != NULL) {
stand/i386/libi386/bootinfo.c
52
curpos = strsep(&next, " ,");
stand/i386/libi386/vbe.c
1140
TAILQ_REMOVE(&res, rp, next);
stand/i386/libi386/vbe.c
982
TAILQ_REMOVE(&res, rp, next);
stand/kboot/libkboot/seg.c
226
char *next;
stand/kboot/libkboot/seg.c
235
start = strtoull(walker, &next, 16);
stand/kboot/libkboot/seg.c
236
if (start == ULLONG_MAX || walker == next)
stand/kboot/libkboot/seg.c
238
walker = next;
stand/kboot/libkboot/seg.c
242
end = strtoull(walker, &next, 16);
stand/kboot/libkboot/seg.c
243
if (end == ULLONG_MAX || walker == next)
stand/kboot/libkboot/seg.c
245
walker = next;
stand/libofw/openfirm.c
163
cell_t next;
stand/libofw/openfirm.c
170
return (args.next);
stand/libsa/ext2fs.c
775
goto next;
stand/libsa/ext2fs.c
783
next:
stand/libsa/ip.c
174
struct ip_queue *next = STAILQ_NEXT(p, ipq_next);
stand/libsa/ip.c
175
if (next == NULL) {
stand/libsa/ip.c
181
off_q = ntohs(next->ipq_hdr->ip_off) & IP_OFFMASK;
stand/libsa/ufs.c
473
goto next;
stand/libsa/ufs.c
486
next:
stand/libsa/zfs/zfs.c
1556
STAILQ_FOREACH(mount, &zfsmount, next) {
stand/libsa/zfs/zfs.c
1581
STAILQ_FOREACH(mount, &zfsmount, next) {
stand/libsa/zfs/zfs.c
439
STAILQ_INSERT_TAIL(&zfsmount, mnt, next);
stand/libsa/zfs/zfs.c
451
STAILQ_REMOVE(&zfsmount, mnt, zfsmount, next);
stand/libsa/zfs/zfs.c
695
spa_t *next;
stand/libsa/zfs/zfs.c
706
next = STAILQ_NEXT(spa, spa_link);
stand/libsa/zfs/zfs.c
714
spa = next;
stand/libsa/zfs/zfsimpl.c
51
STAILQ_ENTRY(zfsmount) next;
stand/userboot/userboot/bootinfo.c
39
char *curpos, *next, *string;
stand/userboot/userboot/bootinfo.c
47
string = next = strdup(getenv("console"));
stand/userboot/userboot/bootinfo.c
49
while (next != NULL) {
stand/userboot/userboot/bootinfo.c
50
curpos = strsep(&next, " ,");
sys/amd64/amd64/pmap.c
1009
if (!pmap_di_load_invl(p, &prev) || prev.next != invl_gen)
sys/amd64/amd64/pmap.c
1015
new_prev.next = (void *)((uintptr_t)invl_gen->next &
sys/amd64/amd64/pmap.c
1035
KASSERT(((uintptr_t)invl_gen->next & PMAP_INVL_GEN_NEXT_INVALID) == 0,
sys/amd64/amd64/pmap.c
1041
prevl = (uintptr_t)atomic_load_ptr(&p->next);
sys/amd64/amd64/pmap.c
1062
atomic_set_ptr((uintptr_t *)&invl_gen->next,
sys/amd64/amd64/pmap.c
1065
atomic_clear_ptr((uintptr_t *)&invl_gen->next,
sys/amd64/amd64/pmap.c
1092
nextl = (uintptr_t)atomic_load_ptr(&p->next);
sys/amd64/amd64/pmap.c
660
.next = NULL,
sys/amd64/amd64/pmap.c
791
struct pmap_invl_gen *invl_gen, *next;
sys/amd64/amd64/pmap.c
796
next = LIST_NEXT(invl_gen, link);
sys/amd64/amd64/pmap.c
797
if (next == NULL)
sys/amd64/amd64/pmap.c
800
next->gen = invl_gen->gen;
sys/amd64/amd64/pmap.c
812
return (((uintptr_t)invl_gen->next & PMAP_INVL_GEN_NEXT_INVALID) != 0);
sys/amd64/amd64/pmap.c
822
invl_gen->next = (void *)PMAP_INVL_GEN_NEXT_INVALID;
sys/amd64/amd64/pmap.c
842
out->next = (void *)old_high;
sys/amd64/amd64/pmap.c
845
out->next = (void *)new_high;
sys/amd64/amd64/pmap.c
858
new_high = (uintptr_t)new_val->next;
sys/amd64/amd64/pmap.c
860
old_high = (uintptr_t)old_val->next;
sys/amd64/amd64/pmap.c
932
for (p = &pmap_invl_gen_head;; p = prev.next) {
sys/amd64/amd64/pmap.c
934
prevl = (uintptr_t)atomic_load_ptr(&p->next);
sys/amd64/amd64/pmap.c
942
prev.next = (void *)prevl;
sys/amd64/amd64/pmap.c
949
if (!pmap_di_load_invl(p, &prev) || prev.next != NULL) {
sys/amd64/amd64/pmap.c
956
new_prev.next = invl_gen;
sys/amd64/amd64/pmap.c
990
invl_gen->next = NULL;
sys/amd64/include/proc.h
61
struct pmap_invl_gen *next;
sys/amd64/pt/pt.c
466
TAILQ_FOREACH(hwt_cpu, &ctx->cpus, next) {
sys/amd64/pt/pt.c
473
TAILQ_FOREACH(thr, &ctx->threads, next) {
sys/amd64/pt/pt.c
615
TAILQ_FOREACH(hwt_cpu, &ctx->cpus, next) {
sys/amd64/pt/pt.c
642
TAILQ_FOREACH(thr, &ctx->threads, next) {
sys/amd64/sgx/sgx.c
386
TAILQ_REMOVE(&sc->enclaves, enclave, next);
sys/amd64/sgx/sgx.c
754
TAILQ_INSERT_TAIL(&sc->enclaves, enclave, next);
sys/amd64/sgx/sgxvar.h
68
TAILQ_ENTRY(sgx_enclave) next;
sys/amd64/vmm/amd/amdvi_hw.c
1016
SLIST_INSERT_HEAD(&dom_head, dom, next);
sys/amd64/vmm/amd/amdvi_hw.c
1059
SLIST_REMOVE(&dom_head, domain, amdvi_domain, next);
sys/amd64/vmm/amd/amdvi_priv.h
357
SLIST_ENTRY (amdvi_domain) next;
sys/amd64/vmm/intel/vtd.c
110
SLIST_ENTRY(domain) next;
sys/amd64/vmm/intel/vtd.c
162
SLIST_FOREACH(dom, &domhead, next) {
sys/amd64/vmm/intel/vtd.c
729
SLIST_INSERT_HEAD(&domhead, dom, next);
sys/amd64/vmm/intel/vtd.c
762
SLIST_REMOVE(&domhead, dom, domain, next);
sys/amd64/vmm/io/ppt.c
178
TAILQ_INSERT_TAIL(&pptdev_list, ppt, next);
sys/amd64/vmm/io/ppt.c
209
TAILQ_REMOVE(&pptdev_list, ppt, next);
sys/amd64/vmm/io/ppt.c
236
TAILQ_FOREACH(ppt, &pptdev_list, next) {
sys/amd64/vmm/io/ppt.c
362
TAILQ_FOREACH(ppt, &pptdev_list, next) {
sys/amd64/vmm/io/ppt.c
376
TAILQ_FOREACH(ppt, &pptdev_list, next) {
sys/amd64/vmm/io/ppt.c
484
TAILQ_FOREACH(ppt, &pptdev_list, next) {
sys/amd64/vmm/io/ppt.c
93
TAILQ_ENTRY(pptdev) next;
sys/arm/allwinner/a31_dmac.c
107
uint32_t next;
sys/arm/allwinner/a31_dmac.c
513
ch->desc->next = htole32(DMA_NULL);
sys/arm/allwinner/aw_gpio.c
1170
TAILQ_INSERT_TAIL(&sc->clk_list, clkp, next);
sys/arm/allwinner/aw_gpio.c
1206
TAILQ_FOREACH_SAFE(clkp, &sc->clk_list, next, clkp_tmp) {
sys/arm/allwinner/aw_gpio.c
1215
TAILQ_REMOVE(&sc->clk_list, clkp, next);
sys/arm/allwinner/aw_gpio.c
345
TAILQ_ENTRY(clk_list) next;
sys/arm/allwinner/aw_mmc.c
650
dma_desc[i].next = (sc->aw_dma_desc_phys +
sys/arm/allwinner/aw_mmc.c
659
dma_desc[nsegs - 1].next = 0;
sys/arm/allwinner/aw_mmc.h
225
uint32_t next;
sys/arm/allwinner/if_awg.c
1075
for (i = sc->tx.next; sc->tx.queued > 0; i = TX_NEXT(i)) {
sys/arm/allwinner/if_awg.c
1081
sc->tx.next = i;
sys/arm/allwinner/if_awg.c
1086
sc->tx.cur = sc->tx.next;
sys/arm/allwinner/if_awg.c
1299
for (i = sc->tx.next; sc->tx.queued > 0; i = TX_NEXT(i)) {
sys/arm/allwinner/if_awg.c
1316
sc->tx.next = i;
sys/arm/allwinner/if_awg.c
171
u_int cur, next, queued;
sys/arm/allwinner/if_awg.c
835
sc->tx.desc_ring[i].next =
sys/arm/allwinner/if_awg.c
920
sc->rx.desc_ring[i].next =
sys/arm/allwinner/if_awgreg.h
176
uint32_t next;
sys/arm/broadcom/bcm2835/bcm2835_dma.c
119
uint32_t next; /* Next Control Block Address */
sys/arm/broadcom/bcm2835/bcm2835_dma.c
524
printf("NEXT: %8.8x ", cb->next);
sys/arm/broadcom/bcm2835/bcm2838_pci.c
435
goto next;
sys/arm/broadcom/bcm2835/bcm2838_pci.c
438
next:
sys/arm/ti/cpsw/if_cpsw.c
1574
struct mbuf *received, *next;
sys/arm/ti/cpsw/if_cpsw.c
1589
next = received->m_nextpkt;
sys/arm/ti/cpsw/if_cpsw.c
1594
received = next;
sys/arm/ti/cpsw/if_cpsw.c
1630
STAILQ_REMOVE_HEAD(&sc->rx.active, next);
sys/arm/ti/cpsw/if_cpsw.c
1631
STAILQ_INSERT_TAIL(&sc->rx.avail, slot, next);
sys/arm/ti/cpsw/if_cpsw.c
1730
struct cpsw_slot *first_new_slot, *last_old_slot, *next, *slot;
sys/arm/ti/cpsw/if_cpsw.c
1735
last_old_slot = STAILQ_LAST(&sc->rx.active, cpsw_slot, next);
sys/arm/ti/cpsw/if_cpsw.c
1769
if ((next = STAILQ_NEXT(slot, next)) != NULL)
sys/arm/ti/cpsw/if_cpsw.c
1770
bd.next = cpsw_cpdma_bd_paddr(sc, next);
sys/arm/ti/cpsw/if_cpsw.c
1772
bd.next = 0;
sys/arm/ti/cpsw/if_cpsw.c
1781
STAILQ_REMOVE_HEAD(&sc->rx.avail, next);
sys/arm/ti/cpsw/if_cpsw.c
1782
STAILQ_INSERT_TAIL(&sc->rx.active, slot, next);
sys/arm/ti/cpsw/if_cpsw.c
1841
struct cpsw_slot *first_new_slot, *last, *last_old_slot, *next, *slot;
sys/arm/ti/cpsw/if_cpsw.c
1848
last_old_slot = STAILQ_LAST(&sc->swsc->tx.active, cpsw_slot, next);
sys/arm/ti/cpsw/if_cpsw.c
1911
next = STAILQ_NEXT(slot, next);
sys/arm/ti/cpsw/if_cpsw.c
1912
bd.next = cpsw_cpdma_bd_paddr(sc->swsc, next);
sys/arm/ti/cpsw/if_cpsw.c
1914
bd.next = 0;
sys/arm/ti/cpsw/if_cpsw.c
1928
STAILQ_REMOVE_HEAD(&sc->swsc->tx.avail, next);
sys/arm/ti/cpsw/if_cpsw.c
1929
STAILQ_INSERT_TAIL(&sc->swsc->tx.active, slot, next);
sys/arm/ti/cpsw/if_cpsw.c
1934
next = STAILQ_NEXT(slot, next);
sys/arm/ti/cpsw/if_cpsw.c
1935
bd.next = cpsw_cpdma_bd_paddr(sc->swsc, next);
sys/arm/ti/cpsw/if_cpsw.c
1937
bd.next = 0;
sys/arm/ti/cpsw/if_cpsw.c
1948
STAILQ_REMOVE_HEAD(&sc->swsc->tx.avail, next);
sys/arm/ti/cpsw/if_cpsw.c
1949
STAILQ_INSERT_TAIL(&sc->swsc->tx.active, slot, next);
sys/arm/ti/cpsw/if_cpsw.c
2018
STAILQ_REMOVE_HEAD(&sc->tx.active, next);
sys/arm/ti/cpsw/if_cpsw.c
2019
STAILQ_INSERT_TAIL(&sc->tx.avail, slot, next);
sys/arm/ti/cpsw/if_cpsw.c
2029
if (slot != NULL && bd.next != 0 && (bd.flags &
sys/arm/ti/cpsw/if_cpsw.c
2067
struct mbuf *received, *next;
sys/arm/ti/cpsw/if_cpsw.c
2077
next = received->m_nextpkt;
sys/arm/ti/cpsw/if_cpsw.c
2082
received = next;
sys/arm/ti/cpsw/if_cpsw.c
431
cpsw_cpdma_bd_paddr(sc, slot), bd.next);
sys/arm/ti/cpsw/if_cpsw.c
464
STAILQ_FOREACH(slot, q, next) {
sys/arm/ti/cpsw/if_cpsw.c
494
STAILQ_INSERT_TAIL(&sc->avail, slot, next);
sys/arm/ti/cpsw/if_cpsw.c
516
STAILQ_REMOVE_HEAD(&sc->avail, next);
sys/arm/ti/cpsw/if_cpsw.c
517
STAILQ_INSERT_TAIL(&queue->avail, slot, next);
sys/arm/ti/cpsw/if_cpswreg.h
200
volatile uint32_t next;
sys/arm/ti/cpsw/if_cpswvar.h
58
STAILQ_ENTRY(cpsw_slot) next;
sys/arm/ti/ti_sysc.c
127
TAILQ_ENTRY(clk_list) next;
sys/arm/ti/ti_sysc.c
240
TAILQ_FOREACH_SAFE(clkp, &sc->clk_list, next, clkp_tmp) {
sys/arm/ti/ti_sysc.c
258
TAILQ_FOREACH_SAFE(clkp, &sc->clk_list, next, clkp_tmp) {
sys/arm/ti/ti_sysc.c
418
TAILQ_INSERT_TAIL(&sc->clk_list, clkp, next);
sys/arm64/acpica/acpi_iort.c
209
TAILQ_FOREACH(node, &pci_nodes, next) {
sys/arm64/acpica/acpi_iort.c
234
TAILQ_FOREACH(node, &named_nodes, next) {
sys/arm64/acpica/acpi_iort.c
340
TAILQ_INSERT_TAIL(&pci_nodes, node, next);
sys/arm64/acpica/acpi_iort.c
346
TAILQ_INSERT_TAIL(&smmu_nodes, node, next);
sys/arm64/acpica/acpi_iort.c
352
TAILQ_INSERT_TAIL(&smmu_nodes, node, next);
sys/arm64/acpica/acpi_iort.c
356
TAILQ_INSERT_TAIL(&its_groups, node, next);
sys/arm64/acpica/acpi_iort.c
369
TAILQ_INSERT_TAIL(&named_nodes, node, next);
sys/arm64/acpica/acpi_iort.c
390
TAILQ_FOREACH(np, &smmu_nodes, next) {
sys/arm64/acpica/acpi_iort.c
398
TAILQ_FOREACH(np, &its_groups, next) {
sys/arm64/acpica/acpi_iort.c
423
TAILQ_FOREACH(node, &pci_nodes, next)
sys/arm64/acpica/acpi_iort.c
426
TAILQ_FOREACH(node, &smmu_nodes, next)
sys/arm64/acpica/acpi_iort.c
429
TAILQ_FOREACH(node, &named_nodes, next)
sys/arm64/acpica/acpi_iort.c
452
TAILQ_FOREACH(its_node, &its_groups, next) {
sys/arm64/acpica/acpi_iort.c
508
TAILQ_FOREACH(its_node, &its_groups, next) {
sys/arm64/acpica/acpi_iort.c
597
TAILQ_FOREACH(its_node, &its_groups, next) {
sys/arm64/acpica/acpi_iort.c
92
TAILQ_ENTRY(iort_node) next; /* next entry with same type */
sys/arm64/arm64/cpu_feat.c
101
goto next;
sys/arm64/arm64/cpu_feat.c
144
next:
sys/arm64/arm64/cpu_feat.c
88
goto next;
sys/arm64/arm64/cpu_feat.c
93
goto next;
sys/arm64/arm64/identcpu.c
2992
goto next;
sys/arm64/arm64/identcpu.c
3007
next:
sys/arm64/arm64/pmap.c
418
SYSCTL_INT(_vm_pmap_asid, OID_AUTO, next, CTLFLAG_RD, &asids.asid_next, 0,
sys/arm64/arm64/pmap.c
426
SYSCTL_INT(_vm_pmap_vmid, OID_AUTO, next, CTLFLAG_RD, &vmids.asid_next, 0,
sys/arm64/arm64/undefined.c
201
goto next; /* Handled, but does nothing */
sys/arm64/arm64/undefined.c
242
next:
sys/arm64/broadcom/genet/if_genet.c
1499
for (i = q->next; q->queued > 0 && total > 0;
sys/arm64/broadcom/genet/if_genet.c
1518
q->next = i;
sys/arm64/broadcom/genet/if_genet.c
153
u_int next;
sys/arm64/iommu/iommu.c
232
LIST_FOREACH(entry, &iommu_list, next) {
sys/arm64/iommu/iommu.c
438
LIST_INSERT_HEAD(&iommu_list, entry, next);
sys/arm64/iommu/iommu.c
453
LIST_FOREACH_SAFE(entry, &iommu_list, next, tmp) {
sys/arm64/iommu/iommu.c
455
LIST_REMOVE(entry, next);
sys/arm64/iommu/iommu.c
477
LIST_FOREACH(entry, &iommu_list, next) {
sys/arm64/iommu/iommu.c
78
LIST_ENTRY(iommu_entry) next;
sys/arm64/iommu/smmu.c
1726
LIST_INSERT_HEAD(&unit->domain_list, domain, next);
sys/arm64/iommu/smmu.c
1751
LIST_REMOVE(domain, next);
sys/arm64/iommu/smmu.c
1815
LIST_INSERT_HEAD(&domain->ctx_list, ctx, next);
sys/arm64/iommu/smmu.c
1884
LIST_REMOVE(ctx, next);
sys/arm64/iommu/smmu.c
1901
LIST_FOREACH(domain, &unit->domain_list, next) {
sys/arm64/iommu/smmu.c
1902
LIST_FOREACH(ctx, &domain->ctx_list, next) {
sys/arm64/iommu/smmu.c
1927
LIST_FOREACH(domain, &unit->domain_list, next) {
sys/arm64/iommu/smmu.c
1929
LIST_FOREACH(ctx, &domain->ctx_list, next) {
sys/arm64/iommu/smmuvar.h
47
LIST_ENTRY(smmu_unit) next;
sys/arm64/iommu/smmuvar.h
55
LIST_ENTRY(smmu_domain) next;
sys/arm64/iommu/smmuvar.h
65
LIST_ENTRY(smmu_ctx) next;
sys/arm64/spe/arm_spe_backend.c
236
TAILQ_FOREACH(thr, &ctx->threads, next) {
sys/arm64/spe/arm_spe_backend.c
307
TAILQ_FOREACH(thr, &ctx->threads, next) {
sys/arm64/spe/arm_spe_backend.c
596
TAILQ_FOREACH(thr, &ctx->threads, next) {
sys/arm64/spe/arm_spe_backend.c
660
TAILQ_FOREACH(thr, &ctx->threads, next) {
sys/arm64/spe/arm_spe_backend.c
722
STAILQ_REMOVE_HEAD(&sc->pending, next);
sys/arm64/spe/arm_spe_dev.c
292
STAILQ_INSERT_TAIL(&info->sc->pending, queue, next);
sys/arm64/spe/arm_spe_dev.h
139
STAILQ_ENTRY(arm_spe_queue) next;
sys/cam/ctl/ctl_ha.c
213
int error, flags, next;
sys/cam/ctl/ctl_ha.c
218
next = wire_hdr.length;
sys/cam/ctl/ctl_ha.c
220
next = sizeof(wire_hdr);
sys/cam/ctl/ctl_ha.c
222
while (sbavail(&so->so_rcv) < next || softc->ha_disconnect) {
sys/cam/ctl/ctl_ha.c
228
so->so_rcv.sb_lowat = next;
sys/cam/ctl/scsi_ctl.c
780
next:
sys/cam/ctl/scsi_ctl.c
827
goto next;
sys/cddl/boot/zfs/zfssubr.c
1427
int current, next, i, c, n;
sys/cddl/boot/zfs/zfssubr.c
1480
next = tgts[current];
sys/cddl/boot/zfs/zfssubr.c
1483
tgts[current] = next;
sys/cddl/boot/zfs/zfssubr.c
1530
for (next = tgts[current] + 1;
sys/cddl/boot/zfs/zfssubr.c
1531
next < rm->rm_cols &&
sys/cddl/boot/zfs/zfssubr.c
1532
rm->rm_col[next].rc_error != 0; next++)
sys/cddl/boot/zfs/zfssubr.c
1535
ASSERT(next <= tgts[current + 1]);
sys/cddl/boot/zfs/zfssubr.c
1540
if (next != tgts[current + 1])
sys/cddl/dev/dtrace/dtrace_debug.c
100
if (d->first < d->next) {
sys/cddl/dev/dtrace/dtrace_debug.c
103
count = (uintptr_t) d->next - (uintptr_t) d->first;
sys/cddl/dev/dtrace/dtrace_debug.c
105
for (p = d->first; p < d->next; p++)
sys/cddl/dev/dtrace/dtrace_debug.c
107
} else if (d->first > d->next) {
sys/cddl/dev/dtrace/dtrace_debug.c
115
count += (uintptr_t) d->next - (uintptr_t) d->bufr;
sys/cddl/dev/dtrace/dtrace_debug.c
117
for (p = d->bufr; p < d->next; p++)
sys/cddl/dev/dtrace/dtrace_debug.c
122
d->next = d->bufr;
sys/cddl/dev/dtrace/dtrace_debug.c
158
*d->next++ = c;
sys/cddl/dev/dtrace/dtrace_debug.c
160
if (d->next == d->last)
sys/cddl/dev/dtrace/dtrace_debug.c
161
d->next = d->bufr;
sys/cddl/dev/dtrace/dtrace_debug.c
163
*(d->next) = '\0';
sys/cddl/dev/dtrace/dtrace_debug.c
165
if (d->next == d->first)
sys/cddl/dev/dtrace/dtrace_debug.c
41
char *next;
sys/cddl/dev/dtrace/dtrace_debug.c
75
d->next = d->bufr;
sys/cddl/dev/dtrace/dtrace_vtime.c
82
dtrace_vtime_switch(kthread_t *next)
sys/cddl/dev/dtrace/dtrace_vtime.c
95
if (next != NULL)
sys/cddl/dev/dtrace/dtrace_vtime.c
96
next->t_dtrace_start = ts;
sys/cddl/dev/fbt/fbt.c
227
fbt_probe_t *hash, *hashprev, *next;
sys/cddl/dev/fbt/fbt.c
234
if ((next = fbt->fbtp_tracenext) != NULL)
sys/cddl/dev/fbt/fbt.c
235
next->fbtp_hashnext = hash->fbtp_hashnext;
sys/cddl/dev/fbt/fbt.c
237
next = hash->fbtp_hashnext;
sys/cddl/dev/fbt/fbt.c
239
hashprev->fbtp_hashnext = next;
sys/cddl/dev/fbt/fbt.c
241
fbt_probetab[ndx] = next;
sys/cddl/dev/fbt/fbt.c
244
for (next = hash; next->fbtp_tracenext != NULL;
sys/cddl/dev/fbt/fbt.c
245
next = next->fbtp_tracenext) {
sys/cddl/dev/fbt/fbt.c
246
if (fbt == next->fbtp_tracenext) {
sys/cddl/dev/fbt/fbt.c
247
next->fbtp_tracenext =
sys/cddl/dev/fbt/fbt.c
262
fbt_probe_t *fbt = parg, *next;
sys/cddl/dev/fbt/fbt.c
269
next = fbt->fbtp_probenext;
sys/cddl/dev/fbt/fbt.c
271
fbt = next;
sys/cddl/dev/kinst/trampoline.c
116
TAILQ_INSERT_HEAD(&kinst_trampchunks, chunk, next);
sys/cddl/dev/kinst/trampoline.c
126
TAILQ_REMOVE(&kinst_trampchunks, chunk, next);
sys/cddl/dev/kinst/trampoline.c
143
TAILQ_FOREACH(chunk, &kinst_trampchunks, next) {
sys/cddl/dev/kinst/trampoline.c
203
TAILQ_FOREACH(chunk, &kinst_trampchunks, next) {
sys/cddl/dev/kinst/trampoline.c
341
TAILQ_FOREACH_SAFE(chunk, &kinst_trampchunks, next, tmp)
sys/cddl/dev/kinst/trampoline.c
348
TAILQ_FOREACH_SAFE(chunk, &kinst_trampchunks, next, tmp)
sys/cddl/dev/kinst/trampoline.c
42
TAILQ_ENTRY(trampchunk) next;
sys/compat/linux/linux_futex.c
1030
if (fetch_robust_entry(&entry, PTRIN(&head->list.next), &pi))
sys/compat/linux/linux_futex.c
1042
error = fetch_robust_entry(&next_entry, PTRIN(&entry->next),
sys/compat/linux/linux_futex.h
82
l_uintptr_t next;
sys/compat/linux/linux_ioctl.c
2729
vc->next = PTRIN(lvc->next); /* possible pointer size conversion */
sys/compat/linux/linux_ioctl.c
2810
(*ppvc)->next = NULL;
sys/compat/linux/linux_ioctl.c
2821
ppvc_next = &((*ppvc)->next);
sys/compat/linux/linux_ioctl.c
2883
ppvc = &((*ppvc)->next);
sys/compat/linux/linux_ioctl.c
2884
plvc = PTRIN(((struct l_video_clip *) plvc)->next);
sys/compat/linux/linux_socket.c
1532
goto next;
sys/compat/linux/linux_socket.c
1559
next:
sys/compat/linux/linux_videodev2_compat.h
43
l_uintptr_t next;
sys/compat/linux/linux_videodev_compat.h
26
l_uintptr_t next;
sys/compat/linuxkpi/common/include/linux/list.h
104
struct list_head *next = head->next;
sys/compat/linuxkpi/common/include/linux/list.h
106
return ((next == head) && (next == head->prev));
sys/compat/linuxkpi/common/include/linux/list.h
110
__list_del(struct list_head *prev, struct list_head *next)
sys/compat/linuxkpi/common/include/linux/list.h
112
next->prev = prev;
sys/compat/linuxkpi/common/include/linux/list.h
113
WRITE_ONCE(prev->next, next);
sys/compat/linuxkpi/common/include/linux/list.h
120
__list_del(entry->prev, entry->next);
sys/compat/linuxkpi/common/include/linux/list.h
127
__list_del(entry->prev, entry->next);
sys/compat/linuxkpi/common/include/linux/list.h
133
new->next = old->next;
sys/compat/linuxkpi/common/include/linux/list.h
134
new->next->prev = new;
sys/compat/linuxkpi/common/include/linux/list.h
136
new->prev->next = new;
sys/compat/linuxkpi/common/include/linux/list.h
148
struct list_head *next)
sys/compat/linuxkpi/common/include/linux/list.h
151
next->prev = new;
sys/compat/linuxkpi/common/include/linux/list.h
152
new->next = next;
sys/compat/linuxkpi/common/include/linux/list.h
154
prev->next = new;
sys/compat/linuxkpi/common/include/linux/list.h
168
list_entry((ptr)->next, type, member)
sys/compat/linuxkpi/common/include/linux/list.h
177
list_entry(((ptr)->member.next), typeof(*(ptr)), member)
sys/compat/linuxkpi/common/include/linux/list.h
186
for (p = (head)->next; p != (head); p = (p)->next)
sys/compat/linuxkpi/common/include/linux/list.h
189
for (p = (head)->next, n = (p)->next; p != (head); p = n, n = (p)->next)
sys/compat/linuxkpi/common/include/linux/list.h
192
for (p = list_entry((h)->next, typeof(*p), field); &(p)->field != (h); \
sys/compat/linuxkpi/common/include/linux/list.h
193
p = list_entry((p)->field.next, typeof(*p), field))
sys/compat/linuxkpi/common/include/linux/list.h
196
for (p = list_entry((h)->next, typeof(*p), field), \
sys/compat/linuxkpi/common/include/linux/list.h
197
n = list_entry((p)->field.next, typeof(*p), field); &(p)->field != (h);\
sys/compat/linuxkpi/common/include/linux/list.h
198
p = n, n = list_entry(n->field.next, typeof(*n), field))
sys/compat/linuxkpi/common/include/linux/list.h
202
p = list_entry((p)->field.next, typeof(*p), field))
sys/compat/linuxkpi/common/include/linux/list.h
209
for (n = list_entry((pos)->member.next, typeof(*pos), member); \
sys/compat/linuxkpi/common/include/linux/list.h
211
pos = n, n = list_entry(n->member.next, typeof(*n), member))
sys/compat/linuxkpi/common/include/linux/list.h
238
for (p = rcu_dereference((head)->next); \
sys/compat/linuxkpi/common/include/linux/list.h
240
p = rcu_dereference((p)->next))
sys/compat/linuxkpi/common/include/linux/list.h
246
__list_add(new, head, head->next);
sys/compat/linuxkpi/common/include/linux/list.h
283
first->prev->next = last->next;
sys/compat/linuxkpi/common/include/linux/list.h
284
last->next->prev = first->prev;
sys/compat/linuxkpi/common/include/linux/list.h
285
head->prev->next = first;
sys/compat/linuxkpi/common/include/linux/list.h
287
last->next = head;
sys/compat/linuxkpi/common/include/linux/list.h
293
struct list_head *next)
sys/compat/linuxkpi/common/include/linux/list.h
300
first = list->next;
sys/compat/linuxkpi/common/include/linux/list.h
303
prev->next = first;
sys/compat/linuxkpi/common/include/linux/list.h
304
last->next = next;
sys/compat/linuxkpi/common/include/linux/list.h
305
next->prev = last;
sys/compat/linuxkpi/common/include/linux/list.h
312
linux_list_splice(list, head, head->next);
sys/compat/linuxkpi/common/include/linux/list.h
326
linux_list_splice(list, head, head->next);
sys/compat/linuxkpi/common/include/linux/list.h
346
struct hlist_node *next, **pprev;
sys/compat/linuxkpi/common/include/linux/list.h
353
(node)->next = NULL; \
sys/compat/linuxkpi/common/include/linux/list.h
375
WRITE_ONCE(*(n->pprev), n->next);
sys/compat/linuxkpi/common/include/linux/list.h
376
if (n->next != NULL)
sys/compat/linuxkpi/common/include/linux/list.h
377
n->next->pprev = n->pprev;
sys/compat/linuxkpi/common/include/linux/list.h
394
n->next = h->first;
sys/compat/linuxkpi/common/include/linux/list.h
396
h->first->pprev = &n->next;
sys/compat/linuxkpi/common/include/linux/list.h
402
hlist_add_before(struct hlist_node *n, struct hlist_node *next)
sys/compat/linuxkpi/common/include/linux/list.h
405
n->pprev = next->pprev;
sys/compat/linuxkpi/common/include/linux/list.h
406
n->next = next;
sys/compat/linuxkpi/common/include/linux/list.h
407
next->pprev = &n->next;
sys/compat/linuxkpi/common/include/linux/list.h
415
n->next = prev->next;
sys/compat/linuxkpi/common/include/linux/list.h
416
WRITE_ONCE(prev->next, n);
sys/compat/linuxkpi/common/include/linux/list.h
417
n->pprev = &prev->next;
sys/compat/linuxkpi/common/include/linux/list.h
419
if (n->next != NULL)
sys/compat/linuxkpi/common/include/linux/list.h
420
n->next->pprev = &n->next;
sys/compat/linuxkpi/common/include/linux/list.h
435
return !list_empty(head) && (head->next == head->prev);
sys/compat/linuxkpi/common/include/linux/list.h
441
struct list_head *new_first = entry->next;
sys/compat/linuxkpi/common/include/linux/list.h
442
list->next = head->next;
sys/compat/linuxkpi/common/include/linux/list.h
443
list->next->prev = list;
sys/compat/linuxkpi/common/include/linux/list.h
445
entry->next = list;
sys/compat/linuxkpi/common/include/linux/list.h
446
head->next = new_first;
sys/compat/linuxkpi/common/include/linux/list.h
456
(head->next != entry && head != entry))
sys/compat/linuxkpi/common/include/linux/list.h
474
return list->next == head;
sys/compat/linuxkpi/common/include/linux/list.h
494
for (p = (head)->first; p; p = (p)->next)
sys/compat/linuxkpi/common/include/linux/list.h
497
for (p = (head)->first; p && ({ n = (p)->next; 1; }); p = n)
sys/compat/linuxkpi/common/include/linux/list.h
505
pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
sys/compat/linuxkpi/common/include/linux/list.h
508
for (pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member); \
sys/compat/linuxkpi/common/include/linux/list.h
510
pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
sys/compat/linuxkpi/common/include/linux/list.h
514
pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
sys/compat/linuxkpi/common/include/linux/list.h
518
(pos) && ({ n = (pos)->member.next; 1; }); \
sys/compat/linuxkpi/common/include/linux/list.h
91
list->next = list->prev = list;
sys/compat/linuxkpi/common/include/linux/list.h
98
return (head->next == head);
sys/compat/linuxkpi/common/include/linux/llist.h
10
struct llist_node *next;
sys/compat/linuxkpi/common/include/linux/llist.h
32
struct llist_node *first, *next;
sys/compat/linuxkpi/common/include/linux/llist.h
38
next = first->next;
sys/compat/linuxkpi/common/include/linux/llist.h
40
(uintptr_t)first, (uintptr_t)next) == 0);
sys/compat/linuxkpi/common/include/linux/llist.h
51
new->next = first = head->first;
sys/compat/linuxkpi/common/include/linux/llist.h
65
new_last->next = first = head->first;
sys/compat/linuxkpi/common/include/linux/llist.h
87
((n) = (pos)->next, pos); \
sys/compat/linuxkpi/common/include/linux/llist.h
93
(n = llist_entry(pos->member.next, __typeof(*pos), member), pos); \
sys/compat/linuxkpi/common/include/linux/llist.h
99
(pos) = llist_entry((pos)->member.next, __typeof(*(pos)), member))
sys/compat/linuxkpi/common/include/linux/notifier.h
58
struct notifier_block *next;
sys/compat/linuxkpi/common/include/linux/pci.h
329
TAILQ_ENTRY(pci_mmio_region) next;
sys/compat/linuxkpi/common/include/linux/rculist.h
101
n->next = prev->next;
sys/compat/linuxkpi/common/include/linux/rculist.h
102
n->pprev = &prev->next;
sys/compat/linuxkpi/common/include/linux/rculist.h
104
if (n->next)
sys/compat/linuxkpi/common/include/linux/rculist.h
105
n->next->pprev = &n->next;
sys/compat/linuxkpi/common/include/linux/rculist.h
118
struct hlist_node *next = n->next;
sys/compat/linuxkpi/common/include/linux/rculist.h
121
WRITE_ONCE(*pprev, next);
sys/compat/linuxkpi/common/include/linux/rculist.h
122
if (next)
sys/compat/linuxkpi/common/include/linux/rculist.h
123
next->pprev = pprev;
sys/compat/linuxkpi/common/include/linux/rculist.h
131
n->next = first;
sys/compat/linuxkpi/common/include/linux/rculist.h
135
first->pprev = &n->next;
sys/compat/linuxkpi/common/include/linux/rculist.h
37
#define list_next_rcu(head) (*((struct list_head **)(&(head)->next)))
sys/compat/linuxkpi/common/include/linux/rculist.h
41
for (pos = list_entry_rcu((head)->next, typeof(*(pos)), member); \
sys/compat/linuxkpi/common/include/linux/rculist.h
43
pos = list_entry_rcu((pos)->member.next, typeof(*(pos)), member))
sys/compat/linuxkpi/common/include/linux/rculist.h
48
pos = list_entry_rcu((pos)->member.next, typeof(*(pos)), member))
sys/compat/linuxkpi/common/include/linux/rculist.h
55
struct list_head *next)
sys/compat/linuxkpi/common/include/linux/rculist.h
57
new->next = next;
sys/compat/linuxkpi/common/include/linux/rculist.h
60
next->prev = new;
sys/compat/linuxkpi/common/include/linux/rculist.h
66
linux_list_add_rcu(new, head, head->next);
sys/compat/linuxkpi/common/include/linux/rculist.h
76
__list_del_rcu(struct list_head *prev, struct list_head *next)
sys/compat/linuxkpi/common/include/linux/rculist.h
78
next->prev = prev;
sys/compat/linuxkpi/common/include/linux/rculist.h
79
rcu_assign_pointer(list_next_rcu(prev), next);
sys/compat/linuxkpi/common/include/linux/rculist.h
85
__list_del_rcu(entry->prev, entry->next);
sys/compat/linuxkpi/common/include/linux/rculist.h
91
__list_del_rcu(entry->prev, entry->next);
sys/compat/linuxkpi/common/include/linux/rculist.h
95
#define hlist_next_rcu(node) (*((struct hlist_node **)(&(node)->next)))
sys/compat/linuxkpi/common/include/linux/scatterlist.h
233
struct scatterlist *sgl, *next;
sys/compat/linuxkpi/common/include/linux/scatterlist.h
244
next = sg_chain_ptr(&sgl[max_ents - 1]);
sys/compat/linuxkpi/common/include/linux/scatterlist.h
249
next = NULL;
sys/compat/linuxkpi/common/include/linux/scatterlist.h
257
sgl = next;
sys/compat/linuxkpi/common/include/linux/seq_file.h
86
void * (*next) (struct seq_file *m, void *v, off_t *pos);
sys/compat/linuxkpi/common/include/linux/shrinker.h
47
TAILQ_ENTRY(shrinker) next;
sys/compat/linuxkpi/common/include/linux/skbuff.h
105
struct sk_buff *next;
sys/compat/linuxkpi/common/include/linux/skbuff.h
109
struct sk_buff *next;
sys/compat/linuxkpi/common/include/linux/skbuff.h
150
struct sk_buff *next;
sys/compat/linuxkpi/common/include/linux/skbuff.h
540
for ((skb) = (_q)->next; (skb) != (struct sk_buff *)(_q); \
sys/compat/linuxkpi/common/include/linux/skbuff.h
541
(skb) = (skb)->next)
sys/compat/linuxkpi/common/include/linux/skbuff.h
544
for ((skb) = (_q)->next, (tmp) = (skb)->next; \
sys/compat/linuxkpi/common/include/linux/skbuff.h
545
(skb) != (struct sk_buff *)(_q); (skb) = (tmp), (tmp) = (skb)->next)
sys/compat/linuxkpi/common/include/linux/skbuff.h
548
for ((skb) = (_q), (tmp) = ((skb) != NULL) ? (skb)->next ? NULL; \
sys/compat/linuxkpi/common/include/linux/skbuff.h
550
(skb) = (tmp), (tmp) = ((skb) != NULL) ? (skb)->next ? NULL)
sys/compat/linuxkpi/common/include/linux/skbuff.h
556
return (q->next == (const struct sk_buff *)q);
sys/compat/linuxkpi/common/include/linux/skbuff.h
563
return (READ_ONCE(q->next) == (const struct sk_buff *)q);
sys/compat/linuxkpi/common/include/linux/skbuff.h
570
q->prev = q->next = (struct sk_buff *)q;
sys/compat/linuxkpi/common/include/linux/skbuff.h
583
__skb_insert(struct sk_buff *new, struct sk_buff *prev, struct sk_buff *next,
sys/compat/linuxkpi/common/include/linux/skbuff.h
587
SKB_TRACE_FMT(new, "prev %p next %p q %p", prev, next, q);
sys/compat/linuxkpi/common/include/linux/skbuff.h
589
WRITE_ONCE(new->next, next);
sys/compat/linuxkpi/common/include/linux/skbuff.h
590
WRITE_ONCE(((struct sk_buff_head_l *)next)->prev, new);
sys/compat/linuxkpi/common/include/linux/skbuff.h
591
WRITE_ONCE(((struct sk_buff_head_l *)prev)->next, new);
sys/compat/linuxkpi/common/include/linux/skbuff.h
601
__skb_insert(new, skb, ((struct sk_buff_head_l *)skb)->next, q);
sys/compat/linuxkpi/common/include/linux/skbuff.h
637
skb = q->next;
sys/compat/linuxkpi/common/include/linux/skbuff.h
665
n = skb->next;
sys/compat/linuxkpi/common/include/linux/skbuff.h
669
WRITE_ONCE(p->next, n);
sys/compat/linuxkpi/common/include/linux/skbuff.h
670
skb->prev = skb->next = NULL;
sys/compat/linuxkpi/common/include/linux/skbuff.h
775
b = from->next;
sys/compat/linuxkpi/common/include/linux/skbuff.h
779
WRITE_ONCE(((struct sk_buff_head_l *)p)->next, b);
sys/compat/linuxkpi/common/include/linux/skbuff.h
780
WRITE_ONCE(e->next, n);
sys/compat/linuxkpi/common/include/linux/skbuff.h
793
___skb_queue_splice(from, (struct sk_buff *)to, to->next);
sys/compat/linuxkpi/common/include/linux/skbuff.h
955
skb->next = NULL;
sys/compat/linuxkpi/common/include/linux/types.h
83
struct list_head *next;
sys/compat/linuxkpi/common/src/linux_80211.c
2093
struct list_head *le, *next;
sys/compat/linuxkpi/common/src/linux_80211.c
2097
list_for_each_safe(le, next, &lhw->mc_list.addr_list) {
sys/compat/linuxkpi/common/src/linux_80211.c
7288
struct lkpi_chanctx *lchanctx, *next;
sys/compat/linuxkpi/common/src/linux_80211.c
7291
list_for_each_entry_safe(lchanctx, next, &lhw->lchanctx_list, entry) {
sys/compat/linuxkpi/common/src/linux_80211.c
7303
struct lkpi_chanctx *lchanctx, *next;
sys/compat/linuxkpi/common/src/linux_80211.c
7305
list_for_each_entry_safe(lchanctx, next, &lhw->lchanctx_list_reserved, entry) {
sys/compat/linuxkpi/common/src/linux_devres.c
115
struct devres *dr, *next;
sys/compat/linuxkpi/common/src/linux_devres.c
121
list_for_each_entry_safe(dr, next, &dev->devres_head, entry) {
sys/compat/linuxkpi/common/src/linux_devres.c
179
struct devres *dr, *next;
sys/compat/linuxkpi/common/src/linux_devres.c
184
list_for_each_entry_safe(dr, next, &dev->devres_head, entry) {
sys/compat/linuxkpi/common/src/linux_pci.c
1050
TAILQ_FOREACH_SAFE(mmio, &pdev->mmio, next, p) {
sys/compat/linuxkpi/common/src/linux_pci.c
1062
TAILQ_REMOVE(&pdev->mmio, mmio, next);
sys/compat/linuxkpi/common/src/linux_pci.c
1378
TAILQ_INSERT_TAIL(&pdev->mmio, mmio, next);
sys/compat/linuxkpi/common/src/linux_pci.c
1446
TAILQ_FOREACH_SAFE(mmio, &pdev->mmio, next, p) {
sys/compat/linuxkpi/common/src/linux_pci.c
1449
TAILQ_REMOVE(&pdev->mmio, mmio, next);
sys/compat/linuxkpi/common/src/linux_pci.c
964
TAILQ_FOREACH_SAFE(mmio, &pdev->mmio, next, p) {
sys/compat/linuxkpi/common/src/linux_pci.c
982
TAILQ_INSERT_TAIL(&pdev->mmio, mmio, next);
sys/compat/linuxkpi/common/src/linux_radix.c
237
struct radix_tree_node *next;
sys/compat/linuxkpi/common/src/linux_radix.c
242
next = node->slots[pos];
sys/compat/linuxkpi/common/src/linux_radix.c
243
if (next == NULL ||
sys/compat/linuxkpi/common/src/linux_radix.c
245
!tag_get(next, tag, pos))) {
sys/compat/linuxkpi/common/src/linux_radix.c
251
node = next;
sys/compat/linuxkpi/common/src/linux_rcu.c
153
struct llist_node *node, *next;
sys/compat/linuxkpi/common/src/linux_rcu.c
158
llist_for_each_safe(node, next, llist_del_all(&head->cb_head)) {
sys/compat/linuxkpi/common/src/linux_schedule.c
276
wait_queue_t *pos, *next;
sys/compat/linuxkpi/common/src/linux_schedule.c
280
list_for_each_entry_safe(pos, next, &wqh->task_list, task_list) {
sys/compat/linuxkpi/common/src/linux_seq_file.c
239
op->next = single_next;
sys/compat/linuxkpi/common/src/linux_seq_file.c
93
p = m->op->next(m, p, ppos);
sys/compat/linuxkpi/common/src/linux_shrinker.c
128
TAILQ_FOREACH(s, &lkpi_shrinkers, next) {
sys/compat/linuxkpi/common/src/linux_shrinker.c
64
TAILQ_INSERT_TAIL(&lkpi_shrinkers, s, next);
sys/compat/linuxkpi/common/src/linux_shrinker.c
74
TAILQ_REMOVE(&lkpi_shrinkers, s, next);
sys/compat/linuxkpi/common/src/linux_skbuff.c
104
skb->prev = skb->next = skb;
sys/compat/linuxkpi/common/src/linux_skbuff.c
412
db_printf("\tnext %p prev %p\n", skb->next, skb->prev);
sys/compat/linuxkpi/common/src/linux_slab.c
169
struct llist_node *freed, *next;
sys/compat/linuxkpi/common/src/linux_slab.c
171
llist_for_each_safe(freed, next, llist_del_all(&c->cache_items))
sys/ddb/db_command.c
251
LIST_FOREACH(c, list, next) {
sys/ddb/db_command.c
262
LIST_INSERT_BEFORE(c, cmd, next);
sys/ddb/db_command.c
268
LIST_INSERT_HEAD(list, cmd, next);
sys/ddb/db_command.c
270
LIST_INSERT_AFTER(last, cmd, next);
sys/ddb/db_command.c
281
LIST_FOREACH(c, list, next) {
sys/ddb/db_command.c
283
LIST_REMOVE(cmd, next);
sys/ddb/db_command.c
336
LIST_FOREACH(cmd, table, next) {
sys/ddb/db_command.c
358
LIST_FOREACH(cmd, table, next) {
sys/ddb/db_command.c
368
LIST_FOREACH(cmd, table, next) {
sys/ddb/ddb.h
135
LIST_ENTRY(db_command) next; /* next entry in the command table */
sys/dev/aac/aac.c
2920
for (ctx = sc->fibctx; ctx; ctx = ctx->next) {
sys/dev/aac/aac.c
3220
int next, current, found;
sys/dev/aac/aac.c
3363
next = (current + 1) % AAC_AIFQ_LENGTH;
sys/dev/aac/aac.c
3364
if (next == 0)
sys/dev/aac/aac.c
3369
for (ctx = sc->fibctx; ctx; ctx = ctx->next) {
sys/dev/aac/aac.c
3370
if (next == ctx->ctx_idx)
sys/dev/aac/aac.c
3373
ctx->ctx_idx = next;
sys/dev/aac/aac.c
3376
sc->aifq_idx = next;
sys/dev/aac/aac.c
3450
for (ctx = sc->fibctx; ctx->next; ctx = ctx->next)
sys/dev/aac/aac.c
3452
ctx->next = fibctx;
sys/dev/aac/aac.c
3464
ctx = ctx->next;
sys/dev/aac/aac.c
3486
for (ctx = sc->fibctx; ctx; ctx = ctx->next) {
sys/dev/aac/aac.c
3491
ctx->prev->next = ctx->next;
sys/dev/aac/aac.c
3492
if (ctx->next)
sys/dev/aac/aac.c
3493
ctx->next->prev = ctx->prev;
sys/dev/aac/aac.c
3530
for (ctx = sc->fibctx; ctx; ctx = ctx->next) {
sys/dev/aac/aacvar.h
304
struct aac_fib_context *next, *prev;
sys/dev/aacraid/aacraid.c
1962
int next, val;
sys/dev/aacraid/aacraid.c
1963
next = pci_read_config(dev, ptr + PCICAP_NEXTPTR, 1);
sys/dev/aacraid/aacraid.c
1967
ptr = next;
sys/dev/aacraid/aacraid.c
2724
for (ctx = sc->fibctx; ctx; ctx = ctx->next) {
sys/dev/aacraid/aacraid.c
3126
int next, current, found;
sys/dev/aacraid/aacraid.c
3261
next = (current + 1) % AAC_AIFQ_LENGTH;
sys/dev/aacraid/aacraid.c
3262
if (next == 0)
sys/dev/aacraid/aacraid.c
3269
for (ctx = sc->fibctx; ctx; ctx = ctx->next) {
sys/dev/aacraid/aacraid.c
3270
if (next == ctx->ctx_idx)
sys/dev/aacraid/aacraid.c
3273
ctx->ctx_idx = next;
sys/dev/aacraid/aacraid.c
3276
sc->aifq_idx = next;
sys/dev/aacraid/aacraid.c
3351
for (ctx = sc->fibctx; ctx->next; ctx = ctx->next)
sys/dev/aacraid/aacraid.c
3353
ctx->next = fibctx;
sys/dev/aacraid/aacraid.c
3365
ctx = ctx->next;
sys/dev/aacraid/aacraid.c
3387
for (ctx = sc->fibctx; ctx; ctx = ctx->next) {
sys/dev/aacraid/aacraid.c
3392
ctx->prev->next = ctx->next;
sys/dev/aacraid/aacraid.c
3393
if (ctx->next)
sys/dev/aacraid/aacraid.c
3394
ctx->next->prev = ctx->prev;
sys/dev/aacraid/aacraid.c
3432
for (ctx = sc->fibctx; ctx; ctx = ctx->next) {
sys/dev/aacraid/aacraid_var.h
312
struct aac_fib_context *next, *prev;
sys/dev/acpi_support/acpi_asus_wmi.c
505
next:
sys/dev/acpi_support/acpi_asus_wmi.c
515
goto next;
sys/dev/acpica/acpi_hpet.c
110
uint32_t next;
sys/dev/acpica/acpi_hpet.c
226
t->next = now + fdiv;
sys/dev/acpica/acpi_hpet.c
232
t->next);
sys/dev/acpica/acpi_hpet.c
240
t->next);
sys/dev/acpica/acpi_hpet.c
243
if ((int32_t)(now - t->next + HPET_MIN_CYCLES) >= 0) {
sys/dev/acpica/acpi_hpet.c
289
t->next = bus_read_4(sc->mem_res, HPET_MAIN_COUNTER) +
sys/dev/acpica/acpi_hpet.c
292
t->next);
sys/dev/acpica/acpi_hpet.c
298
t->next += t->div;
sys/dev/acpica/acpi_hpet.c
300
if ((int32_t)((now + t->div / 2) - t->next) > 0)
sys/dev/acpica/acpi_hpet.c
301
t->next = now + t->div / 2;
sys/dev/acpica/acpi_hpet.c
303
HPET_TIMER_COMPARATOR(t->num), t->next);
sys/dev/acpica/acpi_hpet.c
903
t->next = bus_read_4(sc->mem_res, HPET_MAIN_COUNTER);
sys/dev/acpica/acpi_hpet.c
907
t->next += t->div;
sys/dev/acpica/acpi_hpet.c
911
t->next);
sys/dev/acpica/acpi_hpet.c
916
t->next += sc->freq / 1024;
sys/dev/acpica/acpi_hpet.c
918
t->next);
sys/dev/acpica/acpi_video.c
58
STAILQ_ENTRY(acpi_video_output) next;
sys/dev/acpica/acpi_video.c
605
STAILQ_FOREACH(vn, voqh, vo_unit.next) {
sys/dev/acpica/acpi_video.c
635
STAILQ_INSERT_AFTER(voqh, vp, vo, vo_unit.next);
sys/dev/acpica/acpi_video.c
637
STAILQ_INSERT_TAIL(voqh, vo, vo_unit.next);
sys/dev/acpica/acpi_video.c
762
STAILQ_REMOVE(voqh, vo, acpi_video_output, vo_unit.next);
sys/dev/adlink/adlink.c
112
struct pgstat *next;
sys/dev/adlink/adlink.c
142
pg = sc->next;
sys/dev/adlink/adlink.c
154
pg = pg->next;
sys/dev/adlink/adlink.c
155
sc->next = pg;
sys/dev/adlink/adlink.c
263
pg->next = sc->chunks;
sys/dev/adlink/adlink.c
265
pg->next = pg + 1;
sys/dev/adlink/adlink.c
268
sc->next = sc->chunks;
sys/dev/adlink/adlink.c
306
pg = sc->next = sc->chunks;
sys/dev/adlink/adlink.c
321
while (*(sc->next->sample) == 0)
sys/dev/adlink/adlink.c
333
while (*(sc->next->samp) == 0)
sys/dev/adlink/adlink.c
99
struct pgstat *next;
sys/dev/aic7xxx/aic79xx.c
2043
u_int next;
sys/dev/aic7xxx/aic79xx.c
206
u_int prev, u_int next, u_int tid);
sys/dev/aic7xxx/aic79xx.c
2094
next = SCB_LIST_NULL;
sys/dev/aic7xxx/aic79xx.c
2097
next = ahd_inw_scbram(ahd, SCB_NEXT2);
sys/dev/aic7xxx/aic79xx.c
2100
ahd_outw(ahd, SCB_NEXT2, next);
sys/dev/aic7xxx/aic79xx.c
7602
u_int next;
sys/dev/aic7xxx/aic79xx.c
7609
next = *list_head;
sys/dev/aic7xxx/aic79xx.c
7611
for (scbid = next; !SCBID_IS_NULL(scbid); scbid = next) {
sys/dev/aic7xxx/aic79xx.c
7627
next = ahd_inw_scbram(ahd, SCB_NEXT);
sys/dev/aic7xxx/aic79xx.c
7641
ahd_rem_wscb(ahd, scbid, prev, next, tid);
sys/dev/aic7xxx/aic79xx.c
7644
*list_head = next;
sys/dev/aic7xxx/aic79xx.c
7699
u_int prev, u_int next, u_int tid)
sys/dev/aic7xxx/aic79xx.c
7706
ahd_outw(ahd, SCB_NEXT, next);
sys/dev/aic7xxx/aic79xx.c
7717
if (SCBID_IS_NULL(next)
sys/dev/aic7xxx/aic79xx.c
7722
return (next);
sys/dev/aic7xxx/aic7xxx.c
5362
prev_scb->hscb->next = scb->hscb->tag;
sys/dev/aic7xxx/aic7xxx.c
5367
scb->hscb->next = ahc->next_queued_scb->hscb->tag;
sys/dev/aic7xxx/aic7xxx.c
5396
uint8_t next;
sys/dev/aic7xxx/aic7xxx.c
5507
next = scb->hscb->next;
sys/dev/aic7xxx/aic7xxx.c
5510
scb->hscb->next = next;
sys/dev/aic7xxx/aic7xxx.c
5519
scb->hscb->next = ahc->next_queued_scb->hscb->tag;
sys/dev/aic7xxx/aic7xxx.c
5526
next = ahc_inb(ahc, WAITING_SCBH); /* Start at head of list. */
sys/dev/aic7xxx/aic7xxx.c
5529
while (next != SCB_LIST_NULL) {
sys/dev/aic7xxx/aic7xxx.c
5532
ahc_outb(ahc, SCBPTR, next);
sys/dev/aic7xxx/aic7xxx.c
5544
scb_index, next);
sys/dev/aic7xxx/aic7xxx.c
5572
next = ahc_rem_wscb(ahc, next, prev);
sys/dev/aic7xxx/aic7xxx.c
5575
prev = next;
sys/dev/aic7xxx/aic7xxx.c
5576
next = ahc_inb(ahc, SCB_NEXT);
sys/dev/aic7xxx/aic7xxx.c
5581
prev = next;
sys/dev/aic7xxx/aic7xxx.c
5582
next = ahc_inb(ahc, SCB_NEXT);
sys/dev/aic7xxx/aic7xxx.c
5694
u_int next;
sys/dev/aic7xxx/aic7xxx.c
5700
next = ahc_inb(ahc, DISCONNECTED_SCBH);
sys/dev/aic7xxx/aic7xxx.c
5710
while (next != SCB_LIST_NULL) {
sys/dev/aic7xxx/aic7xxx.c
5713
ahc_outb(ahc, SCBPTR, next);
sys/dev/aic7xxx/aic7xxx.c
5723
if (next == prev) {
sys/dev/aic7xxx/aic7xxx.c
5726
next, prev);
sys/dev/aic7xxx/aic7xxx.c
5733
next =
sys/dev/aic7xxx/aic7xxx.c
5734
ahc_rem_scb_from_disc_list(ahc, prev, next);
sys/dev/aic7xxx/aic7xxx.c
5736
prev = next;
sys/dev/aic7xxx/aic7xxx.c
5737
next = ahc_inb(ahc, SCB_NEXT);
sys/dev/aic7xxx/aic7xxx.c
5742
prev = next;
sys/dev/aic7xxx/aic7xxx.c
5743
next = ahc_inb(ahc, SCB_NEXT);
sys/dev/aic7xxx/aic7xxx.c
5758
u_int next;
sys/dev/aic7xxx/aic7xxx.c
5761
next = ahc_inb(ahc, SCB_NEXT);
sys/dev/aic7xxx/aic7xxx.c
5769
ahc_outb(ahc, SCB_NEXT, next);
sys/dev/aic7xxx/aic7xxx.c
5771
ahc_outb(ahc, DISCONNECTED_SCBH, next);
sys/dev/aic7xxx/aic7xxx.c
5773
return (next);
sys/dev/aic7xxx/aic7xxx.c
5803
u_int curscb, next;
sys/dev/aic7xxx/aic7xxx.c
5811
next = ahc_inb(ahc, SCB_NEXT);
sys/dev/aic7xxx/aic7xxx.c
5821
ahc_outb(ahc, WAITING_SCBH, next);
sys/dev/aic7xxx/aic7xxx.c
5834
ahc_outb(ahc, SCB_NEXT, next);
sys/dev/aic7xxx/aic7xxx.c
5841
return next;
sys/dev/aic7xxx/aic7xxx.h
488
/*31*/ uint8_t next; /*
sys/dev/aic7xxx/aic7xxx_inline.h
435
q_hscb->next = scb->hscb->tag;
sys/dev/aic7xxx/aic7xxx_inline.h
454
|| scb->hscb->next == SCB_LIST_NULL)
sys/dev/aic7xxx/aic7xxx_inline.h
456
scb->hscb->tag, scb->hscb->next);
sys/dev/aq/aq_device.h
98
SLIST_ENTRY(aq_vlan_tag) next;
sys/dev/ath/ath_hal/ah.h
1339
struct ath_desc *next, uint64_t tsf,
sys/dev/ath/ath_hal/ah_regdomain.c
761
int i, j, next, freq;
sys/dev/ath/ath_hal/ah_regdomain.c
763
next = 0;
sys/dev/ath/ath_hal/ah_regdomain.c
773
if (next >= N(AH_PRIVATE(ah)->ah_channels)) {
sys/dev/ath/ath_hal/ah_regdomain.c
790
__func__, next, c->ic_freq, c->ic_flags, freq);
sys/dev/ath/ath_hal/ah_regdomain.c
792
ic = &AH_PRIVATE(ah)->ah_channels[next];
sys/dev/ath/ath_hal/ah_regdomain.c
800
c->ic_devdata = next;
sys/dev/ath/ath_hal/ah_regdomain.c
801
next++;
sys/dev/ath/ath_hal/ah_regdomain.c
804
AH_PRIVATE(ah)->ah_nchan = next;
sys/dev/ath/ath_hal/ah_regdomain.c
806
__func__, nchans, next);
sys/dev/ath/if_ath.c
3327
struct mbuf *next;
sys/dev/ath/if_ath.c
3518
next = m->m_nextpkt;
sys/dev/ath/if_ath.c
3549
if (next != NULL) {
sys/dev/ath/if_ath.c
3560
ieee80211_free_mbuf(next);
sys/dev/ath/if_ath.c
3563
m = next;
sys/dev/ath/if_ath_rx_edma.c
553
struct ath_buf *bf, *next;
sys/dev/ath/if_ath_rx_edma.c
579
TAILQ_FOREACH_SAFE(bf, &rxlist, bf_list, next) {
sys/dev/ath/if_ath_tx.c
257
struct ath_buf *bf, *next;
sys/dev/ath/if_ath_tx.c
261
TAILQ_FOREACH_SAFE(bf, frags, bf_list, next) {
sys/dev/ath/if_ath_tx.c
3594
goto next;
sys/dev/ath/if_ath_tx.c
3618
next:
sys/dev/ath/if_ath_tx.c
5748
struct ath_tid *tid, *next, *last;
sys/dev/ath/if_ath_tx.c
5793
TAILQ_FOREACH_SAFE(tid, &txq->axq_tidq, axq_qelem, next) {
sys/dev/atkbdc/psm.c
3036
goto next;
sys/dev/atkbdc/psm.c
3134
next:
sys/dev/atkbdc/psm.c
5119
goto next;
sys/dev/atkbdc/psm.c
5124
goto next;
sys/dev/atkbdc/psm.c
5132
goto next;
sys/dev/atkbdc/psm.c
5182
goto next;
sys/dev/atkbdc/psm.c
5234
next:
sys/dev/bhnd/bhndb/bhndb.c
473
const struct bhndb_hw *next, *hw_table;
sys/dev/bhnd/bhndb/bhndb.c
477
for (next = hw_table; next->hw_reqs != NULL; next++) {
sys/dev/bhnd/bhndb/bhndb.c
478
if (!bhndb_hw_matches(sc, cores, ncores, next))
sys/dev/bhnd/bhndb/bhndb.c
482
*hw = next;
sys/dev/bhnd/nvram/bhnd_nvram_data.c
451
const char *next;
sys/dev/bhnd/nvram/bhnd_nvram_data.c
455
while ((next = bhnd_nvram_data_next(nv, &cookiep))) {
sys/dev/bhnd/nvram/bhnd_nvram_data.c
456
if (strcmp(name, next) == 0)
sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c
100
size_t *next, void **cookiep);
sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c
175
size_t next, off;
sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c
182
next = 0;
sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c
183
while (!(error = bhnd_nvram_tlv_next_record(io, &next, &off, &tag))) {
sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c
364
size_t next;
sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c
379
next = 0;
sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c
380
while ((env = bhnd_nvram_tlv_next_env(tlv, &next, NULL)) != NULL) {
sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c
642
bhnd_nvram_tlv_next_record(struct bhnd_nvram_io *io, size_t *next, size_t
sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c
650
io_offset = *next;
sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c
665
*next = io_offset;
sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c
702
*next = io_offset + parsed_len;
sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c
715
size_t next;
sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c
720
next = 0x0;
sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c
725
error = bhnd_nvram_tlv_next_record(io, &next, NULL, &tag);
sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c
731
BHND_NV_ASSERT(next <= bhnd_nvram_io_getsize(io),
sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c
734
*size = next;
sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c
749
bhnd_nvram_tlv_next_env(struct bhnd_nvram_tlv *tlv, size_t *next,
sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c
761
error = bhnd_nvram_tlv_next_record(tlv->data, next, &offset,
sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c
95
size_t *next, size_t *offset,
sys/dev/bhnd/nvram/bhnd_nvram_datavar.h
199
_macro(_cname, next) \
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1482
const void *next;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1484
next = NULL;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1486
while ((next = bhnd_nvram_val_next(value, next, &len)) != NULL)
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1515
const void *next;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1568
next = NULL;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1569
while ((next = bhnd_nvram_val_next(value, next, &next_len))) {
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1590
error = bhnd_nvram_val_encode_elem(value, next, next_len,
sys/dev/bhnd/nvram/bhnd_nvram_value_fmts.c
635
const char *next;
sys/dev/bhnd/nvram/bhnd_nvram_value_fmts.c
653
next = inp;
sys/dev/bhnd/nvram/bhnd_nvram_value_fmts.c
658
next = (const char *)prev + *len;
sys/dev/bhnd/nvram/bhnd_nvram_value_fmts.c
661
if ((size_t)(next - inp) >= ilen)
sys/dev/bhnd/nvram/bhnd_nvram_value_fmts.c
665
delim = *next;
sys/dev/bhnd/nvram/bhnd_nvram_value_fmts.c
666
next++;
sys/dev/bhnd/nvram/bhnd_nvram_value_fmts.c
667
remain = ilen - (size_t)(next - inp);
sys/dev/bhnd/nvram/bhnd_nvram_value_fmts.c
675
*len = bhnd_nvram_parse_field(&next, remain, delim);
sys/dev/bhnd/nvram/bhnd_nvram_value_fmts.c
677
return (next);
sys/dev/bhnd/nvram/bhnd_nvram_value_fmts.c
788
const char *next;
sys/dev/bhnd/nvram/bhnd_nvram_value_fmts.c
813
next = str;
sys/dev/bhnd/nvram/bhnd_nvram_value_fmts.c
817
next = (const char *)prev + *len;
sys/dev/bhnd/nvram/bhnd_nvram_value_fmts.c
820
if ((size_t)(next - str) >= slen)
sys/dev/bhnd/nvram/bhnd_nvram_value_fmts.c
824
delim = *next;
sys/dev/bhnd/nvram/bhnd_nvram_value_fmts.c
825
next++;
sys/dev/bhnd/nvram/bhnd_nvram_value_fmts.c
826
remain = slen - (size_t)(next - str);
sys/dev/bhnd/nvram/bhnd_nvram_value_fmts.c
834
*len = bhnd_nvram_parse_field(&next, remain, delim);
sys/dev/bhnd/nvram/bhnd_nvram_value_fmts.c
836
return (next);
sys/dev/bhnd/nvram/bhnd_nvram_value_subr.c
474
const u_char *next;
sys/dev/bhnd/nvram/bhnd_nvram_value_subr.c
489
next = (const u_char *)prev + *olen;
sys/dev/bhnd/nvram/bhnd_nvram_value_subr.c
490
offset = (size_t)(next - (const u_char *)inp);
sys/dev/bhnd/nvram/bhnd_nvram_value_subr.c
498
*olen = bhnd_nvram_value_size(next, ilen - offset, itype, 1);
sys/dev/bhnd/nvram/bhnd_nvram_value_subr.c
505
return (next);
sys/dev/bnxt/bnxt_en/bnxt.h
1406
STAILQ_ENTRY(bnxt_filter_info) next;
sys/dev/bnxt/bnxt_en/bnxt.h
544
SLIST_ENTRY(bnxt_vlan_tag) next;
sys/dev/bnxt/bnxt_en/bnxt.h
919
SLIST_ENTRY(bnxt_softc_list) next;
sys/dev/bnxt/bnxt_en/bnxt_hwrm.c
2211
SLIST_FOREACH(tag, &vnic->vlan_tags, next) {
sys/dev/bnxt/bnxt_en/bnxt_hwrm.c
2284
SLIST_FOREACH(tag, &vnic->vlan_tags, next) {
sys/dev/bnxt/bnxt_en/bnxt_log.c
128
char *next;
sys/dev/bnxt/bnxt_en/bnxt_log.c
134
next = memchr(text, '\n', text_len);
sys/dev/bnxt/bnxt_en/bnxt_log.c
135
if (next)
sys/dev/bnxt/bnxt_en/bnxt_log.c
136
text_len = next - text;
sys/dev/bnxt/bnxt_en/bnxt_sysctl.c
1313
char *next;
sys/dev/bnxt/bnxt_en/bnxt_sysctl.c
1332
for (type = 0, next = buf, p = strsep(&next, " ,"); p;
sys/dev/bnxt/bnxt_en/bnxt_sysctl.c
1333
p = strsep(&next, " ,")) {
sys/dev/bnxt/bnxt_en/if_bnxt.c
1779
SLIST_FOREACH(sc, &pf_list, next) {
sys/dev/bnxt/bnxt_en/if_bnxt.c
2572
SLIST_INSERT_HEAD(&pf_list, &softc->list, next);
sys/dev/bnxt/bnxt_en/if_bnxt.c
3008
SLIST_REMOVE(&pf_list, &softc->list, bnxt_softc_list, next);
sys/dev/bnxt/bnxt_en/if_bnxt.c
3031
SLIST_FOREACH_SAFE(tag, &softc->vnic_info.vlan_tags, next, tmp)
sys/dev/bnxt/bnxt_en/if_bnxt.c
3545
struct ifmedia_entry *next;
sys/dev/bnxt/bnxt_en/if_bnxt.c
3567
LIST_FOREACH(next, &(iflib_get_media(ctx)->ifm_list), ifm_list) {
sys/dev/bnxt/bnxt_en/if_bnxt.c
3568
if (ifmedia_baudrate(next->ifm_media) == target_baudrate) {
sys/dev/bnxt/bnxt_en/if_bnxt.c
3569
active_media = next->ifm_media;
sys/dev/bnxt/bnxt_en/if_bnxt.c
4182
SLIST_INSERT_HEAD(&softc->vnic_info.vlan_tags, new_tag, next);
sys/dev/bnxt/bnxt_en/if_bnxt.c
4191
SLIST_FOREACH(vlan_tag, &softc->vnic_info.vlan_tags, next) {
sys/dev/bnxt/bnxt_en/if_bnxt.c
4194
bnxt_vlan_tag, next);
sys/dev/bnxt/bnxt_re/ib_verbs.c
1358
wr = wr->next;
sys/dev/bnxt/bnxt_re/ib_verbs.c
3420
wr = wr->next;
sys/dev/bnxt/bnxt_re/ib_verbs.c
3531
wr = wr->next;
sys/dev/bnxt/bnxt_re/ib_verbs.c
3571
wr = wr->next;
sys/dev/bnxt/bnxt_re/ib_verbs.c
3637
wr = wr->next;
sys/dev/bnxt/bnxt_re/ib_verbs.c
4395
rwr.next = NULL;
sys/dev/bnxt/bnxt_re/ib_verbs.c
4408
swr->next = NULL;
sys/dev/bnxt/bnxt_re/qplib_fp.c
775
int i, rc = 0, next;
sys/dev/bnxt/bnxt_re/qplib_fp.c
786
next = srq->start_idx;
sys/dev/bnxt/bnxt_re/qplib_fp.c
787
srq->start_idx = srq->swq[next].next_idx;
sys/dev/bnxt/bnxt_re/qplib_fp.c
805
srqe->wr_id |= cpu_to_le32((u32)next);
sys/dev/bnxt/bnxt_re/qplib_fp.c
806
srq->swq[next].wr_id = wqe->wr_id;
sys/dev/bwi/if_bwi.c
2609
goto next;
sys/dev/bwi/if_bwi.c
2627
goto next;
sys/dev/bwi/if_bwi.c
2663
next:
sys/dev/bxe/bxe.c
5627
struct mbuf *next;
sys/dev/bxe/bxe.c
5665
while ((next = drbr_peek(ifp, tx_br)) != NULL) {
sys/dev/bxe/bxe.c
5674
m_freem(next);
sys/dev/bxe/bxe.c
5689
rc = bxe_tx_encap(fp, &next);
sys/dev/bxe/bxe.c
5692
if (next != NULL) {
sys/dev/bxe/bxe.c
5695
drbr_putback(ifp, tx_br, next);
sys/dev/bxe/bxe.c
5709
ether_bpf_mtap_if(ifp, next);
sys/dev/bxe/ecore_init.h
602
uint64_t next;
sys/dev/bxe/ecore_init_ops.h
952
t2[i].next = (uint64_t)(t2_mapping +
sys/dev/bxe/ecore_sp.c
1358
list_entry((pos)->member.next, typeof(*(pos)), member)
sys/dev/bxe/ecore_sp.c
654
uint8_t *next = base;
sys/dev/bxe/ecore_sp.c
667
ECORE_MEMCPY(next, &pos->u, size);
sys/dev/bxe/ecore_sp.c
670
counter, next);
sys/dev/bxe/ecore_sp.c
671
next += stride + size;
sys/dev/bxe/ecore_sp.h
277
struct _ecore_list_entry_t *next, *prev;
sys/dev/bxe/ecore_sp.h
308
(cast *)((&((_elem)->_link))->next)
sys/dev/bxe/ecore_sp.h
314
(_elem)->next = (_list)->head; \
sys/dev/bxe/ecore_sp.h
327
(_elem)->next = (ecore_list_entry_t *)0; \
sys/dev/bxe/ecore_sp.h
330
(_list)->tail->next = (_elem); \
sys/dev/bxe/ecore_sp.h
341
(_list1)->tail->next = (_list2)->head; \
sys/dev/bxe/ecore_sp.h
359
(_list)->head = (_list)->head->next; \
sys/dev/bxe/ecore_sp.h
371
(_list)->tail->next = (ecore_list_entry_t *)0; \
sys/dev/bxe/ecore_sp.h
378
(_elem)->prev->next = (_elem)->next; \
sys/dev/bxe/ecore_sp.h
379
(_elem)->next->prev = (_elem)->prev; \
sys/dev/cas/if_cas.c
2761
next:
sys/dev/cas/if_cas.c
2775
goto next;
sys/dev/clk/xilinx/zynqmp_clock.c
385
TAILQ_INSERT_TAIL(&clk_list, clk, next);
sys/dev/clk/xilinx/zynqmp_clock.c
394
TAILQ_INSERT_TAIL(&clk_list, clk, next);
sys/dev/clk/xilinx/zynqmp_clock.c
397
TAILQ_FOREACH_SAFE(clk, &clk_list, next, tmp) {
sys/dev/clk/xilinx/zynqmp_clock.c
408
TAILQ_FOREACH(tmp2, &clk_list, next) {
sys/dev/clk/xilinx/zynqmp_clock.c
433
TAILQ_FOREACH_SAFE(clk, &clk_list, next, tmp) {
sys/dev/clk/xilinx/zynqmp_clock.c
447
TAILQ_REMOVE(&clk_list, clk, next);
sys/dev/clk/xilinx/zynqmp_clock.c
88
TAILQ_ENTRY(zynqmp_clk) next;
sys/dev/cxgbe/iw_cxgbe/cm.c
2748
container_of(port_info->lep_list.next,
sys/dev/cxgbe/iw_cxgbe/cm.c
448
tmp = err_cqe_list.next;
sys/dev/cxgbe/iw_cxgbe/cm.c
450
tmp->next = tmp->prev = NULL;
sys/dev/cxgbe/iw_cxgbe/qp.c
905
wr = wr->next;
sys/dev/cxgbe/iw_cxgbe/qp.c
973
wr = wr->next;
sys/dev/cxgbe/iw_cxgbe/resource.c
106
entry = list_entry(uctx->cqids.next, struct c4iw_qid_list,
sys/dev/cxgbe/iw_cxgbe/resource.c
176
entry = list_entry(uctx->qpids.next, struct c4iw_qid_list,
sys/dev/cxgbe/offload.h
108
union etid_entry *next;
sys/dev/cxgbe/offload.h
69
union aopen_entry *next;
sys/dev/cxgbe/t4_l2t.c
100
e->next = NULL;
sys/dev/cxgbe/t4_l2t.c
135
for (p = &d->l2tab[e->hash].first; *p; p = &(*p)->next) {
sys/dev/cxgbe/t4_l2t.c
137
*p = e->next;
sys/dev/cxgbe/t4_l2t.c
138
e->next = NULL;
sys/dev/cxgbe/t4_l2t.c
97
for (p = &d->l2tab[e->hash].first; *p; p = &(*p)->next) {
sys/dev/cxgbe/t4_l2t.c
99
*p = e->next;
sys/dev/cxgbe/t4_l2t.h
68
struct l2t_entry *next; /* next l2t_entry on chain */
sys/dev/cxgbe/t4_main.c
4261
t->atid_tab[i - 1].next = &t->atid_tab[i];
sys/dev/cxgbe/t4_main.c
4262
t->atid_tab[t->natids - 1].next = NULL;
sys/dev/cxgbe/t4_main.c
4319
t->afree = p->next;
sys/dev/cxgbe/t4_main.c
4342
p->next = t->afree;
sys/dev/cxgbe/t4_main.c
4387
struct t4_range mem_ranges[4], *r, *next;
sys/dev/cxgbe/t4_main.c
4460
next = r + 1;
sys/dev/cxgbe/t4_main.c
4461
MPASS(next->size > 0); /* and so is the next one. */
sys/dev/cxgbe/t4_main.c
4463
while (r->start + r->size >= next->start) {
sys/dev/cxgbe/t4_main.c
4466
next->start + next->size) - r->start;
sys/dev/cxgbe/t4_main.c
4470
next++;
sys/dev/cxgbe/t4_main.c
4472
if (next != r + 1) {
sys/dev/cxgbe/t4_main.c
4478
MPASS(next->size > 0); /* must be valid */
sys/dev/cxgbe/t4_main.c
4479
memcpy(r + 1, next, remaining * sizeof(*r));
sys/dev/cxgbe/t4_sched.c
719
t->etid_tab[i - 1].next = &t->etid_tab[i];
sys/dev/cxgbe/t4_sched.c
720
t->etid_tab[t->netids - 1].next = NULL;
sys/dev/cxgbe/t4_sched.c
756
t->efree = p->next;
sys/dev/cxgbe/t4_sched.c
779
p->next = t->efree;
sys/dev/cxgbe/t4_sge.c
3025
struct wrq_cookie *prev, *next;
sys/dev/cxgbe/t4_sge.c
3049
next = TAILQ_NEXT(cookie, link);
sys/dev/cxgbe/t4_sge.c
3052
if (next == NULL || ndesc >= 16) {
sys/dev/cxgbe/t4_sge.c
3079
MPASS(IDXDIFF(next->pidx, pidx, eq->sidx) == ndesc);
sys/dev/cxgbe/t4_sge.c
3080
next->pidx = pidx;
sys/dev/cxgbe/t4_sge.c
3081
next->ndesc += ndesc;
sys/dev/cxgbe/tom/t4_tom_l2t.c
388
for (e = d->l2tab[hash].first; e; e = e->next) {
sys/dev/cxgbe/tom/t4_tom_l2t.c
399
e->next = d->l2tab[hash].first;
sys/dev/cxgbe/tom/t4_tom_l2t.c
437
for (e = d->l2tab[hash].first; e; e = e->next) {
sys/dev/drm2/drm.h
106
unsigned char next;
sys/dev/drm2/drmP.h
333
struct drm_buf *next; /**< Kernel-only: used for free list */
sys/dev/drm2/drmP.h
355
struct drm_buf *next; /**< End pointer */
sys/dev/drm2/drm_bufs.c
1148
buf->next = NULL;
sys/dev/drm2/drm_bufs.c
1303
buf->next = NULL;
sys/dev/drm2/drm_bufs.c
784
buf->next = NULL;
sys/dev/drm2/drm_bufs.c
984
buf->next = NULL;
sys/dev/drm2/drm_crtc.c
2579
struct drm_display_mode *dup_mode, *next;
sys/dev/drm2/drm_crtc.c
2599
list_move_tail(list.next, &connector->user_modes);
sys/dev/drm2/drm_crtc.c
2605
list_for_each_entry_safe(dup_mode, next, &list, head)
sys/dev/drm2/drm_linux_list.h
104
(entry)->next->prev = (entry)->prev;
sys/dev/drm2/drm_linux_list.h
105
(entry)->prev->next = (entry)->next;
sys/dev/drm2/drm_linux_list.h
110
for (entry = (head)->next; entry != head; entry = (entry)->next)
sys/dev/drm2/drm_linux_list.h
117
for (entry = (head)->next, temp = (entry)->next; \
sys/dev/drm2/drm_linux_list.h
119
entry = temp, temp = entry->next)
sys/dev/drm2/drm_linux_list.h
122
for (pos = list_entry((head)->next, __typeof(*pos), member); \
sys/dev/drm2/drm_linux_list.h
124
pos = list_entry(pos->member.next, __typeof(*pos), member))
sys/dev/drm2/drm_linux_list.h
139
for (pos = list_entry((head)->next, __typeof(*pos), member), \
sys/dev/drm2/drm_linux_list.h
140
n = list_entry(pos->member.next, __typeof(*pos), member); \
sys/dev/drm2/drm_linux_list.h
142
pos = n, n = list_entry(n->member.next, __typeof(*n), member))
sys/dev/drm2/drm_linux_list.h
145
for (n = list_entry(pos->member.next, __typeof(*pos), member); \
sys/dev/drm2/drm_linux_list.h
147
pos = n, n = list_entry(n->member.next, __typeof(*n), member))
sys/dev/drm2/drm_linux_list.h
150
list_entry((ptr)->next, type, member)
sys/dev/drm2/drm_linux_list.h
155
struct list_head *next)
sys/dev/drm2/drm_linux_list.h
157
struct list_head *first = list->next;
sys/dev/drm2/drm_linux_list.h
161
prev->next = first;
sys/dev/drm2/drm_linux_list.h
163
last->next = next;
sys/dev/drm2/drm_linux_list.h
164
next->prev = last;
sys/dev/drm2/drm_linux_list.h
173
__list_splice(list, head, head->next);
sys/dev/drm2/drm_linux_list.h
186
struct hlist_node *next, **pprev;
sys/dev/drm2/drm_linux_list.h
194
(node)->next = NULL; \
sys/dev/drm2/drm_linux_list.h
216
if (n->next)
sys/dev/drm2/drm_linux_list.h
217
n->next->pprev = n->pprev;
sys/dev/drm2/drm_linux_list.h
218
*n->pprev = n->next;
sys/dev/drm2/drm_linux_list.h
235
n->next = h->first;
sys/dev/drm2/drm_linux_list.h
237
h->first->pprev = &n->next;
sys/dev/drm2/drm_linux_list.h
243
hlist_add_before(struct hlist_node *n, struct hlist_node *next)
sys/dev/drm2/drm_linux_list.h
246
n->pprev = next->pprev;
sys/dev/drm2/drm_linux_list.h
247
n->next = next;
sys/dev/drm2/drm_linux_list.h
248
next->pprev = &n->next;
sys/dev/drm2/drm_linux_list.h
253
hlist_add_after(struct hlist_node *n, struct hlist_node *next)
sys/dev/drm2/drm_linux_list.h
256
next->next = n->next;
sys/dev/drm2/drm_linux_list.h
257
n->next = next;
sys/dev/drm2/drm_linux_list.h
258
next->pprev = &n->next;
sys/dev/drm2/drm_linux_list.h
259
if (next->next)
sys/dev/drm2/drm_linux_list.h
260
next->next->pprev = &next->next;
sys/dev/drm2/drm_linux_list.h
276
for (p = (head)->first; p; p = p->next)
sys/dev/drm2/drm_linux_list.h
279
for (p = (head)->first; p && ({ n = p->next; 1; }); p = n)
sys/dev/drm2/drm_linux_list.h
283
p ? (tp = hlist_entry(p, typeof(*tp), field)): NULL; p = p->next)
sys/dev/drm2/drm_linux_list.h
286
for (p = (p)->next; \
sys/dev/drm2/drm_linux_list.h
287
p ? (tp = hlist_entry(p, typeof(*tp), field)): NULL; p = p->next)
sys/dev/drm2/drm_linux_list.h
290
for (; p ? (tp = hlist_entry(p, typeof(*tp), field)): NULL; p = p->next)
sys/dev/drm2/drm_linux_list.h
294
(pos) != 0 && ({ n = (pos)->next; \
sys/dev/drm2/drm_linux_list.h
37
struct list_head *next, *prev;
sys/dev/drm2/drm_linux_list.h
44
(head)->next = head;
sys/dev/drm2/drm_linux_list.h
55
return (head)->next == head;
sys/dev/drm2/drm_linux_list.h
60
(head)->next->prev = new;
sys/dev/drm2/drm_linux_list.h
61
(new)->next = (head)->next;
sys/dev/drm2/drm_linux_list.h
63
(head)->next = new;
sys/dev/drm2/drm_linux_list.h
69
(entry)->next = head;
sys/dev/drm2/drm_linux_list.h
70
(head)->prev->next = entry;
sys/dev/drm2/drm_linux_list.h
76
(entry)->next->prev = (entry)->prev;
sys/dev/drm2/drm_linux_list.h
77
(entry)->prev->next = (entry)->next;
sys/dev/drm2/drm_linux_list.h
83
new->next = old->next;
sys/dev/drm2/drm_linux_list.h
84
new->next->prev = new;
sys/dev/drm2/drm_linux_list.h
86
new->prev->next = new;
sys/dev/drm2/drm_mm.c
108
list_entry(hole_node->node_list.next, struct drm_mm_node,
sys/dev/drm2/drm_mm.c
566
node->node_list.next = &mm->prev_scanned_node->node_list;
sys/dev/drm2/drm_mm.c
62
list_entry(mm->unused_nodes.next,
sys/dev/drm2/drm_mm.c
633
return (head->next->next == head);
sys/dev/drm2/drm_mm.c
665
struct drm_mm_node *entry, *next;
sys/dev/drm2/drm_mm.c
673
list_for_each_entry_safe(entry, next, &mm->unused_nodes, node_list) {
sys/dev/drm2/drm_mm.h
88
return mm->hole_stack.next;
sys/dev/drm2/drm_mm.h
95
next = entry ? list_entry(entry->node_list.next, \
sys/dev/drm2/drm_mm.h
97
entry != NULL; entry = next, \
sys/dev/drm2/drm_mm.h
98
next = entry ? list_entry(entry->node_list.next, \
sys/dev/drm2/drm_stub.c
132
struct drm_magic_entry *pt, *next;
sys/dev/drm2/drm_stub.c
154
list_for_each_entry_safe(pt, next, &master->magicfree, head) {
sys/dev/drm2/ttm/ttm_bo.c
708
if (entry->ddestroy.next != &bdev->ddestroy) {
sys/dev/drm2/ttm/ttm_object.c
371
list = tfile->ref_list.next;
sys/dev/drm2/ttm/ttm_page_alloc_dma.c
940
struct dma_page *d_page, *next;
sys/dev/drm2/ttm/ttm_page_alloc_dma.c
979
list_for_each_entry_safe(d_page, next, &ttm_dma->pages_list, page_list) {
sys/dev/enic/enic.h
204
struct enic *next;
sys/dev/enic/if_enic.c
1094
struct ifmedia_entry *next;
sys/dev/enic/if_enic.c
1108
LIST_FOREACH(next, &(iflib_get_media(ctx)->ifm_list), ifm_list) {
sys/dev/enic/if_enic.c
1109
if (ifmedia_baudrate(next->ifm_media) == target_baudrate) {
sys/dev/enic/if_enic.c
1110
ifmr->ifm_active |= next->ifm_media;
sys/dev/firewire/firewire.c
1020
struct fw_xfer *xfer, *next;
sys/dev/firewire/firewire.c
1022
for (xfer = STAILQ_FIRST(q); xfer != NULL; xfer = next) {
sys/dev/firewire/firewire.c
1023
next = STAILQ_NEXT(xfer, link);
sys/dev/firewire/firewire.c
1904
struct fw_unit *unit, *next;
sys/dev/firewire/firewire.c
1909
STAILQ_FOREACH_SAFE(unit, &fwdev->units, link, next) {
sys/dev/firewire/firewire.c
1931
struct fw_device *fwdev, *next;
sys/dev/firewire/firewire.c
1937
for (fwdev = STAILQ_FIRST(&fc->devices); fwdev != NULL; fwdev = next) {
sys/dev/firewire/firewire.c
1938
next = STAILQ_NEXT(fwdev, link);
sys/dev/firewire/sbp.c
2049
struct fw_xfer *xfer, *next;
sys/dev/firewire/sbp.c
2063
STAILQ_FOREACH_SAFE(xfer, &target->xferlist, link, next) {
sys/dev/firewire/sbp.c
2593
struct sbp_ocb *next;
sys/dev/firewire/sbp.c
2602
STAILQ_FOREACH_SAFE(ocb, &sdev->ocbs, ocb, next) {
sys/dev/firewire/sbp.c
2619
if (next != NULL)
sys/dev/firewire/sbp.c
2620
sbp_orb_pointer(sdev, next);
sys/dev/firewire/sbp.c
2639
if (next != NULL &&
sys/dev/firewire/sbp.c
2763
struct sbp_ocb *ocb, *next;
sys/dev/firewire/sbp.c
2771
STAILQ_FOREACH_SAFE(ocb, &temp, ocb, next) {
sys/dev/firewire/sbp.c
484
goto next;
sys/dev/firewire/sbp.c
493
goto next;
sys/dev/firewire/sbp.c
511
goto next;
sys/dev/firewire/sbp.c
522
goto next;
sys/dev/firewire/sbp.c
541
goto next;
sys/dev/firewire/sbp.c
548
next:
sys/dev/firewire/sbp_targ.c
267
struct orb_info *orbi, *next;
sys/dev/firewire/sbp_targ.c
273
for (orbi = STAILQ_FIRST(&login->orbs); orbi != NULL; orbi = next) {
sys/dev/firewire/sbp_targ.c
274
next = STAILQ_NEXT(orbi, link);
sys/dev/firewire/sbp_targ.c
478
struct sbp_targ_login *login, *next;
sys/dev/firewire/sbp_targ.c
507
login = next) {
sys/dev/firewire/sbp_targ.c
508
next = STAILQ_NEXT(login, link);
sys/dev/firmware/arm/scmi.c
129
LIST_ENTRY(scmi_req) next;
sys/dev/firmware/arm/scmi.c
283
LIST_INSERT_HEAD(&rp->head, req, next);
sys/dev/firmware/arm/scmi.c
296
LIST_FOREACH_SAFE(req, &rp->head, next, tmp) {
sys/dev/firmware/arm/scmi.c
411
LIST_REMOVE_HEAD(&rp->head, next);
sys/dev/firmware/arm/scmi.c
436
LIST_INSERT_HEAD(&rp->head, req, next);
sys/dev/firmware/arm/scmi.c
574
LIST_INSERT_HEAD(REQHASH(sc, req->token), req, next);
sys/dev/firmware/arm/scmi.c
586
LIST_REMOVE(req, next);
sys/dev/firmware/arm/scmi.c
603
LIST_FOREACH(req, REQHASH(sc, token), next) {
sys/dev/gpio/gpioaei.c
195
SLIST_INSERT_HEAD(&sc->aei_ctx, ctx, next);
sys/dev/gpio/gpioaei.c
238
SLIST_FOREACH_SAFE(ctx, &sc->aei_ctx, next, tctx) {
sys/dev/gpio/gpioaei.c
49
SLIST_ENTRY(gpio_aei_ctx) next;
sys/dev/gpio/gpioc.c
104
SLIST_ENTRY(gpioc_pins) next;
sys/dev/gpio/gpioc.c
296
SLIST_FOREACH(priv_link, &intr_conf->privs, next) {
sys/dev/gpio/gpioc.c
302
SLIST_FOREACH(pin_link, &priv->pins, next) {
sys/dev/gpio/gpioc.c
327
SLIST_INSERT_HEAD(&intr_conf->privs, priv_link, next);
sys/dev/gpio/gpioc.c
328
SLIST_INSERT_HEAD(&priv->pins, pin_link, next);
sys/dev/gpio/gpioc.c
347
SLIST_FOREACH_SAFE(priv_link, &intr_conf->privs, next, priv_link_temp) {
sys/dev/gpio/gpioc.c
350
next);
sys/dev/gpio/gpioc.c
357
SLIST_FOREACH_SAFE(pin_link, &priv->pins, next, pin_link_temp) {
sys/dev/gpio/gpioc.c
369
SLIST_REMOVE(&priv->pins, pin_link, gpioc_pins, next);
sys/dev/gpio/gpioc.c
392
SLIST_FOREACH(priv_link, &intr_conf->privs, next) {
sys/dev/gpio/gpioc.c
415
SLIST_FOREACH(priv_link, &intr_conf->privs, next) {
sys/dev/gpio/gpioc.c
530
SLIST_FOREACH(privs, &intr_conf->privs, next) {
sys/dev/gpio/gpioc.c
535
SLIST_FOREACH(privpin, &priv->pins, next) {
sys/dev/gpio/gpioc.c
648
SLIST_FOREACH_SAFE(pin_link, &priv->pins, next, pin_link_temp) {
sys/dev/gpio/gpioc.c
654
SLIST_FOREACH_SAFE(priv_link, &pin_link->pin->privs, next,
sys/dev/gpio/gpioc.c
658
gpioc_privs, next);
sys/dev/gpio/gpioc.c
669
SLIST_REMOVE(&priv->pins, pin_link, gpioc_pins, next);
sys/dev/gpio/gpioc.c
97
SLIST_ENTRY(gpioc_privs) next;
sys/dev/gve/gve.h
418
int next; /* To chain the free_pending_pkts lists */
sys/dev/gve/gve_tx_dqo.c
1035
tx->dqo.pending_pkts[j].next =
sys/dev/gve/gve_tx_dqo.c
527
tx->dqo.free_pending_pkts_csm = pending_pkt->next;
sys/dev/gve/gve_tx_dqo.c
550
pending_pkt->next = old_head;
sys/dev/hid/hidraw.c
283
int next;
sys/dev/hid/hidraw.c
288
next = (sc->sc_tail + 1) % HIDRAW_BUFFER_SIZE;
sys/dev/hid/hidraw.c
289
if (sc->sc_state.quiet || next == sc->sc_head)
sys/dev/hid/hidraw.c
300
sc->sc_tail = next;
sys/dev/hpt27xx/array.h
163
struct _raw_partition * next;
sys/dev/hpt27xx/him.h
274
struct _HIM *next;
sys/dev/hpt27xx/him.h
411
struct tq_item *next;
sys/dev/hpt27xx/him.h
415
do { (t)->proc = p; (t)->arg = a; (t)->next = 0; } while (0)
sys/dev/hpt27xx/hpt27xx_os_bsd.c
158
list->next = vbus_ext->freelist_head;
sys/dev/hpt27xx/hpt27xx_os_bsd.c
197
list->next = vbus_ext->freelist_dma_head;
sys/dev/hpt27xx/hpt27xx_os_bsd.c
264
HPT_ASSERT(task->next==0);
sys/dev/hpt27xx/hpt27xx_os_bsd.c
270
while (t->next) t = t->next;
sys/dev/hpt27xx/hpt27xx_os_bsd.c
271
t->next = task;
sys/dev/hpt27xx/hpt27xx_osm_bsd.c
1105
ext->next = vbus_ext->cmdext_list;
sys/dev/hpt27xx/hpt27xx_osm_bsd.c
1158
for (hba = vbus_ext->hba_list; hba; hba = hba->next) {
sys/dev/hpt27xx/hpt27xx_osm_bsd.c
123
hba->next = vbus_ext->hba_list;
sys/dev/hpt27xx/hpt27xx_osm_bsd.c
154
for (hba = vbus_ext->hba_list; hba; hba = hba->next)
sys/dev/hpt27xx/hpt27xx_osm_bsd.c
159
for (f=vbus_ext->freelist_head; f; f=f->next) {
sys/dev/hpt27xx/hpt27xx_osm_bsd.c
169
for (f=vbus_ext->freelist_dma_head; f; f=f->next) {
sys/dev/hpt27xx/hpt27xx_osm_bsd.c
212
for (f=vbus_ext->freelist_head; f; f=f->next) {
sys/dev/hpt27xx/hpt27xx_osm_bsd.c
228
for (f=vbus_ext->freelist_dma_head; f; f=f->next) {
sys/dev/hpt27xx/hpt27xx_osm_bsd.c
256
for (hba = vbus_ext->hba_list; hba; hba = hba->next)
sys/dev/hpt27xx/hpt27xx_osm_bsd.c
365
for (hba=vbus_ext->hba_list; hba; hba=hba->next)
sys/dev/hpt27xx/hpt27xx_osm_bsd.c
371
vbus_ext->hba_list = hba->next;
sys/dev/hpt27xx/hpt27xx_osm_bsd.c
389
tasks = t->next;
sys/dev/hpt27xx/hpt27xx_osm_bsd.c
390
t->next = 0;
sys/dev/hpt27xx/hpt27xx_osm_bsd.c
40
for (him = him_list; him; him = him->next) {
sys/dev/hpt27xx/hpt27xx_osm_bsd.c
413
vbus_ext->cmdext_list = p->next;
sys/dev/hpt27xx/hpt27xx_osm_bsd.c
419
p->next = p->vbus_ext->cmdext_list;
sys/dev/hpt27xx/ldm.h
110
struct lock_request *next;
sys/dev/hpt27xx/ldm.h
118
(req)->next = 0;\
sys/dev/hpt27xx/ldm.h
135
struct dmapool_order *next;
sys/dev/hpt27xx/ldm.h
142
struct dmapool_client *next;
sys/dev/hpt27xx/ldm.h
171
struct timer_call * next;
sys/dev/hpt27xx/ldm.h
174
#define ldm_init_timer(timer) do { (timer)->next=0; (timer)->pprev=0; } while (0)
sys/dev/hpt27xx/ldm.h
178
HPT_ASSERT((timer)->next==0 && (timer)->pprev==0);\
sys/dev/hpt27xx/ldm.h
191
struct _LDM_ADAPTER *next;
sys/dev/hpt27xx/ldm.h
289
struct vdev_class *next;
sys/dev/hpt27xx/ldm.h
75
struct freelist *next;
sys/dev/hpt27xx/list.h
119
for (pos = (head)->next; pos != (head); pos = pos->next)
sys/dev/hpt27xx/list.h
122
for (pos = (head)->next, n = pos->next; pos != (head); \
sys/dev/hpt27xx/list.h
123
pos = n, n = pos->next)
sys/dev/hpt27xx/list.h
126
((type *)((char *)((attached)->next)-(HPT_UPTR)(&((type *)0)->member)))
sys/dev/hpt27xx/list.h
41
struct list_head *next, *prev;
sys/dev/hpt27xx/list.h
44
#define INIT_LIST_HEAD(ptr) do { (ptr)->next = (ptr); (ptr)->prev = (ptr); } while (0)
sys/dev/hpt27xx/list.h
46
static HPT_INLINE void __list_add(struct list_head * _new, struct list_head * prev, struct list_head * next)
sys/dev/hpt27xx/list.h
48
next->prev = _new;
sys/dev/hpt27xx/list.h
49
_new->next = next;
sys/dev/hpt27xx/list.h
51
prev->next = _new;
sys/dev/hpt27xx/list.h
56
__list_add(_new, head, head->next);
sys/dev/hpt27xx/list.h
64
static HPT_INLINE void __list_del(struct list_head * prev, struct list_head * next)
sys/dev/hpt27xx/list.h
66
next->prev = prev;
sys/dev/hpt27xx/list.h
67
prev->next = next;
sys/dev/hpt27xx/list.h
72
__list_del(entry->prev, entry->next);
sys/dev/hpt27xx/list.h
77
__list_del(entry->prev, entry->next);
sys/dev/hpt27xx/list.h
83
HPT_ASSERT(!(head->next==head && head->prev!=head));
sys/dev/hpt27xx/list.h
84
return head->next == head;
sys/dev/hpt27xx/list.h
90
struct list_head *first = list->next;
sys/dev/hpt27xx/list.h
92
struct list_head *at = head->next;
sys/dev/hpt27xx/list.h
95
head->next = first;
sys/dev/hpt27xx/list.h
97
last->next = at;
sys/dev/hpt27xx/os_bsd.h
136
struct _hba *next;
sys/dev/hpt27xx/os_bsd.h
153
struct _os_cmdext *next;
sys/dev/hpt27xx/os_bsd.h
163
struct _vbus_ext *next;
sys/dev/hpt27xx/osm.h
188
struct _OSM_TASK *next;
sys/dev/hptiop/hptiop.c
2270
hba->srb_list = srb->next;
sys/dev/hptiop/hptiop.c
2279
srb->next = hba->srb_list;
sys/dev/hptiop/hptiop.h
367
struct hpt_iop_hba *next;
sys/dev/hptiop/hptiop.h
458
struct hpt_iop_srb *next;
sys/dev/hptmv/entry.c
1232
pAdapter->pbus_dmamap_list = p-> next;
sys/dev/hptmv/entry.c
1239
p->next = p->pAdapter->pbus_dmamap_list;
sys/dev/hptmv/entry.c
1258
pAdapter->next = 0;
sys/dev/hptmv/entry.c
1265
pCurAdapter->next = pAdapter;
sys/dev/hptmv/entry.c
2431
pAdapter = pAdapter->next;
sys/dev/hptmv/entry.c
2467
for (pAdapTemp = gIal_Adapter; pAdapTemp; pAdapTemp = pAdapTemp->next) {
sys/dev/hptmv/gui_lib.c
1329
pAdapter = pAdapter->next;
sys/dev/hptmv/gui_lib.c
1393
for (pAdapTemp = gIal_Adapter; pAdapTemp; pAdapTemp = pAdapTemp->next)
sys/dev/hptmv/gui_lib.c
1416
for (pAdapTemp = gIal_Adapter; pAdapTemp; pAdapTemp = pAdapTemp->next)
sys/dev/hptmv/gui_lib.c
408
pAdapTemp = pAdapTemp->next;
sys/dev/hptmv/gui_lib.c
419
for (pAdapTemp = gIal_Adapter; pAdapTemp; pAdapTemp = pAdapTemp->next) {
sys/dev/hptmv/gui_lib.c
454
pAdapTemp = pAdapTemp->next;
sys/dev/hptmv/gui_lib.c
488
for (pAdapTemp = gIal_Adapter; pAdapTemp; pAdapTemp = pAdapTemp->next) {
sys/dev/hptmv/gui_lib.c
499
if (pIds[j]==VDEV_TO_ID(pLogical)) goto next;
sys/dev/hptmv/gui_lib.c
502
next:;
sys/dev/hptmv/gui_lib.c
81
pAdapter = pAdapter->next;
sys/dev/hptmv/gui_lib.c
94
pAdapter = pAdapter->next;
sys/dev/hptmv/hptproc.c
291
for (pAdapter=gIal_Adapter; pAdapter; pAdapter=pAdapter->next) {
sys/dev/hptmv/hptproc.c
620
for (pAdapter=gIal_Adapter; pAdapter; pAdapter=pAdapter->next) {
sys/dev/hptmv/ioctl.c
300
for (pAdapter=gIal_Adapter; pAdapter; pAdapter=pAdapter->next) {
sys/dev/hptmv/ioctl.c
75
for (i=1, pAdapTemp = gIal_Adapter; pAdapTemp; pAdapTemp = pAdapTemp->next, i++) {
sys/dev/hptmv/mvSata.h
238
struct mvQueuedCommandEntry *next;
sys/dev/hptmv/osbsd.h
142
{ struct _BUS_DMAMAP *next;
sys/dev/hptmv/osbsd.h
162
struct IALAdapter *next;
sys/dev/hptmv/raid5n.h
90
struct free_heap_block *next;
sys/dev/hptmv/raid5n.h
95
struct list_head *next, *prev;
sys/dev/hptnr/array.h
163
struct _raw_partition * next;
sys/dev/hptnr/him.h
274
struct _HIM *next;
sys/dev/hptnr/him.h
399
struct tq_item *next;
sys/dev/hptnr/him.h
403
do { (t)->proc = p; (t)->arg = a; (t)->next = 0; } while (0)
sys/dev/hptnr/hptnr_os_bsd.c
144
list->next = vbus_ext->freelist_head;
sys/dev/hptnr/hptnr_os_bsd.c
183
list->next = vbus_ext->freelist_dma_head;
sys/dev/hptnr/hptnr_os_bsd.c
251
HPT_ASSERT(task->next==0);
sys/dev/hptnr/hptnr_os_bsd.c
257
while (t->next) t = t->next;
sys/dev/hptnr/hptnr_os_bsd.c
258
t->next = task;
sys/dev/hptnr/hptnr_osm_bsd.c
127
hba->next = vbus_ext->hba_list;
sys/dev/hptnr/hptnr_osm_bsd.c
1392
ext->next = vbus_ext->cmdext_list;
sys/dev/hptnr/hptnr_osm_bsd.c
1447
for (hba = vbus_ext->hba_list; hba; hba = hba->next) {
sys/dev/hptnr/hptnr_osm_bsd.c
158
for (hba = vbus_ext->hba_list; hba; hba = hba->next)
sys/dev/hptnr/hptnr_osm_bsd.c
163
for (f=vbus_ext->freelist_head; f; f=f->next) {
sys/dev/hptnr/hptnr_osm_bsd.c
173
for (f=vbus_ext->freelist_dma_head; f; f=f->next) {
sys/dev/hptnr/hptnr_osm_bsd.c
216
for (f=vbus_ext->freelist_head; f; f=f->next) {
sys/dev/hptnr/hptnr_osm_bsd.c
232
for (f=vbus_ext->freelist_dma_head; f; f=f->next) {
sys/dev/hptnr/hptnr_osm_bsd.c
260
for (hba = vbus_ext->hba_list; hba; hba = hba->next)
sys/dev/hptnr/hptnr_osm_bsd.c
366
for (hba=vbus_ext->hba_list; hba; hba=hba->next)
sys/dev/hptnr/hptnr_osm_bsd.c
372
vbus_ext->hba_list = hba->next;
sys/dev/hptnr/hptnr_osm_bsd.c
391
tasks = t->next;
sys/dev/hptnr/hptnr_osm_bsd.c
392
t->next = 0;
sys/dev/hptnr/hptnr_osm_bsd.c
41
for (him = him_list; him; him = him->next) {
sys/dev/hptnr/hptnr_osm_bsd.c
415
vbus_ext->cmdext_list = p->next;
sys/dev/hptnr/hptnr_osm_bsd.c
421
p->next = p->vbus_ext->cmdext_list;
sys/dev/hptnr/ldm.h
110
struct lock_request *next;
sys/dev/hptnr/ldm.h
118
(req)->next = 0;\
sys/dev/hptnr/ldm.h
135
struct dmapool_order *next;
sys/dev/hptnr/ldm.h
142
struct dmapool_client *next;
sys/dev/hptnr/ldm.h
171
struct timer_call * next;
sys/dev/hptnr/ldm.h
174
#define ldm_init_timer(timer) do { (timer)->next=0; (timer)->pprev=0; } while (0)
sys/dev/hptnr/ldm.h
178
HPT_ASSERT((timer)->next==0 && (timer)->pprev==0);\
sys/dev/hptnr/ldm.h
191
struct _LDM_ADAPTER *next;
sys/dev/hptnr/ldm.h
288
struct vdev_class *next;
sys/dev/hptnr/ldm.h
75
struct freelist *next;
sys/dev/hptnr/list.h
118
for (pos = (head)->next; pos != (head); pos = pos->next)
sys/dev/hptnr/list.h
121
for (pos = (head)->next, n = pos->next; pos != (head); \
sys/dev/hptnr/list.h
122
pos = n, n = pos->next)
sys/dev/hptnr/list.h
125
((type *)((char *)((attached)->next)-(HPT_UPTR)(&((type *)0)->member)))
sys/dev/hptnr/list.h
40
struct list_head *next, *prev;
sys/dev/hptnr/list.h
43
#define INIT_LIST_HEAD(ptr) do { (ptr)->next = (ptr); (ptr)->prev = (ptr); } while (0)
sys/dev/hptnr/list.h
45
static HPT_INLINE void __list_add(struct list_head * _new, struct list_head * prev, struct list_head * next)
sys/dev/hptnr/list.h
47
next->prev = _new;
sys/dev/hptnr/list.h
48
_new->next = next;
sys/dev/hptnr/list.h
50
prev->next = _new;
sys/dev/hptnr/list.h
55
__list_add(_new, head, head->next);
sys/dev/hptnr/list.h
63
static HPT_INLINE void __list_del(struct list_head * prev, struct list_head * next)
sys/dev/hptnr/list.h
65
next->prev = prev;
sys/dev/hptnr/list.h
66
prev->next = next;
sys/dev/hptnr/list.h
71
__list_del(entry->prev, entry->next);
sys/dev/hptnr/list.h
76
__list_del(entry->prev, entry->next);
sys/dev/hptnr/list.h
82
HPT_ASSERT(!(head->next==head && head->prev!=head));
sys/dev/hptnr/list.h
83
return head->next == head;
sys/dev/hptnr/list.h
89
struct list_head *first = list->next;
sys/dev/hptnr/list.h
91
struct list_head *at = head->next;
sys/dev/hptnr/list.h
94
head->next = first;
sys/dev/hptnr/list.h
96
last->next = at;
sys/dev/hptnr/os_bsd.h
138
struct _hba *next;
sys/dev/hptnr/os_bsd.h
155
struct _os_cmdext *next;
sys/dev/hptnr/os_bsd.h
165
struct _vbus_ext *next;
sys/dev/hptnr/osm.h
186
struct _OSM_TASK *next;
sys/dev/hptrr/array.h
164
struct _raw_partition * next;
sys/dev/hptrr/him.h
242
struct _HIM *next;
sys/dev/hptrr/him.h
354
struct tq_item *next;
sys/dev/hptrr/him.h
358
do { (t)->proc = p; (t)->arg = a; (t)->next = 0; } while (0)
sys/dev/hptrr/hptrr_os_bsd.c
130
list->next = vbus_ext->freelist_head;
sys/dev/hptrr/hptrr_os_bsd.c
169
list->next = vbus_ext->freelist_dma_head;
sys/dev/hptrr/hptrr_os_bsd.c
237
HPT_ASSERT(task->next==0);
sys/dev/hptrr/hptrr_os_bsd.c
243
while (t->next) t = t->next;
sys/dev/hptrr/hptrr_os_bsd.c
244
t->next = task;
sys/dev/hptrr/hptrr_osm_bsd.c
1036
ext->next = vbus_ext->cmdext_list;
sys/dev/hptrr/hptrr_osm_bsd.c
1091
for (hba = vbus_ext->hba_list; hba; hba = hba->next) {
sys/dev/hptrr/hptrr_osm_bsd.c
128
hba->next = vbus_ext->hba_list;
sys/dev/hptrr/hptrr_osm_bsd.c
159
for (hba = vbus_ext->hba_list; hba; hba = hba->next)
sys/dev/hptrr/hptrr_osm_bsd.c
164
for (f=vbus_ext->freelist_head; f; f=f->next) {
sys/dev/hptrr/hptrr_osm_bsd.c
175
for (f=vbus_ext->freelist_dma_head; f; f=f->next) {
sys/dev/hptrr/hptrr_osm_bsd.c
218
for (f=vbus_ext->freelist_head; f; f=f->next) {
sys/dev/hptrr/hptrr_osm_bsd.c
234
for (f=vbus_ext->freelist_dma_head; f; f=f->next) {
sys/dev/hptrr/hptrr_osm_bsd.c
262
for (hba = vbus_ext->hba_list; hba; hba = hba->next)
sys/dev/hptrr/hptrr_osm_bsd.c
368
for (hba=vbus_ext->hba_list; hba; hba=hba->next)
sys/dev/hptrr/hptrr_osm_bsd.c
374
vbus_ext->hba_list = hba->next;
sys/dev/hptrr/hptrr_osm_bsd.c
393
tasks = t->next;
sys/dev/hptrr/hptrr_osm_bsd.c
394
t->next = 0;
sys/dev/hptrr/hptrr_osm_bsd.c
417
vbus_ext->cmdext_list = p->next;
sys/dev/hptrr/hptrr_osm_bsd.c
423
p->next = p->vbus_ext->cmdext_list;
sys/dev/hptrr/hptrr_osm_bsd.c
51
for (him = him_list; him; him = him->next) {
sys/dev/hptrr/ldm.h
109
struct lock_request *next;
sys/dev/hptrr/ldm.h
117
(req)->next = 0;\
sys/dev/hptrr/ldm.h
134
struct dmapool_order *next;
sys/dev/hptrr/ldm.h
141
struct dmapool_client *next;
sys/dev/hptrr/ldm.h
170
struct timer_call * next;
sys/dev/hptrr/ldm.h
173
#define ldm_init_timer(timer) do { (timer)->next=0; (timer)->pprev=0; } while (0)
sys/dev/hptrr/ldm.h
177
HPT_ASSERT((timer)->next==0 && (timer)->pprev==0);\
sys/dev/hptrr/ldm.h
190
struct _LDM_ADAPTER *next;
sys/dev/hptrr/ldm.h
283
struct vdev_class *next;
sys/dev/hptrr/ldm.h
74
struct freelist *next;
sys/dev/hptrr/list.h
121
for (pos = (head)->next; pos != (head); pos = pos->next)
sys/dev/hptrr/list.h
124
for (pos = (head)->next, n = pos->next; pos != (head); \
sys/dev/hptrr/list.h
125
pos = n, n = pos->next)
sys/dev/hptrr/list.h
128
((type *)((char *)((attached)->next)-(HPT_UPTR)(&((type *)0)->member)))
sys/dev/hptrr/list.h
43
struct list_head *next, *prev;
sys/dev/hptrr/list.h
46
#define INIT_LIST_HEAD(ptr) do { (ptr)->next = (ptr); (ptr)->prev = (ptr); } while (0)
sys/dev/hptrr/list.h
48
static HPT_INLINE void __list_add(struct list_head * _new, struct list_head * prev, struct list_head * next)
sys/dev/hptrr/list.h
50
next->prev = _new;
sys/dev/hptrr/list.h
51
_new->next = next;
sys/dev/hptrr/list.h
53
prev->next = _new;
sys/dev/hptrr/list.h
58
__list_add(_new, head, head->next);
sys/dev/hptrr/list.h
66
static HPT_INLINE void __list_del(struct list_head * prev, struct list_head * next)
sys/dev/hptrr/list.h
68
next->prev = prev;
sys/dev/hptrr/list.h
69
prev->next = next;
sys/dev/hptrr/list.h
74
__list_del(entry->prev, entry->next);
sys/dev/hptrr/list.h
79
__list_del(entry->prev, entry->next);
sys/dev/hptrr/list.h
85
HPT_ASSERT(!(head->next==head && head->prev!=head));
sys/dev/hptrr/list.h
86
return head->next == head;
sys/dev/hptrr/list.h
92
struct list_head *first = list->next;
sys/dev/hptrr/list.h
94
struct list_head *at = head->next;
sys/dev/hptrr/list.h
97
head->next = first;
sys/dev/hptrr/list.h
99
last->next = at;
sys/dev/hptrr/os_bsd.h
139
struct _hba *next;
sys/dev/hptrr/os_bsd.h
156
struct _os_cmdext *next;
sys/dev/hptrr/os_bsd.h
166
struct _vbus_ext *next;
sys/dev/hptrr/osm.h
153
struct _OSM_TASK *next;
sys/dev/hwpmc/hwpmc_mod.c
2515
struct pmc_thread *pt, *next;
sys/dev/hwpmc/hwpmc_mod.c
2517
LIST_FOREACH_SAFE(pt, &pmc_threadfreelist, pt_next, next) {
sys/dev/hwt/hwt_backend.c
165
LIST_FOREACH(entry, &hwt_backends, next) {
sys/dev/hwt/hwt_backend.c
192
LIST_INSERT_HEAD(&hwt_backends, entry, next);
sys/dev/hwt/hwt_backend.c
209
LIST_FOREACH_SAFE(entry, &hwt_backends, next, tmp) {
sys/dev/hwt/hwt_backend.c
211
LIST_REMOVE(entry, next);
sys/dev/hwt/hwt_backend.c
58
LIST_ENTRY(hwt_backend_entry) next;
sys/dev/hwt/hwt_context.c
126
TAILQ_REMOVE(&ctx->cpus, cpu, next);
sys/dev/hwt/hwt_context.c
149
TAILQ_REMOVE(&ctx->threads, thr, next);
sys/dev/hwt/hwt_cpu.c
114
TAILQ_INSERT_TAIL(&ctx->cpus, cpu, next);
sys/dev/hwt/hwt_cpu.c
98
TAILQ_FOREACH_SAFE(cpu, &ctx->cpus, next, tcpu) {
sys/dev/hwt/hwt_cpu.h
35
TAILQ_ENTRY(hwt_cpu) next;
sys/dev/hwt/hwt_owner.h
36
LIST_ENTRY(hwt_owner) next; /* Entry in hwt owner hash. */
sys/dev/hwt/hwt_ownerhash.c
100
LIST_INSERT_HEAD(hoh, ho, next);
sys/dev/hwt/hwt_ownerhash.c
110
LIST_REMOVE(ho, next);
sys/dev/hwt/hwt_ownerhash.c
133
LIST_FOREACH_SAFE(ho, hoh, next, tmp) {
sys/dev/hwt/hwt_ownerhash.c
79
LIST_FOREACH(ho, hoh, next) {
sys/dev/hwt/hwt_record.c
137
TAILQ_INSERT_TAIL(&ctx->records, entry, next);
sys/dev/hwt/hwt_record.c
163
TAILQ_INSERT_TAIL(&ctx->records, entry, next);
sys/dev/hwt/hwt_record.c
213
TAILQ_REMOVE_HEAD(&ctx->records, next);
sys/dev/hwt/hwt_record.c
234
TAILQ_REMOVE_HEAD(&ctx->records, next);
sys/dev/hwt/hwt_record.c
292
TAILQ_INSERT_HEAD(&ctx->records, entry, next);
sys/dev/hwt/hwt_thread.c
160
TAILQ_INSERT_TAIL(&ctx->threads, thr, next);
sys/dev/hwt/hwt_thread.c
161
TAILQ_INSERT_TAIL(&ctx->records, entry, next);
sys/dev/hwt/hwt_thread.c
96
TAILQ_FOREACH(thr, &ctx->threads, next) {
sys/dev/hwt/hwt_thread.h
39
TAILQ_ENTRY(hwt_thread) next;
sys/dev/hyperv/netvsc/if_hn.c
7056
goto next;
sys/dev/hyperv/netvsc/if_hn.c
7093
goto next;
sys/dev/hyperv/netvsc/if_hn.c
7101
next:
sys/dev/iavf/iavf_iflib.h
290
SLIST_ENTRY(iavf_mac_filter) next;
sys/dev/iavf/iavf_iflib.h
311
SLIST_ENTRY(iavf_vlan_filter) next;
sys/dev/iavf/iavf_lib.c
1249
SLIST_FOREACH(f, sc->mac_filters, next) {
sys/dev/iavf/iavf_lib.c
1354
SLIST_FOREACH(f, sc->mac_filters, next) {
sys/dev/iavf/iavf_lib.c
1386
SLIST_INSERT_HEAD(sc->mac_filters, f, next);
sys/dev/iavf/iavf_lib.c
1423
SLIST_INSERT_HEAD(sc->vlan_filters, v, next);
sys/dev/iavf/iavf_lib.c
1446
SLIST_FOREACH(v, sc->vlan_filters, next) {
sys/dev/iavf/iavf_lib.c
592
SLIST_REMOVE_HEAD(sc->mac_filters, next);
sys/dev/iavf/iavf_lib.c
598
SLIST_REMOVE_HEAD(sc->vlan_filters, next);
sys/dev/iavf/iavf_lib.c
888
SLIST_FOREACH(f, sc->mac_filters, next)
sys/dev/iavf/iavf_lib.c
893
SLIST_FOREACH(f, sc->mac_filters, next) {
sys/dev/iavf/iavf_lib.c
903
SLIST_FOREACH(v, sc->vlan_filters, next)
sys/dev/iavf/iavf_lib.c
908
SLIST_FOREACH(v, sc->vlan_filters, next) {
sys/dev/iavf/iavf_vc_common.c
366
SLIST_FOREACH(f, sc->vlan_filters, next) {
sys/dev/iavf/iavf_vc_common.c
394
SLIST_FOREACH_SAFE(f, sc->vlan_filters, next, ftmp) {
sys/dev/iavf/iavf_vc_common.c
430
SLIST_FOREACH(f, sc->vlan_filters, next) {
sys/dev/iavf/iavf_vc_common.c
459
SLIST_FOREACH_SAFE(f, sc->vlan_filters, next, ftmp) {
sys/dev/iavf/iavf_vc_common.c
463
SLIST_REMOVE(sc->vlan_filters, f, iavf_vlan_filter, next);
sys/dev/iavf/iavf_vc_common.c
496
SLIST_FOREACH(f, sc->mac_filters, next) {
sys/dev/iavf/iavf_vc_common.c
519
SLIST_FOREACH(f, sc->mac_filters, next) {
sys/dev/iavf/iavf_vc_common.c
560
SLIST_FOREACH(f, sc->mac_filters, next) {
sys/dev/iavf/iavf_vc_common.c
583
SLIST_FOREACH_SAFE(f, sc->mac_filters, next, f_temp) {
sys/dev/iavf/iavf_vc_common.c
589
SLIST_REMOVE(sc->mac_filters, f, iavf_mac_filter, next);
sys/dev/ida/idavar.h
57
u_int16_t next; /* offset of next request */
sys/dev/iicbus/pmic/rockchip/rk8xx.h
68
TAILQ_ENTRY(reg_list) next;
sys/dev/iicbus/pmic/rockchip/rk8xx_regulators.c
342
TAILQ_INSERT_TAIL(&sc->regs, regp, next);
sys/dev/iicbus/pmic/rockchip/rk8xx_regulators.c
359
TAILQ_FOREACH(regp, &sc->regs, next) {
sys/dev/ioat/ioat.c
2105
ioat_get_descriptor(sc, sc->tail)->generic.next);
sys/dev/ioat/ioat.c
2113
ioat_get_descriptor(sc, sc->head - 1)->generic.next);
sys/dev/ioat/ioat.c
2121
ioat_get_descriptor(sc, sc->head)->generic.next);
sys/dev/ioat/ioat.c
663
dma_hw_desc->next = RING_PHYS_ADDR(ioat, i + 1);
sys/dev/ioat/ioat_internal.h
148
uint64_t next;
sys/dev/ioat/ioat_internal.h
176
uint64_t next;
sys/dev/ioat/ioat_internal.h
204
uint64_t next;
sys/dev/ioat/ioat_internal.h
282
uint64_t next;
sys/dev/ioat/ioat_internal.h
313
uint64_t next;
sys/dev/ioat/ioat_internal.h
324
uint64_t next;
sys/dev/ioat/ioat_internal.h
353
uint64_t next;
sys/dev/ioat/ioat_internal.h
364
uint64_t next;
sys/dev/ioat/ioat_internal.h
395
uint64_t next;
sys/dev/iommu/iommu_gas.c
384
struct iommu_map_entry *next;
sys/dev/iommu/iommu_gas.c
386
if ((next = RB_RIGHT(curr, rb_entry)) != NULL &&
sys/dev/iommu/iommu_gas.c
387
next->free_down >= min_free) {
sys/dev/iommu/iommu_gas.c
390
curr = next;
sys/dev/iommu/iommu_gas.c
391
while ((next = RB_LEFT(curr, rb_entry)) != NULL &&
sys/dev/iommu/iommu_gas.c
392
next->free_down >= min_free);
sys/dev/iommu/iommu_gas.c
395
while ((next = RB_PARENT(curr, rb_entry)) != NULL &&
sys/dev/iommu/iommu_gas.c
396
curr == RB_RIGHT(next, rb_entry))
sys/dev/iommu/iommu_gas.c
397
curr = next;
sys/dev/iommu/iommu_gas.c
398
curr = next;
sys/dev/iommu/iommu_gas.c
528
struct iommu_map_entry *next, *prev;
sys/dev/iommu/iommu_gas.c
541
next = RB_NFIND(iommu_gas_entries_tree, &domain->rb_root, entry);
sys/dev/iommu/iommu_gas.c
542
KASSERT(next != NULL, ("next must be non-null %p %jx", domain,
sys/dev/iommu/iommu_gas.c
544
prev = RB_PREV(iommu_gas_entries_tree, &domain->rb_root, next);
sys/dev/iommu/iommu_gas.c
563
if (next->start < entry->end &&
sys/dev/iommu/iommu_gas.c
564
(next->flags & IOMMU_MAP_ENTRY_PLACE) == 0) {
sys/dev/iommu/iommu_gas.c
566
(next->flags & IOMMU_MAP_ENTRY_RMRR) == 0)
sys/dev/iommu/iommu_gas.c
568
entry->end = next->start;
sys/dev/iommu/iommu_gas.c
579
&domain->rb_root, next, entry);
sys/dev/iommu/iommu_gas.c
580
if (next->start < entry->end) {
sys/dev/iommu/iommu_gas.c
581
iommu_gas_rb_remove(domain, next);
sys/dev/iommu/iommu_gas.c
582
next = NULL;
sys/dev/iommu/iommu_gas.c
597
KASSERT(next == NULL || in == next,
sys/dev/iommu/iommu_gas.c
599
entry, entry->start, entry->end, next,
sys/dev/iommu/iommu_gas.c
600
next == NULL ? 0 : next->start, next == NULL ? 0 : next->end,
sys/dev/iommu/iommu_gas.c
939
struct iommu_map_entry *entry, *next, *prev, key = {};
sys/dev/iommu/iommu_gas.c
954
next = RB_NFIND(iommu_gas_entries_tree, &domain->rb_root, &key);
sys/dev/iommu/iommu_gas.c
955
KASSERT(next != NULL, ("domain %p with end %#jx has no entry "
sys/dev/iommu/iommu_gas.c
958
entry_end = ummin(end, next->start);
sys/dev/iommu/iommu_gas.c
959
prev = RB_PREV(iommu_gas_entries_tree, &domain->rb_root, next);
sys/dev/iommu/iommu_gas.c
964
start = next->end;
sys/dev/ips/ips.c
178
SLIST_INSERT_HEAD(&sc->free_cmd_list, command, next);
sys/dev/ips/ips.c
206
SLIST_REMOVE_HEAD(&sc->free_cmd_list, next);
sys/dev/ips/ips.c
228
SLIST_INSERT_HEAD(&sc->free_cmd_list, command, next);
sys/dev/ips/ips.h
109
SLIST_ENTRY(ips_command) next;
sys/dev/ipw/if_ipw.c
1318
SLIST_INSERT_HEAD(&sc->free_shdr, shdr, next);
sys/dev/ipw/if_ipw.c
1326
SLIST_INSERT_HEAD(&sc->free_sbuf, sbuf, next);
sys/dev/ipw/if_ipw.c
1638
SLIST_REMOVE_HEAD(&sc->free_sbuf, next);
sys/dev/ipw/if_ipw.c
1639
SLIST_REMOVE_HEAD(&sc->free_shdr, next);
sys/dev/ipw/if_ipw.c
627
SLIST_INSERT_HEAD(&sc->free_shdr, shdr, next);
sys/dev/ipw/if_ipw.c
650
SLIST_INSERT_HEAD(&sc->free_sbuf, sbuf, next);
sys/dev/ipw/if_ipwvar.h
46
SLIST_ENTRY(ipw_soft_hdr) next;
sys/dev/ipw/if_ipwvar.h
53
SLIST_ENTRY(ipw_soft_buf) next;
sys/dev/irdma/irdma_ctrl.c
3927
int next;
sys/dev/irdma/irdma_ctrl.c
3930
next = IRDMA_RING_GET_NEXT_TAIL(ceq->ceq_ring, 0);
sys/dev/irdma/irdma_ctrl.c
3933
ceqe = IRDMA_GET_CEQ_ELEM_AT_POS(ceq, next);
sys/dev/irdma/irdma_ctrl.c
3944
next = IRDMA_RING_GET_NEXT_TAIL(ceq->ceq_ring, i);
sys/dev/irdma/irdma_ctrl.c
3945
if (!next)
sys/dev/irdma/irdma_ctrl.c
72
entry = (head)->next;
sys/dev/irdma/irdma_ctrl.c
75
entry = (lastentry)->next;
sys/dev/irdma/irdma_main.h
483
u32 *req_rsrc_num, u32 *next)
sys/dev/irdma/irdma_main.h
489
rsrc_num = find_next_zero_bit(rsrc_array, max_rsrc, *next);
sys/dev/irdma/irdma_main.h
501
*next = rsrc_num + 1;
sys/dev/irdma/irdma_main.h
502
if (*next == max_rsrc)
sys/dev/irdma/irdma_main.h
503
*next = 0;
sys/dev/irdma/irdma_pble.c
55
chunk = (struct irdma_chunk *)(&pinfo->clist)->next;
sys/dev/irdma/irdma_puda.c
1005
nextbuf = buf->next;
sys/dev/irdma/irdma_puda.c
1078
buf->next = nextbuf;
sys/dev/irdma/irdma_puda.c
1099
buf->next = nextbuf;
sys/dev/irdma/irdma_puda.c
1774
tmpbuf = (struct irdma_puda_buf *)(rxlist)->next;
sys/dev/irdma/irdma_puda.c
1781
tmpbuf = (struct irdma_puda_buf *)(plist)->next;
sys/dev/irdma/irdma_puda.c
61
buf = (struct irdma_puda_buf *)(list)->next;
sys/dev/irdma/irdma_puda.h
91
struct irdma_puda_buf *next; /* for alloclist in rsrc struct */
sys/dev/irdma/irdma_utils.c
2061
struct list_head *chunk_entry = (&pprm->clist)->next;
sys/dev/irdma/irdma_utils.c
2080
chunk_entry = (&pchunk->list)->next;
sys/dev/irdma/irdma_utils.c
2225
u32 next = 1;
sys/dev/irdma/irdma_utils.c
2229
&node_id, &next))
sys/dev/irdma/irdma_utils.c
408
cqp_request = list_entry(cqp->cqp_avail_reqs.next,
sys/dev/irdma/irdma_utils.c
830
entry = list->next;
sys/dev/irdma/irdma_verbs.c
2591
ib_wr = ib_wr->next;
sys/dev/irdma/irdma_verbs.c
2642
ib_wr = ib_wr->next;
sys/dev/isci/scil/sci_base_observer.c
78
this_observer->next = NULL;
sys/dev/isci/scil/sci_base_observer.h
96
struct SCI_BASE_OBSERVER *next;
sys/dev/isci/scil/sci_base_subject.c
105
observer->next = this_subject->observer_list;
sys/dev/isci/scil/sci_base_subject.c
127
current_observer = current_observer->next;
sys/dev/isci/scil/sci_base_subject.c
136
previous_observer->next = observer->next;
sys/dev/isci/scil/sci_base_subject.c
141
this_subject->observer_list = observer->next;
sys/dev/isci/scil/sci_base_subject.c
145
observer->next = NULL;
sys/dev/isci/scil/sci_base_subject.c
94
this_observer = this_observer->next;
sys/dev/isci/scil/sci_fast_list.h
101
(element)->next = (element)->prev = NULL; \
sys/dev/isci/scil/sci_fast_list.h
140
#define sci_fast_list_get_next(element) ((element)->next)
sys/dev/isci/scil/sci_fast_list.h
202
struct SCI_FAST_LIST_ELEMENT *next;
sys/dev/isci/scil/sci_fast_list.h
230
element->next = anchor->list_head;
sys/dev/isci/scil/sci_fast_list.h
252
element->next = NULL;
sys/dev/isci/scil/sci_fast_list.h
256
anchor->list_tail->next = element;
sys/dev/isci/scil/sci_fast_list.h
283
anchor->list_head = anchor->list_head->next;
sys/dev/isci/scil/sci_fast_list.h
289
element->next = element->prev = NULL;
sys/dev/isci/scil/sci_fast_list.h
310
element->next = element->prev = NULL;
sys/dev/isci/scil/sci_fast_list.h
324
if ( element->next == NULL )
sys/dev/isci/scil/sci_fast_list.h
327
element->next->prev = element->prev;
sys/dev/isci/scil/sci_fast_list.h
330
element->owning_list->list_head = element->next;
sys/dev/isci/scil/sci_fast_list.h
332
element->prev->next = element->next;
sys/dev/isci/scil/sci_fast_list.h
335
element->next = element->prev = NULL;
sys/dev/isci/scil/sci_simple_list.h
128
#define sci_simple_list_get_next(element) ((element)->next)
sys/dev/isci/scil/sci_simple_list.h
161
struct SCI_SIMPLE_LIST_ELEMENT *next;
sys/dev/isci/scil/sci_simple_list.h
183
element->next = anchor->list_head;
sys/dev/isci/scil/sci_simple_list.h
211
anchor->list_tail->next = element;
sys/dev/isci/scil/sci_simple_list.h
238
anchor->list_head = anchor->list_head->next;
sys/dev/isci/scil/sci_simple_list.h
302
source_anchor->list_tail->next = dest_anchor->list_head;
sys/dev/isci/scil/sci_simple_list.h
339
dest_anchor->list_tail->next = source_anchor->list_head;
sys/dev/isci/scil/sci_simple_list.h
98
(element)->next = NULL; \
sys/dev/isci/scil/scif_sas_smp_activity_clear_affiliation.c
203
if (smp_device->curr_clear_affiliation_phy->list_element.next != NULL)
sys/dev/isci/scil/scif_sas_smp_activity_clear_affiliation.c
207
smp_device->curr_clear_affiliation_phy->list_element.next->object
sys/dev/iser/iser_memory.c
193
wr->next = &fastreg_wr.wr;
sys/dev/iser/iser_verbs.c
862
rx_wr.next = NULL;
sys/dev/iser/iser_verbs.c
889
rx_wr->next = rx_wr + 1;
sys/dev/iser/iser_verbs.c
894
rx_wr->next = NULL; /* mark end of work requests list */
sys/dev/iser/iser_verbs.c
923
send_wr.next = NULL;
sys/dev/isp/isp.c
2789
next:
sys/dev/isp/isp.c
2809
goto next;
sys/dev/isp/isp_freebsd.c
1470
STAILQ_INSERT_TAIL(&tptr->restart_queue, ntp, next);
sys/dev/isp/isp_freebsd.c
151
STAILQ_INSERT_TAIL(&fc->ntfree, &fc->ntpool[i], next);
sys/dev/isp/isp_freebsd.c
154
LIST_INSERT_HEAD(&fc->atfree, &fc->atpool[i], next);
sys/dev/isp/isp_freebsd.c
1897
STAILQ_FOREACH_SAFE(ntp, &tptr->restart_queue, next, tmp) {
sys/dev/isp/isp_freebsd.c
1901
inot_private_data, next);
sys/dev/isp/isp_freebsd.c
3427
for (nxp = fc->nexus_hash[i]; nxp != NULL; nxp = nxp->next) {
sys/dev/isp/isp_freebsd.c
3453
nxp = nxp->next;
sys/dev/isp/isp_freebsd.c
3463
fc->nexus_free_list = nxp->next;
sys/dev/isp/isp_freebsd.c
3467
nxp->next = fc->nexus_hash[idx];
sys/dev/isp/isp_freebsd.c
3495
isp->isp_osinfo.ecmd_free = ecmd->next;
sys/dev/isp/isp_freebsd.c
3503
ecmd->next = isp->isp_osinfo.ecmd_free;
sys/dev/isp/isp_freebsd.c
607
isp->isp_osinfo.pcmd_free = ((struct isp_pcmd *)ISP_PCMD(ccb))->next;
sys/dev/isp/isp_freebsd.c
618
PISP_PCMD(ccb)->next = isp->isp_osinfo.pcmd_free;
sys/dev/isp/isp_freebsd.c
656
SLIST_FOREACH(tptr, &fc->lun_hash[LUN_HASH_FUNC(lun)], next) {
sys/dev/isp/isp_freebsd.c
674
STAILQ_REMOVE_HEAD(&rq, next);
sys/dev/isp/isp_freebsd.c
701
SLIST_FOREACH(tptr, &fc->lun_hash[i], next)
sys/dev/isp/isp_freebsd.c
726
LIST_REMOVE(atp, next);
sys/dev/isp/isp_freebsd.c
729
LIST_INSERT_HEAD(&fc->atused[ATPDPHASH(tag)], atp, next);
sys/dev/isp/isp_freebsd.c
740
LIST_FOREACH(atp, &fc->atused[ATPDPHASH(tag)], next) {
sys/dev/isp/isp_freebsd.c
757
LIST_FOREACH(atp, &fc->atused[ATPDPHASH(tag)], next) {
sys/dev/isp/isp_freebsd.c
771
LIST_REMOVE(atp, next);
sys/dev/isp/isp_freebsd.c
773
LIST_INSERT_HEAD(&fc->atfree, atp, next);
sys/dev/isp/isp_freebsd.c
799
STAILQ_REMOVE_HEAD(&fc->ntfree, next);
sys/dev/isp/isp_freebsd.c
822
STAILQ_INSERT_HEAD(&fc->ntfree, ntp, next);
sys/dev/isp/isp_freebsd.c
840
SLIST_INSERT_HEAD(&fc->lun_hash[LUN_HASH_FUNC(lun)], tptr, next);
sys/dev/isp/isp_freebsd.c
864
STAILQ_REMOVE_HEAD(&tptr->restart_queue, next);
sys/dev/isp/isp_freebsd.c
867
SLIST_REMOVE(&fc->lun_hash[LUN_HASH_FUNC(tptr->ts_lun)], tptr, tstate, next);
sys/dev/isp/isp_freebsd.h
137
STAILQ_ENTRY(inot_private_data) next;
sys/dev/isp/isp_freebsd.h
151
SLIST_ENTRY(tstate) next;
sys/dev/isp/isp_freebsd.h
167
struct isp_pcmd * next;
sys/dev/isp/isp_freebsd.h
182
struct isp_nexus *next;
sys/dev/isp/isp_freebsd.h
78
union isp_ecmd * next;
sys/dev/isp/isp_freebsd.h
91
LIST_ENTRY(atio_private_data) next;
sys/dev/isp/isp_pci.c
1085
fc->nexus_free_list = n->next;
sys/dev/isp/isp_pci.c
1090
n->next = fc->nexus_free_list;
sys/dev/isp/isp_pci.c
1123
pcmd->next = NULL;
sys/dev/isp/isp_pci.c
1125
pcmd->next = &isp->isp_osinfo.pcmd_pool[i+1];
sys/dev/isp/isp_pci.c
1179
fc->nexus_free_list = n->next;
sys/dev/isp/isp_pci.c
981
ecmd->next = NULL;
sys/dev/isp/isp_pci.c
983
ecmd->next = ecmd + 1;
sys/dev/iwi/if_iwi.c
1616
while (txq->next != hw) {
sys/dev/iwi/if_iwi.c
1617
data = &txq->data[txq->next];
sys/dev/iwi/if_iwi.c
1618
DPRINTFN(15, ("tx done idx=%u\n", txq->next));
sys/dev/iwi/if_iwi.c
1626
txq->next = (txq->next + 1) % IWI_TX_RING_COUNT;
sys/dev/iwi/if_iwi.c
2744
int i, next, band, b, bstart;
sys/dev/iwi/if_iwi.c
2751
next = 0; /* next open slot */
sys/dev/iwi/if_iwi.c
2761
(next - bstart) | band;
sys/dev/iwi/if_iwi.c
2763
band = b, bstart = next++;
sys/dev/iwi/if_iwi.c
2765
if (next >= IWI_SCAN_CHANNELS) {
sys/dev/iwi/if_iwi.c
2769
scan.channels[next] = ieee80211_chan2ieee(ic, chan);
sys/dev/iwi/if_iwi.c
2770
set_scan_type(&scan, next, scan_type(ss, chan));
sys/dev/iwi/if_iwi.c
2771
next++;
sys/dev/iwi/if_iwi.c
2773
scan.channels[bstart] = (next - bstart) | band;
sys/dev/iwi/if_iwi.c
552
ring->cur = ring->next = 0;
sys/dev/iwi/if_iwi.c
587
ring->cur = ring->next = 0;
sys/dev/iwi/if_iwi.c
612
ring->cur = ring->next = 0;
sys/dev/iwi/if_iwi.c
694
ring->cur = ring->next = 0;
sys/dev/iwi/if_iwivar.h
70
int next;
sys/dev/iwi/if_iwivar.h
91
int next;
sys/dev/iwn/if_iwn.c
1626
uint16_t prev, base, next;
sys/dev/iwn/if_iwn.c
1662
error = iwn_read_prom_data(sc, base, &next, 2);
sys/dev/iwn/if_iwn.c
1665
if (next == 0) /* End of linked-list. */
sys/dev/iwn/if_iwn.c
1668
base = le16toh(next);
sys/dev/iwn/if_iwn.c
8393
goto next;
sys/dev/iwn/if_iwn.c
8461
next: /* TLV fields are 32-bit aligned. */
sys/dev/ixgbe/ixgbe_common.c
2594
u32 addr_count, ixgbe_mc_addr_itr next)
sys/dev/ixgbe/ixgbe_common.c
2623
addr = next(hw, &addr_list, &vmdq);
sys/dev/ixgbe/ixgbe_common.c
2737
u32 mc_addr_count, ixgbe_mc_addr_itr next,
sys/dev/ixgbe/ixgbe_common.c
2761
ixgbe_set_mta(hw, next(hw, &mc_addr_list, &vmdq));
sys/dev/ixgbe/ixgbe_vf.c
390
u32 mc_addr_count, ixgbe_mc_addr_itr next,
sys/dev/ixgbe/ixgbe_vf.c
419
vector = ixgbe_mta_vector(hw, next(hw, &mc_addr_list, &vmdq));
sys/dev/ixl/ixl_pf_main.c
3939
u16 next = 0;
sys/dev/ixl/ixl_pf_main.c
3953
sizeof(aq_buf), &next, NULL);
sys/dev/ixl/ixl_pf_main.c
3962
if (next)
sys/dev/ixl/ixl_pf_main.c
3964
__func__, next);
sys/dev/ixl/ixl_pf_main.c
911
u16 next = 0;
sys/dev/ixl/ixl_pf_main.c
916
sizeof(aq_buf), &next, NULL);
sys/dev/kbdmux/kbdmux.c
1040
SLIST_INSERT_HEAD(&state->ks_kbds, k, next);
sys/dev/kbdmux/kbdmux.c
1054
SLIST_FOREACH(k, &state->ks_kbds, next)
sys/dev/kbdmux/kbdmux.c
1062
SLIST_REMOVE(&state->ks_kbds, k, kbdmux_kbd, next);
sys/dev/kbdmux/kbdmux.c
1143
SLIST_FOREACH(k, &state->ks_kbds, next)
sys/dev/kbdmux/kbdmux.c
1174
SLIST_FOREACH(k, &state->ks_kbds, next)
sys/dev/kbdmux/kbdmux.c
1224
SLIST_FOREACH(k, &state->ks_kbds, next)
sys/dev/kbdmux/kbdmux.c
1241
SLIST_FOREACH(k, &state->ks_kbds, next)
sys/dev/kbdmux/kbdmux.c
128
SLIST_ENTRY(kbdmux_kbd) next; /* link to next */
sys/dev/kbdmux/kbdmux.c
1338
SLIST_FOREACH(k, &state->ks_kbds, next)
sys/dev/kbdmux/kbdmux.c
280
SLIST_FOREACH(k, &state->ks_kbds, next)
sys/dev/kbdmux/kbdmux.c
286
SLIST_REMOVE(&state->ks_kbds, k, kbdmux_kbd, next);
sys/dev/kbdmux/kbdmux.c
526
SLIST_REMOVE_HEAD(&state->ks_kbds, next);
sys/dev/kbdmux/kbdmux.c
680
SLIST_FOREACH(k, &state->ks_kbds, next) {
sys/dev/kbdmux/kbdmux.c
986
SLIST_FOREACH(k, &state->ks_kbds, next)
sys/dev/liquidio/lio_rxtx.c
233
struct mbuf *next;
sys/dev/liquidio/lio_rxtx.c
241
while ((next = drbr_peek(ifp, iq->br)) != NULL) {
sys/dev/liquidio/lio_rxtx.c
242
err = lio_xmit(lio, iq, &next);
sys/dev/liquidio/lio_rxtx.c
244
if (next == NULL)
sys/dev/liquidio/lio_rxtx.c
247
drbr_putback(ifp, iq->br, next);
sys/dev/liquidio/lio_rxtx.c
252
ETHER_BPF_MTAP(ifp, next);
sys/dev/mfi/mfi_tbolt.c
529
TAILQ_INSERT_TAIL(&(sc->mfi_cmd_tbolt_tqh), cmd, next);
sys/dev/mfi/mfi_tbolt.c
650
TAILQ_INSERT_TAIL(&sc->mfi_cmd_tbolt_tqh, tbolt_cmd, next);
sys/dev/mfi/mfi_tbolt.c
690
goto next;
sys/dev/mfi/mfi_tbolt.c
697
goto next;
sys/dev/mfi/mfi_tbolt.c
721
next:
sys/dev/mfi/mfi_tbolt.c
772
TAILQ_REMOVE(&sc->mfi_cmd_tbolt_tqh, cmd, next);
sys/dev/mfi/mfivar.h
411
TAILQ_ENTRY(mfi_cmd_tbolt) next;
sys/dev/mlx4/mlx4_core/icm.h
104
if (iter->chunk->list.next == &iter->icm->chunk_list) {
sys/dev/mlx4/mlx4_core/icm.h
109
iter->chunk = list_entry(iter->chunk->list.next,
sys/dev/mlx4/mlx4_core/icm.h
91
NULL : list_entry(icm->chunk_list.next,
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
292
struct mlx4_zone_entry *next = list_first_entry(&entry->list,
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
293
typeof(*next),
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
296
if (next->priority == entry->priority)
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
297
list_add_tail(&next->prio_list, &entry->prio_list);
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
129
int next;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
2634
priv->cmd.context[i].next = i + 1;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
2642
priv->cmd.context[priv->cmd.max_cmds - 1].next = -1;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
352
cmd->free_head = context->next;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
399
context->next = cmd->free_head;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
698
cmd->free_head = context->next;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
772
context->next = cmd->free_head;
sys/dev/mlx4/mlx4_core/mlx4_pd.c
184
uar = list_entry(priv->bf_list.next, struct mlx4_uar, bf_list);
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
244
list_add_tail(&filter->next, &priv->filters);
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
257
list_del(&filter->next);
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
357
list_for_each_entry_safe(filter, tmp, &priv->filters, next) {
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
358
list_move(&filter->next, &del_list);
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
363
list_for_each_entry_safe(filter, tmp, &del_list, next) {
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
376
list_for_each_entry_safe(filter, tmp, &priv->filters, next) {
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
385
list_move(&filter->next, &del_list);
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
393
if (last_filter && (&last_filter->next != priv->filters.next))
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
394
list_move(&priv->filters, &last_filter->next);
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
398
list_for_each_entry_safe(filter, tmp, &del_list, next)
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
95
struct list_head next;
sys/dev/mlx4/mlx4_en/mlx4_en_port.c
137
static u64 en_stats_adder(__be64 *start, __be64 *next, int num)
sys/dev/mlx4/mlx4_en/mlx4_en_port.c
142
int offset = next - start;
sys/dev/mlx4/mlx4_en/mlx4_en_rx.c
778
goto next;
sys/dev/mlx4/mlx4_en/mlx4_en_rx.c
789
goto next;
sys/dev/mlx4/mlx4_en/mlx4_en_rx.c
797
goto next;
sys/dev/mlx4/mlx4_en/mlx4_en_rx.c
829
goto next;
sys/dev/mlx4/mlx4_en/mlx4_en_rx.c
843
next:
sys/dev/mlx4/mlx4_ib/mlx4_ib_alias_GUID.c
815
cb_ctx = list_entry(det->cb_list.next,
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
1314
recv_wr.next = NULL;
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
1432
wr.wr.next = NULL;
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
644
wr.wr.next = NULL;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
2980
for (nreq = 0; wr; ++nreq, wr = wr->next) {
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
3225
if (wr->next) {
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
3286
for (nreq = 0; wr; ++nreq, wr = wr->next) {
sys/dev/mlx4/mlx4_ib/mlx4_ib_srq.c
149
next = get_wqe(srq, i);
sys/dev/mlx4/mlx4_ib/mlx4_ib_srq.c
150
next->next_wqe_index =
sys/dev/mlx4/mlx4_ib/mlx4_ib_srq.c
153
for (scatter = (void *) (next + 1);
sys/dev/mlx4/mlx4_ib/mlx4_ib_srq.c
154
(void *) scatter < (void *) next + desc_size;
sys/dev/mlx4/mlx4_ib/mlx4_ib_srq.c
294
struct mlx4_wqe_srq_next_seg *next;
sys/dev/mlx4/mlx4_ib/mlx4_ib_srq.c
299
next = get_wqe(srq, srq->tail);
sys/dev/mlx4/mlx4_ib/mlx4_ib_srq.c
300
next->next_wqe_index = cpu_to_be16(wqe_index);
sys/dev/mlx4/mlx4_ib/mlx4_ib_srq.c
310
struct mlx4_wqe_srq_next_seg *next;
sys/dev/mlx4/mlx4_ib/mlx4_ib_srq.c
326
for (nreq = 0; wr; ++nreq, wr = wr->next) {
sys/dev/mlx4/mlx4_ib/mlx4_ib_srq.c
341
next = get_wqe(srq, srq->head);
sys/dev/mlx4/mlx4_ib/mlx4_ib_srq.c
342
srq->head = be16_to_cpu(next->next_wqe_index);
sys/dev/mlx4/mlx4_ib/mlx4_ib_srq.c
343
scat = (struct mlx4_wqe_data_seg *) (next + 1);
sys/dev/mlx4/mlx4_ib/mlx4_ib_srq.c
80
struct mlx4_wqe_srq_next_seg *next;
sys/dev/mlx5/device.h
668
__be64 next;
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1134
block->next = cpu_to_be64(dma);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1277
msg = list_entry(ent->head.next, struct mlx5_cmd_msg,
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
231
if (block->next == 0)
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
296
if (block->next == 0)
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
775
if (block->next == 0)
sys/dev/mlx5/mlx5_core/mlx5_fs_counters.c
125
struct list_head *next = mlx5_fc_counters_lookup_next(dev, counter->id);
sys/dev/mlx5/mlx5_core/mlx5_fs_counters.c
127
list_add_tail(&counter->list, next);
sys/dev/mlx5/mlx5_core/mlx5_health.c
451
unsigned long next;
sys/dev/mlx5/mlx5_core/mlx5_health.c
453
get_random_bytes(&next, sizeof(next));
sys/dev/mlx5/mlx5_core/mlx5_health.c
454
next %= HZ;
sys/dev/mlx5/mlx5_core/mlx5_health.c
455
next += jiffies + MLX5_HEALTH_POLL_INTERVAL;
sys/dev/mlx5/mlx5_core/mlx5_health.c
457
return next;
sys/dev/mlx5/mlx5_core/mlx5_uar.c
229
up = list_entry(head->next, struct mlx5_uars_page, list);
sys/dev/mlx5/mlx5_en/en.h
1179
struct mlx5_wqe_srq_next_seg next;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
1199
struct mlx5e_clbr_point *next, *curr;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
1208
next = &priv->clbr_points[clbr_curr_next];
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
1210
next->base_prev = curr->base_curr;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
1211
next->clbr_hw_prev = curr->clbr_hw_curr;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
1213
next->clbr_hw_curr = mlx5e_hw_clock(priv);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
1214
if (((next->clbr_hw_curr - curr->clbr_hw_curr) >> MLX5E_TSTMP_PREC) ==
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
1219
next->clbr_hw_curr, curr->clbr_hw_prev);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
1227
next->base_curr = mlx5e_timespec2usec(&ts);
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
1232
atomic_store_rel_int(&next->clbr_gen, ++(priv->clbr_gen));
sys/dev/mlx5/mlx5_en/mlx5_en_rx.c
119
mlx5_wq_ll_push(&rq->wq, be16_to_cpu(wqe->next.next_wqe_index));
sys/dev/mlx5/mlx5_en/mlx5_en_rx.c
651
&wqe->next.next_wqe_index);
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
231
u16 next;
sys/dev/mlx5/mlx5_ib/mlx5_ib_cq.c
394
tail = qp->sq.w_list[idx].next;
sys/dev/mlx5/mlx5_ib/mlx5_ib_cq.c
396
tail = qp->sq.w_list[idx].next;
sys/dev/mlx5/mlx5_ib/mlx5_ib_cq.c
462
wq->last_poll = wq->w_list[idx].next;
sys/dev/mlx5/mlx5_ib/mlx5_ib_cq.c
650
struct mlx5_ib_wc *soft_wc, *next;
sys/dev/mlx5/mlx5_ib/mlx5_ib_cq.c
653
list_for_each_entry_safe(soft_wc, next, &cq->wc_list, list) {
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
2483
event = list_entry(ev_queue->event_list.next,
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
2493
list_del(ev_queue->event_list.next);
sys/dev/mlx5/mlx5_ib/mlx5_ib_gsi.c
484
for (; wr; wr = wr->next) {
sys/dev/mlx5/mlx5_ib/mlx5_ib_gsi.c
487
cur_wr.wr.next = NULL;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
587
umrwr->wr.next = NULL;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3892
qp->sq.w_list[idx].next = qp->sq.cur_post;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3935
for (nreq = 0; wr; nreq++, wr = wr->next) {
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4239
for (nreq = 0; wr; nreq++, wr = wr->next) {
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
161
struct mlx5_wqe_srq_next_seg *next;
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
180
next = get_wqe(srq, i);
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
181
next->next_wqe_index =
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
417
struct mlx5_wqe_srq_next_seg *next;
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
422
next = get_wqe(srq, srq->tail);
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
423
next->next_wqe_index = cpu_to_be16(wqe_index);
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
433
struct mlx5_wqe_srq_next_seg *next;
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
450
for (nreq = 0; wr; nreq++, wr = wr->next) {
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
465
next = get_wqe(srq, srq->head);
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
466
srq->head = be16_to_cpu(next->next_wqe_index);
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
467
scat = (struct mlx5_wqe_data_seg *)(next + 1);
sys/dev/mlxfw/mlxfw_mfa2_tlv_multi.c
55
const u8 *next;
sys/dev/mlxfw/mlxfw_mfa2_tlv_multi.c
66
next = (const u8 *) tlv + tlv_len;
sys/dev/mlxfw/mlxfw_mfa2_tlv_multi.c
67
return mlxfw_mfa2_tlv_get(mfa2_file, next);
sys/dev/mpi3mr/mpi3mr.c
5221
TAILQ_INSERT_TAIL(&(sc->cmd_list_head), cmd, next);
sys/dev/mpi3mr/mpi3mr.c
5243
TAILQ_REMOVE(&sc->cmd_list_head, cmd, next);
sys/dev/mpi3mr/mpi3mr.c
5274
TAILQ_INSERT_HEAD(&(sc->cmd_list_head), cmd, next);
sys/dev/mpi3mr/mpi3mr.h
469
TAILQ_ENTRY(mpi3mr_cmd) next;
sys/dev/mrsas/mrsas.c
2887
TAILQ_INSERT_TAIL(&(sc->mrsas_mpt_cmd_list_head), cmd, next);
sys/dev/mrsas/mrsas.c
3066
TAILQ_REMOVE(&sc->mrsas_mfi_cmd_list_head, cmd, next);
sys/dev/mrsas/mrsas.c
3579
TAILQ_INSERT_HEAD(&(sc->mrsas_mpt_cmd_list_head), cmd_mpt, next);
sys/dev/mrsas/mrsas.c
3585
TAILQ_INSERT_HEAD(&(sc->mrsas_mfi_cmd_list_head), cmd_mfi, next);
sys/dev/mrsas/mrsas.h
1753
TAILQ_ENTRY(mrsas_mpt_cmd) next;
sys/dev/mrsas/mrsas.h
1783
TAILQ_ENTRY(mrsas_mfi_cmd) next;
sys/dev/mrsas/mrsas_cam.c
670
TAILQ_REMOVE(&sc->mrsas_mpt_cmd_list_head, cmd, next);
sys/dev/mrsas/mrsas_cam.c
705
TAILQ_INSERT_HEAD(&(sc->mrsas_mpt_cmd_list_head), cmd, next);
sys/dev/mrsas/mrsas_ioctl.c
635
TAILQ_INSERT_TAIL(&(sc->mrsas_mfi_cmd_list_head), cmd, next);
sys/dev/msk/if_msk.c
1202
int next;
sys/dev/msk/if_msk.c
1221
for (i = 0, next = 0; i < sc->msk_num_port; i++) {
sys/dev/msk/if_msk.c
1222
sc->msk_rxqstart[i] = next;
sys/dev/msk/if_msk.c
1223
sc->msk_rxqend[i] = next + sc->msk_rxqsize - 1;
sys/dev/msk/if_msk.c
1224
next = sc->msk_rxqend[i] + 1;
sys/dev/msk/if_msk.c
1225
sc->msk_txqstart[i] = next;
sys/dev/msk/if_msk.c
1226
sc->msk_txqend[i] = next + sc->msk_txqsize - 1;
sys/dev/msk/if_msk.c
1227
next = sc->msk_txqend[i] + 1;
sys/dev/mthca/mthca_cmd.c
1731
enum ib_qp_state next, u32 num, int is_ee,
sys/dev/mthca/mthca_cmd.c
1778
if (op[cur][next] == CMD_ERR2RST_QPEE) {
sys/dev/mthca/mthca_cmd.c
1793
op[cur][next], CMD_TIME_CLASS_C);
sys/dev/mthca/mthca_cmd.c
180
int next;
sys/dev/mthca/mthca_cmd.c
1827
op_mod, op[cur][next], CMD_TIME_CLASS_C);
sys/dev/mthca/mthca_cmd.c
423
dev->cmd.free_head = context->next;
sys/dev/mthca/mthca_cmd.c
455
context->next = dev->cmd.free_head;
sys/dev/mthca/mthca_cmd.c
565
dev->cmd.context[i].next = i + 1;
sys/dev/mthca/mthca_cmd.c
568
dev->cmd.context[dev->cmd.max_cmds - 1].next = -1;
sys/dev/mthca/mthca_cmd.h
309
enum ib_qp_state next, u32 num, int is_ee,
sys/dev/mthca/mthca_memfree.h
102
NULL : list_entry(icm->chunk_list.next,
sys/dev/mthca/mthca_memfree.h
115
if (iter->chunk->list.next == &iter->icm->chunk_list) {
sys/dev/mthca/mthca_memfree.h
120
iter->chunk = list_entry(iter->chunk->list.next,
sys/dev/mthca/mthca_qp.c
1163
struct mthca_next_seg *next;
sys/dev/mthca/mthca_qp.c
1211
next = get_recv_wqe(qp, i);
sys/dev/mthca/mthca_qp.c
1212
next->nda_op = cpu_to_be32(((i + 1) & (qp->rq.max - 1)) <<
sys/dev/mthca/mthca_qp.c
1214
next->ee_nds = cpu_to_be32(size);
sys/dev/mthca/mthca_qp.c
1216
for (scatter = (void *) (next + 1);
sys/dev/mthca/mthca_qp.c
1217
(void *) scatter < (void *) next + (1 << qp->rq.wqe_shift);
sys/dev/mthca/mthca_qp.c
1223
next = get_send_wqe(qp, i);
sys/dev/mthca/mthca_qp.c
1224
next->nda_op = cpu_to_be32((((i + 1) & (qp->sq.max - 1)) <<
sys/dev/mthca/mthca_qp.c
1230
next = get_recv_wqe(qp, i);
sys/dev/mthca/mthca_qp.c
1231
next->nda_op = htonl((((i + 1) % qp->rq.max) <<
sys/dev/mthca/mthca_qp.c
1646
for (nreq = 0; wr; ++nreq, wr = wr->next) {
sys/dev/mthca/mthca_qp.c
1847
for (nreq = 0; wr; wr = wr->next) {
sys/dev/mthca/mthca_qp.c
1961
for (nreq = 0; wr; ++nreq, wr = wr->next) {
sys/dev/mthca/mthca_qp.c
2188
for (nreq = 0; wr; ++nreq, wr = wr->next) {
sys/dev/mthca/mthca_qp.c
2244
struct mthca_next_seg *next;
sys/dev/mthca/mthca_qp.c
2256
next = get_send_wqe(qp, index);
sys/dev/mthca/mthca_qp.c
2258
next = get_recv_wqe(qp, index);
sys/dev/mthca/mthca_qp.c
2260
*dbd = !!(next->ee_nds & cpu_to_be32(MTHCA_NEXT_DBD));
sys/dev/mthca/mthca_qp.c
2261
if (next->ee_nds & cpu_to_be32(0x3f))
sys/dev/mthca/mthca_qp.c
2262
*new_wqe = (next->nda_op & cpu_to_be32(~0x3f)) |
sys/dev/mthca/mthca_qp.c
2263
(next->ee_nds & cpu_to_be32(0x3f));
sys/dev/mthca/mthca_srq.c
177
struct mthca_next_seg *next;
sys/dev/mthca/mthca_srq.c
179
next = wqe = get_wqe(srq, i);
sys/dev/mthca/mthca_srq.c
183
next->nda_op = htonl(((i + 1) << srq->wqe_shift) | 1);
sys/dev/mthca/mthca_srq.c
186
next->nda_op = 0;
sys/dev/mthca/mthca_srq.c
496
for (nreq = 0; wr; wr = wr->next) {
sys/dev/mthca/mthca_srq.c
592
for (nreq = 0; wr; ++nreq, wr = wr->next) {
sys/dev/mwl/if_mwl.c
2190
SLIST_INSERT_HEAD(&sc->sc_rxfree, rbuf, next);
sys/dev/mwl/if_mwl.c
2470
SLIST_REMOVE_HEAD(&sc->sc_rxfree, next);
sys/dev/mwl/if_mwl.c
2486
SLIST_INSERT_HEAD(&sc->sc_rxfree, buf, next);
sys/dev/mwl/if_mwl.c
4357
goto next;
sys/dev/mwl/if_mwl.c
4368
goto next;
sys/dev/mwl/if_mwl.c
4376
next:
sys/dev/mwl/if_mwlvar.h
149
SLIST_ENTRY(mwl_jumbo) next;
sys/dev/netmap/netmap.c
3371
struct nmreq_option **next, *src, **opt_tab, *opt;
sys/dev/netmap/netmap.c
3427
next = (struct nmreq_option **)&hdr->nr_options;
sys/dev/netmap/netmap.c
3428
src = *next;
sys/dev/netmap/netmap.c
3464
*next = opt;
sys/dev/netmap/netmap.c
3484
goto next;
sys/dev/netmap/netmap.c
3520
next:
sys/dev/netmap/netmap.c
3522
next = (struct nmreq_option **)&opt->nro_next;
sys/dev/netmap/netmap.c
3574
uint64_t next;
sys/dev/netmap/netmap.c
3577
next = src->nro_next;
sys/dev/netmap/netmap.c
3600
src = (struct nmreq_option *)(uintptr_t)next;
sys/dev/netmap/netmap_kern.h
353
struct netmap_kring *next;
sys/dev/netmap/netmap_mem2.c
181
struct netmap_mem_d *prev, *next;
sys/dev/netmap/netmap_mem2.c
1850
nmd = nmd->next;
sys/dev/netmap/netmap_mem2.c
2249
struct netmap_mem_ext *next, *prev;
sys/dev/netmap/netmap_mem2.c
2259
e->next = netmap_mem_ext_list;
sys/dev/netmap/netmap_mem2.c
2270
e->prev->next = e->next;
sys/dev/netmap/netmap_mem2.c
2272
netmap_mem_ext_list = e->next;
sys/dev/netmap/netmap_mem2.c
2273
if (e->next)
sys/dev/netmap/netmap_mem2.c
2274
e->next->prev = e->prev;
sys/dev/netmap/netmap_mem2.c
2275
e->prev = e->next = NULL;
sys/dev/netmap/netmap_mem2.c
2284
for (e = netmap_mem_ext_list; e; e = e->next) {
sys/dev/netmap/netmap_mem2.c
2495
struct mem_pt_if *next;
sys/dev/netmap/netmap_mem2.c
2530
ptif->next = ptnmd->pt_ifs;
sys/dev/netmap/netmap_mem2.c
2549
for (curr = ptnmd->pt_ifs; curr; curr = curr->next) {
sys/dev/netmap/netmap_mem2.c
2569
for (curr = ptnmd->pt_ifs; curr; curr = curr->next) {
sys/dev/netmap/netmap_mem2.c
2572
prev->next = curr->next;
sys/dev/netmap/netmap_mem2.c
2574
ptnmd->pt_ifs = curr->next;
sys/dev/netmap/netmap_mem2.c
2879
scan = scan->next;
sys/dev/netmap/netmap_mem2.c
583
.next = &nm_mem,
sys/dev/netmap/netmap_mem2.c
676
scan = scan->next;
sys/dev/netmap/netmap_mem2.c
682
nmd->next = scan;
sys/dev/netmap/netmap_mem2.c
683
scan->prev->next = nmd;
sys/dev/netmap/netmap_mem2.c
713
nmd->prev->next = nmd->next;
sys/dev/netmap/netmap_mem2.c
714
nmd->next->prev = nmd->prev;
sys/dev/netmap/netmap_mem2.c
719
nmd->prev = nmd->next = NULL;
sys/dev/netmap/netmap_mem2.c
736
nmd = nmd->next;
sys/dev/netmap/netmap_monitor.c
249
kring->zmon_list[NR_TX].next == NULL &&
sys/dev/netmap/netmap_monitor.c
250
kring->zmon_list[NR_RX].next == NULL;
sys/dev/netmap/netmap_monitor.c
343
ikring->zmon_list[t].next = mkring;
sys/dev/netmap/netmap_monitor.c
346
mz->next = NULL;
sys/dev/netmap/netmap_monitor.c
393
if (mz->next != NULL) {
sys/dev/netmap/netmap_monitor.c
394
mz->next->zmon_list[t].prev = mz->prev;
sys/dev/netmap/netmap_monitor.c
411
mz->prev->zmon_list[t].next = mz->next;
sys/dev/netmap/netmap_monitor.c
414
mz->next = NULL;
sys/dev/netmap/netmap_monitor.c
481
for (zkring = z->next; zkring != NULL;
sys/dev/netmap/netmap_monitor.c
482
zkring = zkring->zmon_list[t].next)
sys/dev/netmap/netmap_monitor.c
484
struct netmap_monitor_adapter *next =
sys/dev/netmap/netmap_monitor.c
487
netmap_adapter_put(next->priv.np_na); /* nop if null */
sys/dev/netmap/netmap_monitor.c
488
next->priv.np_na = NULL;
sys/dev/netmap/netmap_monitor.c
493
if (z->next != NULL)
sys/dev/netmap/netmap_monitor.c
494
z->next->zmon_list[t].prev = NULL;
sys/dev/netmap/netmap_monitor.c
495
z->next = NULL;
sys/dev/netmap/netmap_monitor.c
589
struct netmap_kring *mkring = kring->zmon_list[tx].next;
sys/dev/netmap/netmap_monitor.c
819
if (kring->zmon_list[NR_TX].next != NULL) {
sys/dev/netmap/netmap_monitor.c
833
if (kring->zmon_list[NR_RX].next != NULL) {
sys/dev/netmap/netmap_vale.c
1025
if (next == NM_FT_NULL && brd_next == NM_FT_NULL)
sys/dev/netmap/netmap_vale.c
831
u_int dst_nr, lim, j, d_i, next, brd_next;
sys/dev/netmap/netmap_vale.c
863
next = d->bq_head;
sys/dev/netmap/netmap_vale.c
956
if (next < brd_next) {
sys/dev/netmap/netmap_vale.c
957
ft_p = ft + next;
sys/dev/netmap/netmap_vale.c
958
next = ft_p->ft_next;
sys/dev/nfe/if_nfe.c
1095
ring->cur = ring->next = 0;
sys/dev/nfe/if_nfe.c
1302
ring->cur = ring->next = 0;
sys/dev/nfe/if_nfe.c
1463
ring->cur = ring->next = 0;
sys/dev/nfe/if_nfe.c
1538
ring->cur = ring->next = 0;
sys/dev/nfe/if_nfe.c
2308
for (cons = sc->txq.next; cons != sc->txq.cur;
sys/dev/nfe/if_nfe.c
2357
sc->txq.next = cons;
sys/dev/nfe/if_nfevar.h
34
int next;
sys/dev/nfe/if_nfevar.h
53
int next;
sys/dev/ntb/ntb.c
117
cpp = &nc->next;
sys/dev/ntb/ntb.c
157
*cpp = (*cpp)->next;
sys/dev/ntb/ntb.c
227
for (nc = *cpp; nc != NULL; nc = nc->next) {
sys/dev/ntb/ntb.c
242
for (nc = *cpp; nc != NULL; nc = nc->next) {
sys/dev/ntb/ntb.c
288
for (nc1 = *cpp; nc1 != NULL; nc1 = nc1->next) {
sys/dev/ntb/ntb.c
308
for (nc1 = *cpp; nc1 != NULL; nc1 = nc1->next) {
sys/dev/ntb/ntb.c
56
struct ntb_child *next;
sys/dev/ntb/ntb_transport.c
198
struct ntb_transport_child *next;
sys/dev/ntb/ntb_transport.c
472
cpp = &nc->next;
sys/dev/ntb/ntb_transport.c
532
*cpp = (*cpp)->next;
sys/dev/nvdimm/nvdimm.c
203
struct nvdimm_label_entry *entry, *i, *next;
sys/dev/nvdimm/nvdimm.c
232
SLIST_FOREACH_SAFE(i, &nv->labels, link, next) {
sys/dev/nvdimm/nvdimm.c
233
if (next == NULL ||
sys/dev/nvdimm/nvdimm.c
234
entry->label.dimm_phys_addr <= next->label.dimm_phys_addr) {
sys/dev/nvdimm/nvdimm.c
405
struct nvdimm_label_entry *label, *next;
sys/dev/nvdimm/nvdimm.c
411
SLIST_FOREACH_SAFE(label, &nv->labels, link, next) {
sys/dev/nvdimm/nvdimm_acpi.c
208
struct SPA_mapping *spa, *next;
sys/dev/nvdimm/nvdimm_acpi.c
211
SLIST_FOREACH_SAFE(spa, &root->spas, link, next) {
sys/dev/nvdimm/nvdimm_e820.c
244
struct SPA_mapping *spa, *next;
sys/dev/nvdimm/nvdimm_e820.c
248
SLIST_FOREACH_SAFE(spa, &sc->spas, link, next) {
sys/dev/nvdimm/nvdimm_ns.c
88
struct nvdimm_namespace *ns, *next;
sys/dev/nvdimm/nvdimm_ns.c
90
SLIST_FOREACH_SAFE(ns, &spa->namespaces, link, next) {
sys/dev/oce/oce_if.c
1428
struct mbuf *next = NULL;
sys/dev/oce/oce_if.c
1445
while ((next = drbr_peek(ifp, br)) != NULL) {
sys/dev/oce/oce_if.c
1446
if (oce_tx(sc, &next, queue_index)) {
sys/dev/oce/oce_if.c
1447
if (next == NULL) {
sys/dev/oce/oce_if.c
1450
drbr_putback(ifp, br, next);
sys/dev/oce/oce_if.c
2908
sc = sc->next;
sys/dev/oce/oce_if.c
365
sc->next =NULL;
sys/dev/oce/oce_if.c
367
softc_tail->next = sc;
sys/dev/oce/oce_if.c
414
*ppoce_sc_tmp1 = sc->next;
sys/dev/oce/oce_if.c
415
if (sc->next == NULL) {
sys/dev/oce/oce_if.c
421
ppoce_sc_tmp1 = &poce_sc_tmp->next;
sys/dev/oce/oce_if.c
422
poce_sc_tmp = poce_sc_tmp->next;
sys/dev/oce/oce_if.h
890
struct oce_softc *next;
sys/dev/ocs_fc/ocs_domain.c
323
ocs_sport_t *next;
sys/dev/ocs_fc/ocs_domain.c
331
ocs_list_foreach_safe(&domain->sport_list, sport, next) {
sys/dev/ocs_fc/ocs_fabric.c
130
ocs_node_t *next;
sys/dev/ocs_fc/ocs_fabric.c
135
ocs_list_foreach_safe(&node->sport->node_list, tmp_node, next) {
sys/dev/ocs_fc/ocs_hw.c
2476
ocs_sm_function_t next = NULL;
sys/dev/ocs_fc/ocs_hw.c
2489
next = __ocs_hw_port_alloc_read_sparm64;
sys/dev/ocs_fc/ocs_hw.c
2491
next = __ocs_hw_port_alloc_init_vpi;
sys/dev/ocs_fc/ocs_hw.c
2494
ocs_sm_transition(&sport->ctx, next, cmd);
sys/dev/ocs_fc/ocs_list.h
105
list->next = list;
sys/dev/ocs_fc/ocs_list.h
124
return list->next == list;
sys/dev/ocs_fc/ocs_list.h
157
ocs_list_assert(a->next);
sys/dev/ocs_fc/ocs_list.h
161
ocs_list_assert(b->next);
sys/dev/ocs_fc/ocs_list.h
165
ocs_list_assert(!c->next);
sys/dev/ocs_fc/ocs_list.h
171
c->next = a->next;
sys/dev/ocs_fc/ocs_list.h
173
a->next = c;
sys/dev/ocs_fc/ocs_list.h
200
link->next = NULL;
sys/dev/ocs_fc/ocs_list.h
229
ocs_list_assert(link->next == NULL);
sys/dev/ocs_fc/ocs_list.h
232
_ocs_list_insert_link(list, list->next, item2link(list, item));
sys/dev/ocs_fc/ocs_list.h
256
ocs_list_assert(link->next == NULL);
sys/dev/ocs_fc/ocs_list.h
275
return ocs_list_empty(list) ? NULL : link2item(list, list->next);
sys/dev/ocs_fc/ocs_list.h
334
ocs_list_assert(link->next, NULL);
sys/dev/ocs_fc/ocs_list.h
337
if ((link->next) == list) {
sys/dev/ocs_fc/ocs_list.h
341
return link2item(list, link->next);
sys/dev/ocs_fc/ocs_list.h
367
ocs_list_t *next;
sys/dev/ocs_fc/ocs_list.h
379
ocs_list_assert(link->next, NULL);
sys/dev/ocs_fc/ocs_list.h
383
next = link->next;
sys/dev/ocs_fc/ocs_list.h
385
prev->next = next;
sys/dev/ocs_fc/ocs_list.h
386
next->prev = prev;
sys/dev/ocs_fc/ocs_list.h
388
link->next = link->prev = NULL;
sys/dev/ocs_fc/ocs_list.h
440
return (link->next != NULL);
sys/dev/ocs_fc/ocs_list.h
76
ocs_list_t *next; /*<< pointer to head of list (or next if link) */
sys/dev/ocs_fc/ocs_node.c
1143
ocs_io_t *next;
sys/dev/ocs_fc/ocs_node.c
1157
ocs_list_foreach_safe(&node->active_ios, io, next) {
sys/dev/ocs_fc/ocs_node.c
568
ocs_io_t *next;
sys/dev/ocs_fc/ocs_node.c
581
ocs_list_foreach_safe(&node->active_ios, io, next) {
sys/dev/ocs_fc/ocs_sport.c
1098
ocs_vport_spec_t *next;
sys/dev/ocs_fc/ocs_sport.c
1111
ocs_list_foreach_safe(&xport->vport_list, vport, next) {
sys/dev/ocs_fc/ocs_sport.c
1156
ocs_vport_spec_t *next;
sys/dev/ocs_fc/ocs_sport.c
1159
ocs_list_foreach_safe(&xport->vport_list, vport, next) {
sys/dev/ocs_fc/ocs_sport.c
284
ocs_node_t *next;
sys/dev/ocs_fc/ocs_sport.c
292
ocs_list_foreach_safe(&sport->node_list, node, next) {
sys/dev/ocs_fc/ocs_sport.c
923
ocs_vport_spec_t *next;
sys/dev/ocs_fc/ocs_sport.c
928
ocs_list_foreach_safe(&xport->vport_list, vport, next) {
sys/dev/ocs_fc/ocs_xport.c
722
ocs_domain_t *next;
sys/dev/ocs_fc/ocs_xport.c
726
ocs_list_foreach_safe(&ocs->domain_list, domain, next) {
sys/dev/ofw/ofw_standard.c
221
cell_t next;
sys/dev/ofw/ofw_standard.c
231
return (args.next);
sys/dev/ofw/ofw_subr.c
135
goto next;
sys/dev/ofw/ofw_subr.c
170
next:
sys/dev/otus/if_otus.c
1028
STAILQ_INSERT_HEAD(&sc->sc_rx_inactive, &sc->sc_rx[i], next);
sys/dev/otus/if_otus.c
1051
STAILQ_INSERT_HEAD(&sc->sc_tx_inactive, &sc->sc_tx[i], next);
sys/dev/otus/if_otus.c
1109
STAILQ_REMOVE_HEAD(&sc->sc_tx_inactive, next);
sys/dev/otus/if_otus.c
1132
STAILQ_INSERT_TAIL(&sc->sc_tx_inactive, bf, next);
sys/dev/otus/if_otus.c
1836
STAILQ_REMOVE_HEAD(&sc->sc_rx_active, next);
sys/dev/otus/if_otus.c
1838
STAILQ_INSERT_TAIL(&sc->sc_rx_inactive, data, next);
sys/dev/otus/if_otus.c
1851
STAILQ_REMOVE_HEAD(&sc->sc_rx_inactive, next);
sys/dev/otus/if_otus.c
1852
STAILQ_INSERT_TAIL(&sc->sc_rx_active, data, next);
sys/dev/otus/if_otus.c
1883
STAILQ_REMOVE_HEAD(&sc->sc_rx_active, next);
sys/dev/otus/if_otus.c
1884
STAILQ_INSERT_TAIL(&sc->sc_rx_inactive, data, next);
sys/dev/otus/if_otus.c
1963
STAILQ_REMOVE_HEAD(&sc->sc_tx_active[which], next);
sys/dev/otus/if_otus.c
1976
STAILQ_REMOVE_HEAD(&sc->sc_tx_pending[which], next);
sys/dev/otus/if_otus.c
1977
STAILQ_INSERT_TAIL(&sc->sc_tx_active[which], data, next);
sys/dev/otus/if_otus.c
1987
STAILQ_REMOVE_HEAD(&sc->sc_tx_active[which], next);
sys/dev/otus/if_otus.c
2368
STAILQ_INSERT_TAIL(&sc->sc_tx_pending[OTUS_BULK_TX], data, next);
sys/dev/otus/if_otusreg.h
950
STAILQ_ENTRY(otus_data) next;
sys/dev/pci/pci.c
2823
struct pci_map *pm, *next;
sys/dev/pci/pci.c
2830
STAILQ_FOREACH_SAFE(pm, &dinfo->cfg.maps, pm_link, next) {
sys/dev/pms/freebsd/driver/common/lxcommon.h
461
struct _ag_param_value *next;
sys/dev/pms/freebsd/driver/common/lxcommon.h
470
struct _ag_param_key *next;
sys/dev/pms/freebsd/driver/ini/src/agtiapi.c
5013
hdr->next = pCard->ccbAllocList;
sys/dev/pms/freebsd/driver/ini/src/agtiapi.c
5809
pCard->ccbAllocList = hdr->next;
sys/dev/pms/freebsd/driver/ini/src/agtiapi.h
241
struct _ag_mapping_s *next;
sys/dev/pms/freebsd/driver/ini/src/agtiapi.h
65
void *next;
sys/dev/ppbus/ppb_msq.c
298
goto next;
sys/dev/ppbus/ppb_msq.c
339
next:
sys/dev/qat/include/common/adf_cfg_user.h
13
struct adf_user_cfg_key_val *next;
sys/dev/qat/include/common/adf_cfg_user.h
26
struct adf_user_cfg_section *next;
sys/dev/qat/include/common/icp_qat_uclo.h
394
struct icp_qat_uof_batch_init *next;
sys/dev/qat/qat_api/common/ctrl/sal_list.c
24
(*list)->next = NULL;
sys/dev/qat/qat_api/common/ctrl/sal_list.c
31
new_element->next = NULL;
sys/dev/qat/qat_api/common/ctrl/sal_list.c
33
(*tail)->next = new_element;
sys/dev/qat/qat_api/common/ctrl/sal_list.c
65
return list->next;
sys/dev/qat/qat_api/common/ctrl/sal_list.c
90
*head_list = list->next;
sys/dev/qat/qat_api/common/ctrl/sal_list.c
92
(*pre_list)->next = list->next;
sys/dev/qat/qat_api/common/include/lac_list.h
28
struct sal_list_s *next;
sys/dev/qat/qat_api/common/utils/lac_lock_free_stack.h
50
lac_mem_blk_t *next;
sys/dev/qat/qat_api/common/utils/lac_lock_free_stack.h
54
next = old_top.ptr;
sys/dev/qat/qat_api/common/utils/lac_lock_free_stack.h
55
if (NULL == next)
sys/dev/qat/qat_api/common/utils/lac_lock_free_stack.h
56
return next;
sys/dev/qat/qat_api/common/utils/lac_lock_free_stack.h
58
new_top.ptr = next->pNext;
sys/dev/qat/qat_api/common/utils/lac_lock_free_stack.h
62
return next;
sys/dev/qat/qat_api/common/utils/lac_lock_free_stack.h
90
lac_mem_blk_t *next = old_top.ptr;
sys/dev/qat/qat_api/common/utils/lac_lock_free_stack.h
91
return next;
sys/dev/qat/qat_common/qat_hal.c
1657
plm_init = lm_init_header->next;
sys/dev/qat/qat_common/qat_hal.c
1674
plm_init = plm_init->next;
sys/dev/qat/qat_common/qat_uclo.c
195
umem_init = umem_init_header->next;
sys/dev/qat/qat_common/qat_uclo.c
204
umem_init = umem_init->next;
sys/dev/qat/qat_common/qat_uclo.c
219
umem_init = umem_init->next;
sys/dev/qat/qat_common/qat_uclo.c
306
while (tail_old->next)
sys/dev/qat/qat_common/qat_uclo.c
307
tail_old = tail_old->next;
sys/dev/qat/qat_common/qat_uclo.c
315
mem_init->next = NULL;
sys/dev/qat/qat_common/qat_uclo.c
316
tail->next = mem_init;
sys/dev/qlnx/qlnxe/bcm_osal.h
151
struct _osal_list_entry_t *next, *prev;
sys/dev/qlnx/qlnxe/bcm_osal.h
244
(entry)->next = (entry_prev)->next; \
sys/dev/qlnx/qlnxe/bcm_osal.h
245
(entry)->next->prev = (entry); \
sys/dev/qlnx/qlnxe/bcm_osal.h
246
(entry_prev)->next = (entry); \
sys/dev/qlnx/qlnxe/bcm_osal.h
252
((new_list)->tail)->next = ((list)->head); \
sys/dev/qlnx/qlnxe/bcm_osal.h
262
(entry)->next = (list)->head; \
sys/dev/qlnx/qlnxe/bcm_osal.h
274
(entry)->next = (osal_list_entry_t *)0; \
sys/dev/qlnx/qlnxe/bcm_osal.h
277
(list)->tail->next = (entry); \
sys/dev/qlnx/qlnxe/bcm_osal.h
292
(list)->head = (list)->head->next; \
sys/dev/qlnx/qlnxe/bcm_osal.h
304
(list)->tail->next = (osal_list_entry_t *)0; \
sys/dev/qlnx/qlnxe/bcm_osal.h
311
(entry)->prev->next = (entry)->next; \
sys/dev/qlnx/qlnxe/bcm_osal.h
312
(entry)->next->prev = (entry)->prev; \
sys/dev/qlnx/qlnxe/bcm_osal.h
321
(type *)((&((entry)->field))->next)
sys/dev/qlnx/qlnxe/ecore_cxt.c
1038
entries[j].next = OSAL_CPU_TO_BE64(val);
sys/dev/qlnx/qlnxe/ecore_cxt.c
1045
entries[j].next = OSAL_CPU_TO_BE64(val);
sys/dev/qlnx/qlnxe/ecore_cxt.c
106
u64 next;
sys/dev/qlnx/qlnxe/qlnx_def.h
497
void *next;
sys/dev/qlnx/qlnxe/qlnx_rdma.c
145
ha->next = NULL;
sys/dev/qlnx/qlnxe/qlnx_rdma.c
147
ha->next = qlnx_host_list;
sys/dev/qlnx/qlnxe/qlnx_rdma.c
203
qlnx_host_list = ha->next;
sys/dev/qlnx/qlnxe/qlnx_rdma.c
204
ha->next = NULL;
sys/dev/qlnx/qlnxe/qlnx_rdma.c
213
ha_cur = ha_cur->next;
sys/dev/qlnx/qlnxe/qlnx_rdma.c
217
ha->next = NULL;
sys/dev/qlnx/qlnxe/qlnx_rdma.c
239
ha = ha->next;
sys/dev/qlnx/qlnxe/qlnx_rdma.c
278
ha = ha->next;
sys/dev/qlnx/qlnxr/qlnxr_cm.c
723
if (wr->next != NULL) {
sys/dev/qlnx/qlnxr/qlnxr_cm.c
724
*bad_wr = wr->next;
sys/dev/qlnx/qlnxr/qlnxr_cm.c
783
wr = wr->next;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
417
wr = wr->next;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
4538
wr = wr->next;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
4695
wr = wr->next;
sys/dev/qlxgb/qla_def.h
76
void *next;
sys/dev/qlxgb/qla_isr.c
105
rxb->next = sdsp->rxb_free;
sys/dev/qlxgb/qla_isr.c
110
rxb->next = sdsp->rxjb_free;
sys/dev/qlxgb/qla_isr.c
176
sdsp->rxjb_free = rxb->next;
sys/dev/qlxgb/qla_isr.c
195
rxb->next = sdsp->rxjb_free;
sys/dev/qlxgb/qla_isr.c
227
sdsp->rxb_free = rxb->next;
sys/dev/qlxgb/qla_isr.c
246
rxb->next = sdsp->rxb_free;
sys/dev/qlxgbe/ql_def.h
76
void *next;
sys/dev/qlxgbe/ql_isr.c
110
rxb->next = sdsp->rxb_free;
sys/dev/qlxgbe/ql_isr.c
251
rxb->next = sdsp->rxb_free;
sys/dev/qlxgbe/ql_isr.c
907
sdsp->rxb_free = rxb->next;
sys/dev/qlxgbe/ql_isr.c
926
rxb->next = sdsp->rxb_free;
sys/dev/qlxge/qls_def.h
159
void *next;
sys/dev/ral/rt2560.c
1016
desc = &sc->prioq.desc[sc->prioq.next];
sys/dev/ral/rt2560.c
1017
data = &sc->prioq.data[sc->prioq.next];
sys/dev/ral/rt2560.c
1058
DPRINTFN(sc, 15, "prio done idx=%u\n", sc->prioq.next);
sys/dev/ral/rt2560.c
1061
sc->prioq.next = (sc->prioq.next + 1) % RT2560_PRIO_RING_COUNT;
sys/dev/ral/rt2560.c
1295
data = &sc->bcnq.data[sc->bcnq.next];
sys/dev/ral/rt2560.c
1312
sc->bcnq.next = (sc->bcnq.next + 1) % RT2560_BEACON_RING_COUNT;
sys/dev/ral/rt2560.c
460
ring->cur = ring->next = 0;
sys/dev/ral/rt2560.c
549
ring->cur = ring->next = 0;
sys/dev/ral/rt2560.c
604
ring->cur = ring->next = 0;
sys/dev/ral/rt2560.c
701
ring->cur = ring->next = 0;
sys/dev/ral/rt2560.c
923
desc = &sc->txq.desc[sc->txq.next];
sys/dev/ral/rt2560.c
924
data = &sc->txq.data[sc->txq.next];
sys/dev/ral/rt2560.c
987
DPRINTFN(sc, 15, "tx done idx=%u\n", sc->txq.next);
sys/dev/ral/rt2560.c
990
sc->txq.next = (sc->txq.next + 1) % RT2560_TX_RING_COUNT;
sys/dev/ral/rt2560var.h
73
int next;
sys/dev/ral/rt2560var.h
93
int next;
sys/dev/ral/rt2661.c
471
ring->cur = ring->next = ring->stat = 0;
sys/dev/ral/rt2661.c
558
ring->cur = ring->next = ring->stat = 0;
sys/dev/ral/rt2661.c
612
ring->cur = ring->next = 0;
sys/dev/ral/rt2661.c
706
ring->cur = ring->next = 0;
sys/dev/ral/rt2661.c
934
desc = &txq->desc[txq->next];
sys/dev/ral/rt2661.c
935
data = &txq->data[txq->next];
sys/dev/ral/rt2661.c
948
DPRINTFN(sc, 15, "tx dma done q=%p idx=%u\n", txq, txq->next);
sys/dev/ral/rt2661.c
950
if (++txq->next >= txq->count) /* faster than % count */
sys/dev/ral/rt2661.c
951
txq->next = 0;
sys/dev/ral/rt2661var.h
69
int next;
sys/dev/ral/rt2661var.h
87
int next;
sys/dev/ral/rt2860.c
1137
while (ring->next != hw) {
sys/dev/ral/rt2860.c
1138
struct rt2860_tx_data *data = ring->data[ring->next];
sys/dev/ral/rt2860.c
1147
SLIST_INSERT_HEAD(&sc->data_pool, data, next);
sys/dev/ral/rt2860.c
1148
ring->data[ring->next] = NULL;
sys/dev/ral/rt2860.c
1151
ring->next = (ring->next + 1) % RT2860_TX_RING_COUNT;
sys/dev/ral/rt2860.c
1666
SLIST_REMOVE_HEAD(&sc->data_pool, next);
sys/dev/ral/rt2860.c
1909
SLIST_REMOVE_HEAD(&sc->data_pool, next);
sys/dev/ral/rt2860.c
566
SLIST_INSERT_HEAD(&sc->data_pool, data, next);
sys/dev/ral/rt2860.c
571
ring->cur = ring->next = 0;
sys/dev/ral/rt2860.c
602
SLIST_INSERT_HEAD(&sc->data_pool, data, next);
sys/dev/ral/rt2860.c
659
SLIST_INSERT_HEAD(&sc->data_pool, data, next);
sys/dev/ral/rt2860.c
684
SLIST_REMOVE_HEAD(&sc->data_pool, next);
sys/dev/ral/rt2860var.h
70
SLIST_ENTRY(rt2860_tx_data) next;
sys/dev/ral/rt2860var.h
81
int next;
sys/dev/rtwn/if_rtwnreg.h
134
const struct rtwn_bb_prog *next;
sys/dev/rtwn/if_rtwnreg.h
141
const struct rtwn_agc_prog *next;
sys/dev/rtwn/if_rtwnreg.h
152
const struct rtwn_rf_prog *next;
sys/dev/rtwn/rtl8192c/r92c_init.c
133
KASSERT(bb_prog->next != NULL,
sys/dev/rtwn/rtl8192c/r92c_init.c
136
bb_prog = bb_prog->next;
sys/dev/rtwn/rtl8192c/r92c_init.c
170
KASSERT(agc_prog->next != NULL,
sys/dev/rtwn/rtl8192c/r92c_init.c
173
agc_prog = agc_prog->next;
sys/dev/rtwn/rtl8192c/r92c_init.c
203
KASSERT(prog->next != NULL,
sys/dev/rtwn/rtl8192c/r92c_init.c
206
prog = prog->next;
sys/dev/rtwn/rtl8192e/r92e_init.c
115
KASSERT(bb_prog->next != NULL,
sys/dev/rtwn/rtl8192e/r92e_init.c
118
bb_prog = bb_prog->next;
sys/dev/rtwn/rtl8192e/r92e_init.c
136
KASSERT(agc_prog->next != NULL,
sys/dev/rtwn/rtl8192e/r92e_init.c
139
agc_prog = agc_prog->next;
sys/dev/rtwn/rtl8812a/r12a_init.c
153
KASSERT(bb_prog->next != NULL,
sys/dev/rtwn/rtl8812a/r12a_init.c
156
bb_prog = bb_prog->next;
sys/dev/rtwn/rtl8812a/r12a_init.c
176
KASSERT(agc_prog->next != NULL,
sys/dev/rtwn/rtl8812a/r12a_init.c
179
agc_prog = agc_prog->next;
sys/dev/rtwn/usb/rtwn_usb_attach.c
143
STAILQ_INSERT_HEAD(&uc->uc_rx_inactive, &uc->uc_rx[i], next);
sys/dev/rtwn/usb/rtwn_usb_attach.c
166
STAILQ_INSERT_HEAD(&uc->uc_tx_inactive, &uc->uc_tx[i], next);
sys/dev/rtwn/usb/rtwn_usb_attach.c
251
STAILQ_FOREACH_SAFE(dp, head, next, tmp) {
sys/dev/rtwn/usb/rtwn_usb_attach.c
265
STAILQ_REMOVE(head, dp, rtwn_data, next);
sys/dev/rtwn/usb/rtwn_usb_attach.c
266
STAILQ_INSERT_TAIL(&uc->uc_tx_inactive, dp, next);
sys/dev/rtwn/usb/rtwn_usb_rx.c
394
struct mbuf *m0, *m = NULL, *next;
sys/dev/rtwn/usb/rtwn_usb_rx.c
404
STAILQ_REMOVE_HEAD(&uc->uc_rx_active, next);
sys/dev/rtwn/usb/rtwn_usb_rx.c
406
STAILQ_INSERT_TAIL(&uc->uc_rx_inactive, data, next);
sys/dev/rtwn/usb/rtwn_usb_rx.c
415
STAILQ_REMOVE_HEAD(&uc->uc_rx_inactive, next);
sys/dev/rtwn/usb/rtwn_usb_rx.c
416
STAILQ_INSERT_TAIL(&uc->uc_rx_active, data, next);
sys/dev/rtwn/usb/rtwn_usb_rx.c
435
next = m->m_nextpkt;
sys/dev/rtwn/usb/rtwn_usb_rx.c
446
m = next;
sys/dev/rtwn/usb/rtwn_usb_rx.c
454
STAILQ_REMOVE_HEAD(&uc->uc_rx_active, next);
sys/dev/rtwn/usb/rtwn_usb_rx.c
455
STAILQ_INSERT_TAIL(&uc->uc_rx_inactive, data, next);
sys/dev/rtwn/usb/rtwn_usb_tx.c
118
STAILQ_INSERT_TAIL(&uc->uc_tx_inactive, data, next);
sys/dev/rtwn/usb/rtwn_usb_tx.c
154
STAILQ_REMOVE_HEAD(&uc->uc_tx_active[qid], next);
sys/dev/rtwn/usb/rtwn_usb_tx.c
166
STAILQ_REMOVE_HEAD(&uc->uc_tx_pending[qid], next);
sys/dev/rtwn/usb/rtwn_usb_tx.c
167
STAILQ_INSERT_TAIL(&uc->uc_tx_active[qid], data, next);
sys/dev/rtwn/usb/rtwn_usb_tx.c
184
STAILQ_REMOVE_HEAD(&uc->uc_tx_active[qid], next);
sys/dev/rtwn/usb/rtwn_usb_tx.c
338
STAILQ_INSERT_TAIL(&uc->uc_tx_pending[qid], data, next);
sys/dev/rtwn/usb/rtwn_usb_tx.c
76
STAILQ_REMOVE_HEAD(&uc->uc_tx_inactive, next);
sys/dev/rtwn/usb/rtwn_usb_var.h
44
STAILQ_ENTRY(rtwn_data) next;
sys/dev/scc/scc_core.c
175
goto next;
sys/dev/scc/scc_core.c
208
next:
sys/dev/sfxge/sfxge_ev.c
307
if (txq->next == NULL &&
sys/dev/sfxge/sfxge_ev.c
308
evq->txqs != &(txq->next)) {
sys/dev/sfxge/sfxge_ev.c
310
evq->txqs = &(txq->next);
sys/dev/sfxge/sfxge_ev.c
67
struct sfxge_txq *next;
sys/dev/sfxge/sfxge_ev.c
69
next = txq->next;
sys/dev/sfxge/sfxge_ev.c
70
txq->next = NULL;
sys/dev/sfxge/sfxge_ev.c
78
txq = next;
sys/dev/sfxge/sfxge_tx.c
538
struct mbuf *mbuf, *next;
sys/dev/sfxge/sfxge_tx.c
565
next = mbuf->m_nextpkt;
sys/dev/sfxge/sfxge_tx.c
570
if (next != NULL)
sys/dev/sfxge/sfxge_tx.c
571
prefetch_read_many(next);
sys/dev/sfxge/sfxge_tx.c
576
mbuf = next;
sys/dev/sfxge/sfxge_tx.c
763
struct mbuf *mbuf, *next;
sys/dev/sfxge/sfxge_tx.c
768
for (mbuf = stdp->std_get; mbuf != NULL; mbuf = next) {
sys/dev/sfxge/sfxge_tx.c
769
next = mbuf->m_nextpkt;
sys/dev/sfxge/sfxge_tx.h
232
struct sfxge_txq *next;
sys/dev/sis/if_sis.c
1368
bus_addr_t next;
sys/dev/sis/if_sis.c
1376
next = SIS_TX_RING_ADDR(sc, 0);
sys/dev/sis/if_sis.c
1378
next = SIS_TX_RING_ADDR(sc, i + 1);
sys/dev/sis/if_sis.c
1379
sc->sis_tx_list[i].sis_next = htole32(SIS_ADDR_LO(next));
sys/dev/sis/if_sis.c
1391
next = SIS_RX_RING_ADDR(sc, 0);
sys/dev/sis/if_sis.c
1393
next = SIS_RX_RING_ADDR(sc, i + 1);
sys/dev/sis/if_sis.c
1394
rxd->rx_desc->sis_next = htole32(SIS_ADDR_LO(next));
sys/dev/sound/pci/atiixp.c
600
ch->sgd_table[i].next = htole32((uint32_t)ch->sgd_addr +
sys/dev/sound/pci/atiixp.c
88
volatile uint32_t next;
sys/dev/sound/usb/uaudio.c
207
struct uaudio_mixer_node *next;
sys/dev/sound/usb/uaudio.c
3048
for (pmc = sc->sc_mixer_root; pmc != NULL; pmc = pmc->next) {
sys/dev/sound/usb/uaudio.c
3087
sc->sc_mixer_root = p_mc->next;
sys/dev/sound/usb/uaudio.c
3114
pmc = pmc->next, n++) {
sys/dev/sound/usb/uaudio.c
3308
for (pmc = sc->sc_mixer_root; pmc != NULL; pmc = pmc->next) {
sys/dev/sound/usb/uaudio.c
3330
p_mc_new->next = sc->sc_mixer_root;
sys/dev/sound/usb/uaudio.c
5376
mc = mc->next;
sys/dev/sound/usb/uaudio.c
5499
for (mc = sc->sc_mixer_root; mc; mc = mc->next) {
sys/dev/sound/usb/uaudio.c
5578
for (mc = sc->sc_mixer_root; mc != NULL; mc = mc->next) {
sys/dev/sound/usb/uaudio.c
5599
for (mc = sc->sc_mixer_root; mc; mc = mc->next) {
sys/dev/sym/sym_hipd.c
362
struct m_link *next;
sys/dev/sym/sym_hipd.c
366
struct m_vtob *next;
sys/dev/sym/sym_hipd.c
389
struct m_pool *next;
sys/dev/sym/sym_hipd.c
410
while (!h[j].next) {
sys/dev/sym/sym_hipd.c
412
h[j].next = (m_link_s *) M_GETP();
sys/dev/sym/sym_hipd.c
413
if (h[j].next)
sys/dev/sym/sym_hipd.c
414
h[j].next->next = NULL;
sys/dev/sym/sym_hipd.c
420
a = (m_addr_t) h[j].next;
sys/dev/sym/sym_hipd.c
422
h[j].next = h[j].next->next;
sys/dev/sym/sym_hipd.c
426
h[j].next = (m_link_s *) (a+s);
sys/dev/sym/sym_hipd.c
427
h[j].next->next = NULL;
sys/dev/sym/sym_hipd.c
467
while (q->next && q->next != (m_link_s *) b) {
sys/dev/sym/sym_hipd.c
468
q = q->next;
sys/dev/sym/sym_hipd.c
470
if (!q->next) {
sys/dev/sym/sym_hipd.c
471
((m_link_s *) a)->next = h[i].next;
sys/dev/sym/sym_hipd.c
472
h[i].next = (m_link_s *) a;
sys/dev/sym/sym_hipd.c
475
q->next = q->next->next;
sys/dev/sym/sym_hipd.c
602
vbp->next = mp->vtob[hc];
sys/dev/sym/sym_hipd.c
623
vbpp = &(*vbpp)->next;
sys/dev/sym/sym_hipd.c
626
*vbpp = (*vbpp)->next;
sys/dev/sym/sym_hipd.c
638
for (mp = mp0.next; mp && mp->dev_dmat != dev_dmat; mp = mp->next);
sys/dev/sym/sym_hipd.c
659
mp->next = mp0.next;
sys/dev/sym/sym_hipd.c
660
mp0.next = mp;
sys/dev/sym/sym_hipd.c
672
struct m_pool **pp = &mp0.next;
sys/dev/sym/sym_hipd.c
675
pp = &(*pp)->next;
sys/dev/sym/sym_hipd.c
677
*pp = (*pp)->next;
sys/dev/sym/sym_hipd.c
732
vp = vp->next;
sys/dev/tws/tws.c
841
r->next = r->prev = NULL;
sys/dev/tws/tws_hdm.c
162
req->next = req->prev = NULL;
sys/dev/tws/tws_hdm.h
397
struct tws_request *next; /* pointer to next request */
sys/dev/tws/tws_services.c
218
req->next = req->prev = NULL;
sys/dev/tws/tws_services.c
233
req->next = sc->q_head[q_type];
sys/dev/tws/tws_services.c
252
req->next = NULL;
sys/dev/tws/tws_services.c
253
sc->q_tail[q_type]->next = req;
sys/dev/tws/tws_services.c
270
if ( r->next == NULL && r->prev == NULL ) {
sys/dev/tws/tws_services.c
274
sc->q_head[q_type] = r->next;
sys/dev/tws/tws_services.c
275
r->next->prev = NULL;
sys/dev/tws/tws_services.c
276
r->next = NULL;
sys/dev/tws/tws_services.c
293
if ( r->next == NULL && r->prev == NULL ) {
sys/dev/tws/tws_services.c
298
r->prev->next = NULL;
sys/dev/tws/tws_services.c
299
r->next = NULL;
sys/dev/tws/tws_services.c
330
if ( req->next == NULL || req->prev == NULL ) {
sys/dev/tws/tws_services.c
340
r = r->next;
sys/dev/tws/tws_services.c
349
req->prev->next = r->next;
sys/dev/tws/tws_services.c
350
req->next->prev = r->prev;
sys/dev/tws/tws_services.c
351
req->next = NULL;
sys/dev/uart/uart_bus_pci.c
269
SLIST_FOREACH(sysdev, &uart_sysdevs, next) {
sys/dev/uart/uart_core.c
230
SLIST_INSERT_HEAD(&uart_sysdevs, di, next);
sys/dev/uart/uart_core.c
557
SLIST_FOREACH(sysdev, &uart_sysdevs, next) {
sys/dev/uart/uart_cpu.h
65
SLIST_ENTRY(uart_devinfo) next;
sys/dev/uart/uart_cpu_acpi.c
255
goto next;
sys/dev/uart/uart_cpu_acpi.c
259
goto next;
sys/dev/uart/uart_cpu_acpi.c
263
goto next;
sys/dev/uart/uart_cpu_acpi.c
275
next:
sys/dev/usb/controller/ehci.c
1010
std->prev->next = std->next;
sys/dev/usb/controller/ehci.c
1015
if (std->next) {
sys/dev/usb/controller/ehci.c
1016
std->next->prev = std->prev;
sys/dev/usb/controller/ehci.c
1017
usb_pc_cpu_flush(std->next->page_cache);
sys/dev/usb/controller/ehci.c
1030
std->prev->next = std->next;
sys/dev/usb/controller/ehci.c
1035
if (std->next) {
sys/dev/usb/controller/ehci.c
1036
std->next->prev = std->prev;
sys/dev/usb/controller/ehci.c
1037
usb_pc_cpu_flush(std->next->page_cache);
sys/dev/usb/controller/ehci.c
1052
sqh->prev->next = sqh->next;
sys/dev/usb/controller/ehci.c
1057
if (sqh->next) {
sys/dev/usb/controller/ehci.c
1058
sqh->next->prev = sqh->prev;
sys/dev/usb/controller/ehci.c
1059
usb_pc_cpu_flush(sqh->next->page_cache);
sys/dev/usb/controller/ehci.c
926
std->next = last->next;
sys/dev/usb/controller/ehci.c
936
last->next = std;
sys/dev/usb/controller/ehci.c
952
std->next = last->next;
sys/dev/usb/controller/ehci.c
962
last->next = std;
sys/dev/usb/controller/ehci.c
983
sqh->next = last->next;
sys/dev/usb/controller/ehci.c
994
last->next = sqh;
sys/dev/usb/controller/ehci.h
113
struct ehci_itd *next;
sys/dev/usb/controller/ehci.h
161
struct ehci_sitd *next;
sys/dev/usb/controller/ehci.h
269
struct ehci_qh *next;
sys/dev/usb/controller/generic_ehci_fdt.c
130
TAILQ_INSERT_TAIL(&sc->clk_list, clkp, next);
sys/dev/usb/controller/generic_ehci_fdt.c
143
TAILQ_INSERT_TAIL(&sc->rst_list, rstp, next);
sys/dev/usb/controller/generic_ehci_fdt.c
161
TAILQ_INSERT_TAIL(&sc->phy_list, phyp, next);
sys/dev/usb/controller/generic_ehci_fdt.c
191
TAILQ_FOREACH_SAFE(clk, &sc->clk_list, next, clk_tmp) {
sys/dev/usb/controller/generic_ehci_fdt.c
200
TAILQ_REMOVE(&sc->clk_list, clk, next);
sys/dev/usb/controller/generic_ehci_fdt.c
205
TAILQ_FOREACH_SAFE(rst, &sc->rst_list, next, rst_tmp) {
sys/dev/usb/controller/generic_ehci_fdt.c
208
TAILQ_REMOVE(&sc->rst_list, rst, next);
sys/dev/usb/controller/generic_ehci_fdt.c
213
TAILQ_FOREACH_SAFE(phy, &sc->phy_list, next, phy_tmp) {
sys/dev/usb/controller/generic_ehci_fdt.c
218
TAILQ_REMOVE(&sc->phy_list, phy, next);
sys/dev/usb/controller/generic_ehci_fdt.c
64
TAILQ_ENTRY(clk_list) next;
sys/dev/usb/controller/generic_ehci_fdt.c
69
TAILQ_ENTRY(hwrst_list) next;
sys/dev/usb/controller/generic_ehci_fdt.c
74
TAILQ_ENTRY(phy_list) next;
sys/dev/usb/controller/generic_ohci.c
173
TAILQ_INSERT_TAIL(&sc->clk_list, clkp, next);
sys/dev/usb/controller/generic_ohci.c
186
TAILQ_INSERT_TAIL(&sc->rst_list, rstp, next);
sys/dev/usb/controller/generic_ohci.c
204
TAILQ_INSERT_TAIL(&sc->phy_list, phyp, next);
sys/dev/usb/controller/generic_ohci.c
273
TAILQ_FOREACH_SAFE(phy, &sc->phy_list, next, phy_tmp) {
sys/dev/usb/controller/generic_ohci.c
278
TAILQ_REMOVE(&sc->phy_list, phy, next);
sys/dev/usb/controller/generic_ohci.c
283
TAILQ_FOREACH_SAFE(rst, &sc->rst_list, next, rst_tmp) {
sys/dev/usb/controller/generic_ohci.c
286
TAILQ_REMOVE(&sc->rst_list, rst, next);
sys/dev/usb/controller/generic_ohci.c
291
TAILQ_FOREACH_SAFE(clk, &sc->clk_list, next, clk_tmp) {
sys/dev/usb/controller/generic_ohci.c
300
TAILQ_REMOVE(&sc->clk_list, clk, next);
sys/dev/usb/controller/generic_ohci.c
64
TAILQ_ENTRY(clk_list) next;
sys/dev/usb/controller/generic_ohci.c
68
TAILQ_ENTRY(phy_list) next;
sys/dev/usb/controller/generic_ohci.c
72
TAILQ_ENTRY(hwrst_list) next;
sys/dev/usb/controller/ohci.c
371
ed_x->next = NULL;
sys/dev/usb/controller/ohci.c
387
ed_int->next = ed_isc;
sys/dev/usb/controller/ohci.c
668
sed->next = last->next;
sys/dev/usb/controller/ohci.c
680
last->next = sed;
sys/dev/usb/controller/ohci.c
698
sed->prev->next = sed->next;
sys/dev/usb/controller/ohci.c
703
if (sed->next) {
sys/dev/usb/controller/ohci.c
704
sed->next->prev = sed->prev;
sys/dev/usb/controller/ohci.c
705
usb_pc_cpu_flush(sed->next->page_cache);
sys/dev/usb/controller/ohci.h
101
struct ohci_ed *next;
sys/dev/usb/controller/uhci.c
549
td_x->next = NULL;
sys/dev/usb/controller/uhci.c
604
td_lst->next = 0;
sys/dev/usb/controller/uhci.c
83
#define alt_next next
sys/dev/usb/controller/uhci.c
896
std->next = last->next;
sys/dev/usb/controller/uhci.c
906
last->next = std;
sys/dev/usb/controller/uhci.c
958
std->prev->next = std->next;
sys/dev/usb/controller/uhci.c
963
if (std->next) {
sys/dev/usb/controller/uhci.c
964
std->next->prev = std->prev;
sys/dev/usb/controller/uhci.c
965
usb_pc_cpu_flush(std->next->page_cache);
sys/dev/usb/controller/uhci.h
108
struct uhci_td *next;
sys/dev/usb/controller/xhci.h
381
struct xhci_td *next;
sys/dev/usb/usb_device.c
168
goto next;
sys/dev/usb/usb_device.c
175
goto next;
sys/dev/usb/usb_device.c
179
goto next;
sys/dev/usb/usb_device.c
197
next:
sys/dev/usb/usb_generic.c
1995
struct usb_device *next;
sys/dev/usb/usb_generic.c
2005
next = udev;
sys/dev/usb/usb_generic.c
2006
while (next->parent_hub != NULL) {
sys/dev/usb/usb_generic.c
2008
next = next->parent_hub;
sys/dev/usb/usb_generic.c
2019
next = udev;
sys/dev/usb/usb_generic.c
2020
while (next->parent_hub != NULL) {
sys/dev/usb/usb_generic.c
2021
dpp->udp_port_no[--nlevel] = next->port_no;
sys/dev/usb/usb_generic.c
2022
next = next->parent_hub;
sys/dev/usb/wlan/if_mtw.c
2724
STAILQ_INSERT_TAIL(&pq->tx_fh, data, next);
sys/dev/usb/wlan/if_mtw.c
2758
STAILQ_REMOVE_HEAD(&pq->tx_qh, next);
sys/dev/usb/wlan/if_mtw.c
3160
STAILQ_REMOVE_HEAD(&sc->sc_epq[qid].tx_fh, next);
sys/dev/usb/wlan/if_mtw.c
3228
STAILQ_INSERT_TAIL(&sc->sc_epq[qid].tx_qh, data, next);
sys/dev/usb/wlan/if_mtw.c
3276
STAILQ_REMOVE_HEAD(&sc->sc_epq[0].tx_fh, next);
sys/dev/usb/wlan/if_mtw.c
3301
STAILQ_INSERT_TAIL(&sc->sc_epq[0].tx_qh, data, next);
sys/dev/usb/wlan/if_mtw.c
3343
STAILQ_REMOVE_HEAD(&sc->sc_epq[0].tx_fh, next);
sys/dev/usb/wlan/if_mtw.c
3367
STAILQ_INSERT_TAIL(&sc->sc_epq[0].tx_qh, data, next);
sys/dev/usb/wlan/if_mtw.c
3421
STAILQ_REMOVE_HEAD(&sc->sc_epq[0].tx_fh, next);
sys/dev/usb/wlan/if_mtw.c
3449
STAILQ_INSERT_TAIL(&sc->sc_epq[0].tx_qh, data, next);
sys/dev/usb/wlan/if_mtw.c
964
STAILQ_INSERT_TAIL(&pq->tx_fh, data, next);
sys/dev/usb/wlan/if_mtwvar.h
126
STAILQ_ENTRY(mtw_tx_data) next;
sys/dev/usb/wlan/if_mtwvar.h
141
STAILQ_ENTRY(mtw_rx_data) next;
sys/dev/usb/wlan/if_mtwvar.h
195
int next;
sys/dev/usb/wlan/if_rsu.c
1035
STAILQ_REMOVE_HEAD(&sc->sc_tx_inactive, next);
sys/dev/usb/wlan/if_rsu.c
1060
STAILQ_INSERT_TAIL(&sc->sc_tx_inactive, bf, next);
sys/dev/usb/wlan/if_rsu.c
1281
STAILQ_INSERT_TAIL(&sc->sc_tx_pending[which], data, next);
sys/dev/usb/wlan/if_rsu.c
2578
struct mbuf *m = NULL, *next;
sys/dev/usb/wlan/if_rsu.c
2588
STAILQ_REMOVE_HEAD(&sc->sc_rx_active, next);
sys/dev/usb/wlan/if_rsu.c
2590
STAILQ_INSERT_TAIL(&sc->sc_rx_inactive, data, next);
sys/dev/usb/wlan/if_rsu.c
2599
STAILQ_REMOVE_HEAD(&sc->sc_rx_inactive, next);
sys/dev/usb/wlan/if_rsu.c
2600
STAILQ_INSERT_TAIL(&sc->sc_rx_active, data, next);
sys/dev/usb/wlan/if_rsu.c
2610
next = m->m_next;
sys/dev/usb/wlan/if_rsu.c
2625
m = next;
sys/dev/usb/wlan/if_rsu.c
2632
STAILQ_REMOVE_HEAD(&sc->sc_rx_active, next);
sys/dev/usb/wlan/if_rsu.c
2633
STAILQ_INSERT_TAIL(&sc->sc_rx_inactive, data, next);
sys/dev/usb/wlan/if_rsu.c
2681
STAILQ_REMOVE_HEAD(&sc->sc_tx_active[which], next);
sys/dev/usb/wlan/if_rsu.c
2693
STAILQ_REMOVE_HEAD(&sc->sc_tx_pending[which], next);
sys/dev/usb/wlan/if_rsu.c
2694
STAILQ_INSERT_TAIL(&sc->sc_tx_active[which], data, next);
sys/dev/usb/wlan/if_rsu.c
2705
STAILQ_REMOVE_HEAD(&sc->sc_tx_active[which], next);
sys/dev/usb/wlan/if_rsu.c
2934
STAILQ_INSERT_TAIL(&sc->sc_tx_pending[which], data, next);
sys/dev/usb/wlan/if_rsu.c
3361
STAILQ_INSERT_TAIL(&sc->sc_tx_pending[which], data, next);
sys/dev/usb/wlan/if_rsu.c
954
STAILQ_INSERT_HEAD(&sc->sc_rx_inactive, &sc->sc_rx[i], next);
sys/dev/usb/wlan/if_rsu.c
977
STAILQ_INSERT_HEAD(&sc->sc_tx_inactive, &sc->sc_tx[i], next);
sys/dev/usb/wlan/if_rsureg.h
586
uint32_t next;
sys/dev/usb/wlan/if_rsureg.h
834
STAILQ_ENTRY(rsu_data) next;
sys/dev/usb/wlan/if_rum.c
1096
STAILQ_REMOVE_HEAD(&sc->tx_q, next);
sys/dev/usb/wlan/if_rum.c
1436
STAILQ_REMOVE_HEAD(&sc->tx_free, next);
sys/dev/usb/wlan/if_rum.c
1445
STAILQ_INSERT_TAIL(&sc->tx_q, data, next);
sys/dev/usb/wlan/if_rum.c
1501
STAILQ_REMOVE_HEAD(&sc->tx_free, next);
sys/dev/usb/wlan/if_rum.c
1549
STAILQ_INSERT_TAIL(&sc->tx_q, data, next);
sys/dev/usb/wlan/if_rum.c
1595
STAILQ_REMOVE_HEAD(&sc->tx_free, next);
sys/dev/usb/wlan/if_rum.c
1609
STAILQ_INSERT_TAIL(&sc->tx_q, data, next);
sys/dev/usb/wlan/if_rum.c
1692
STAILQ_REMOVE_HEAD(&sc->tx_free, next);
sys/dev/usb/wlan/if_rum.c
1716
STAILQ_INSERT_TAIL(&sc->tx_q, data, next);
sys/dev/usb/wlan/if_rum.c
801
STAILQ_INSERT_TAIL(&sc->tx_free, data, next);
sys/dev/usb/wlan/if_rum.c
819
STAILQ_INSERT_TAIL(&sc->tx_free, data, next);
sys/dev/usb/wlan/if_rum.c
831
STAILQ_FOREACH_SAFE(data, &sc->tx_q, next, tmp) {
sys/dev/usb/wlan/if_rum.c
841
STAILQ_REMOVE(&sc->tx_q, data, rum_tx_data, next);
sys/dev/usb/wlan/if_rum.c
842
STAILQ_INSERT_TAIL(&sc->tx_free, data, next);
sys/dev/usb/wlan/if_rumvar.h
62
STAILQ_ENTRY(rum_tx_data) next;
sys/dev/usb/wlan/if_run.c
1187
STAILQ_INSERT_TAIL(&pq->tx_fh, data, next);
sys/dev/usb/wlan/if_run.c
3177
STAILQ_INSERT_TAIL(&pq->tx_fh, data, next);
sys/dev/usb/wlan/if_run.c
3213
STAILQ_REMOVE_HEAD(&pq->tx_qh, next);
sys/dev/usb/wlan/if_run.c
3510
STAILQ_REMOVE_HEAD(&sc->sc_epq[qid].tx_fh, next);
sys/dev/usb/wlan/if_run.c
3579
STAILQ_INSERT_TAIL(&sc->sc_epq[qid].tx_qh, data, next);
sys/dev/usb/wlan/if_run.c
3624
STAILQ_REMOVE_HEAD(&sc->sc_epq[0].tx_fh, next);
sys/dev/usb/wlan/if_run.c
3648
STAILQ_INSERT_TAIL(&sc->sc_epq[0].tx_qh, data, next);
sys/dev/usb/wlan/if_run.c
3690
STAILQ_REMOVE_HEAD(&sc->sc_epq[0].tx_fh, next);
sys/dev/usb/wlan/if_run.c
3715
STAILQ_INSERT_TAIL(&sc->sc_epq[0].tx_qh, data, next);
sys/dev/usb/wlan/if_run.c
3767
STAILQ_REMOVE_HEAD(&sc->sc_epq[0].tx_fh, next);
sys/dev/usb/wlan/if_run.c
3794
STAILQ_INSERT_TAIL(&sc->sc_epq[0].tx_qh, data, next);
sys/dev/usb/wlan/if_runvar.h
86
STAILQ_ENTRY(run_tx_data) next;
sys/dev/usb/wlan/if_uath.c
1014
next);
sys/dev/usb/wlan/if_uath.c
1369
STAILQ_INSERT_TAIL(&sc->sc_tx_pending, data, next);
sys/dev/usb/wlan/if_uath.c
1384
STAILQ_REMOVE_HEAD(&sc->sc_tx_inactive, next);
sys/dev/usb/wlan/if_uath.c
1623
STAILQ_INSERT_TAIL(&sc->sc_tx_pending, data, next);
sys/dev/usb/wlan/if_uath.c
1638
struct uath_data *bf, *next;
sys/dev/usb/wlan/if_uath.c
1642
STAILQ_FOREACH_SAFE(bf, frags, next, next) {
sys/dev/usb/wlan/if_uath.c
1644
STAILQ_REMOVE_HEAD(frags, next);
sys/dev/usb/wlan/if_uath.c
1645
STAILQ_INSERT_HEAD(&sc->sc_tx_inactive, bf, next);
sys/dev/usb/wlan/if_uath.c
1671
STAILQ_INSERT_TAIL(frags, bf, next);
sys/dev/usb/wlan/if_uath.c
1704
struct mbuf *m, *next;
sys/dev/usb/wlan/if_uath.c
1745
next = m->m_nextpkt;
sys/dev/usb/wlan/if_uath.c
1751
STAILQ_INSERT_HEAD(&sc->sc_tx_inactive, bf, next);
sys/dev/usb/wlan/if_uath.c
1758
if (next != NULL) {
sys/dev/usb/wlan/if_uath.c
1768
ieee80211_free_mbuf(next);
sys/dev/usb/wlan/if_uath.c
1771
m = next;
sys/dev/usb/wlan/if_uath.c
1774
STAILQ_REMOVE_HEAD(&frags, next);
sys/dev/usb/wlan/if_uath.c
1809
STAILQ_INSERT_HEAD(&sc->sc_tx_inactive, bf, next);
sys/dev/usb/wlan/if_uath.c
2362
STAILQ_REMOVE_HEAD(&sc->sc_cmd_waiting, next);
sys/dev/usb/wlan/if_uath.c
2364
STAILQ_INSERT_TAIL(&sc->sc_cmd_inactive, cmd, next);
sys/dev/usb/wlan/if_uath.c
2410
STAILQ_REMOVE_HEAD(&sc->sc_cmd_active, next);
sys/dev/usb/wlan/if_uath.c
2413
&sc->sc_cmd_waiting : &sc->sc_cmd_inactive, cmd, next);
sys/dev/usb/wlan/if_uath.c
2430
STAILQ_REMOVE_HEAD(&sc->sc_cmd_pending, next);
sys/dev/usb/wlan/if_uath.c
2433
&sc->sc_cmd_inactive : &sc->sc_cmd_active, cmd, next);
sys/dev/usb/wlan/if_uath.c
2735
STAILQ_REMOVE_HEAD(&sc->sc_rx_active, next);
sys/dev/usb/wlan/if_uath.c
2738
STAILQ_INSERT_TAIL(&sc->sc_rx_inactive, data, next);
sys/dev/usb/wlan/if_uath.c
2746
STAILQ_REMOVE_HEAD(&sc->sc_rx_inactive, next);
sys/dev/usb/wlan/if_uath.c
2748
STAILQ_INSERT_TAIL(&sc->sc_rx_active, data, next);
sys/dev/usb/wlan/if_uath.c
2787
STAILQ_REMOVE_HEAD(&sc->sc_rx_active, next);
sys/dev/usb/wlan/if_uath.c
2789
STAILQ_INSERT_TAIL(&sc->sc_rx_inactive, data, next);
sys/dev/usb/wlan/if_uath.c
2830
STAILQ_REMOVE_HEAD(&sc->sc_tx_active, next);
sys/dev/usb/wlan/if_uath.c
2833
STAILQ_INSERT_TAIL(&sc->sc_tx_inactive, data, next);
sys/dev/usb/wlan/if_uath.c
2844
STAILQ_REMOVE_HEAD(&sc->sc_tx_pending, next);
sys/dev/usb/wlan/if_uath.c
2846
STAILQ_INSERT_TAIL(&sc->sc_tx_active, data, next);
sys/dev/usb/wlan/if_uath.c
559
STAILQ_INSERT_TAIL(&sc->sc_cmd_inactive, cmd, next);
sys/dev/usb/wlan/if_uath.c
720
STAILQ_INSERT_TAIL(&sc->sc_cmd_pending, cmd, next);
sys/dev/usb/wlan/if_uath.c
771
STAILQ_REMOVE_HEAD(&sc->sc_cmd_inactive, next);
sys/dev/usb/wlan/if_uath.c
990
next);
sys/dev/usb/wlan/if_uathvar.h
84
STAILQ_ENTRY(uath_data) next;
sys/dev/usb/wlan/if_uathvar.h
96
STAILQ_ENTRY(uath_cmd) next;
sys/dev/usb/wlan/if_upgt.c
1866
STAILQ_INSERT_TAIL(&sc->sc_tx_pending, data, next);
sys/dev/usb/wlan/if_upgt.c
1906
STAILQ_INSERT_TAIL(&sc->sc_tx_inactive, data, next);
sys/dev/usb/wlan/if_upgt.c
1924
STAILQ_INSERT_TAIL(&sc->sc_rx_inactive, data, next);
sys/dev/usb/wlan/if_upgt.c
2060
STAILQ_REMOVE_HEAD(&sc->sc_tx_inactive, next);
sys/dev/usb/wlan/if_upgt.c
2099
STAILQ_INSERT_HEAD(&sc->sc_tx_inactive, bf, next);
sys/dev/usb/wlan/if_upgt.c
2224
STAILQ_REMOVE_HEAD(&sc->sc_rx_active, next);
sys/dev/usb/wlan/if_upgt.c
2226
STAILQ_INSERT_TAIL(&sc->sc_rx_inactive, data, next);
sys/dev/usb/wlan/if_upgt.c
2233
STAILQ_REMOVE_HEAD(&sc->sc_rx_inactive, next);
sys/dev/usb/wlan/if_upgt.c
2234
STAILQ_INSERT_TAIL(&sc->sc_rx_active, data, next);
sys/dev/usb/wlan/if_upgt.c
2264
STAILQ_REMOVE_HEAD(&sc->sc_rx_active, next);
sys/dev/usb/wlan/if_upgt.c
2265
STAILQ_INSERT_TAIL(&sc->sc_rx_inactive, data, next);
sys/dev/usb/wlan/if_upgt.c
2288
STAILQ_REMOVE_HEAD(&sc->sc_tx_active, next);
sys/dev/usb/wlan/if_upgt.c
2291
STAILQ_INSERT_TAIL(&sc->sc_tx_inactive, data, next);
sys/dev/usb/wlan/if_upgt.c
2302
STAILQ_REMOVE_HEAD(&sc->sc_tx_pending, next);
sys/dev/usb/wlan/if_upgt.c
2304
STAILQ_INSERT_TAIL(&sc->sc_tx_active, data, next);
sys/dev/usb/wlan/if_upgt.c
522
STAILQ_INSERT_TAIL(&sc->sc_tx_inactive, data_cmd, next);
sys/dev/usb/wlan/if_upgt.c
527
STAILQ_INSERT_TAIL(&sc->sc_tx_inactive, data_cmd, next);
sys/dev/usb/wlan/if_upgt.c
539
STAILQ_INSERT_TAIL(&sc->sc_tx_inactive, data_cmd, next);
sys/dev/usb/wlan/if_upgt.c
783
STAILQ_INSERT_HEAD(&sc->sc_tx_inactive, data_tx, next);
sys/dev/usb/wlan/if_upgt.c
816
STAILQ_INSERT_HEAD(&sc->sc_tx_inactive, data_tx, next);
sys/dev/usb/wlan/if_upgtvar.h
354
STAILQ_ENTRY(upgt_data) next;
sys/dev/usb/wlan/if_ural.c
1040
STAILQ_REMOVE_HEAD(&sc->tx_free, next);
sys/dev/usb/wlan/if_ural.c
1055
STAILQ_INSERT_TAIL(&sc->tx_q, data, next);
sys/dev/usb/wlan/if_ural.c
1075
STAILQ_REMOVE_HEAD(&sc->tx_free, next);
sys/dev/usb/wlan/if_ural.c
1112
STAILQ_INSERT_TAIL(&sc->tx_q, data, next);
sys/dev/usb/wlan/if_ural.c
1141
STAILQ_REMOVE_HEAD(&sc->tx_free, next);
sys/dev/usb/wlan/if_ural.c
1149
STAILQ_INSERT_TAIL(&sc->tx_q, data, next);
sys/dev/usb/wlan/if_ural.c
1189
STAILQ_REMOVE_HEAD(&sc->tx_free, next);
sys/dev/usb/wlan/if_ural.c
1204
STAILQ_INSERT_TAIL(&sc->tx_q, data, next);
sys/dev/usb/wlan/if_ural.c
1268
STAILQ_REMOVE_HEAD(&sc->tx_free, next);
sys/dev/usb/wlan/if_ural.c
1289
STAILQ_INSERT_TAIL(&sc->tx_q, data, next);
sys/dev/usb/wlan/if_ural.c
619
STAILQ_INSERT_TAIL(&sc->tx_free, data, next);
sys/dev/usb/wlan/if_ural.c
637
STAILQ_INSERT_TAIL(&sc->tx_free, data, next);
sys/dev/usb/wlan/if_ural.c
783
STAILQ_REMOVE_HEAD(&sc->tx_q, next);
sys/dev/usb/wlan/if_uralvar.h
63
STAILQ_ENTRY(ural_tx_data) next;
sys/dev/usb/wlan/if_urtw.c
1468
STAILQ_INSERT_HEAD(&sc->sc_tx_inactive, bf, next);
sys/dev/usb/wlan/if_urtw.c
1525
STAILQ_INSERT_HEAD(&sc->sc_rx_inactive, &sc->sc_rx[i], next);
sys/dev/usb/wlan/if_urtw.c
1547
next);
sys/dev/usb/wlan/if_urtw.c
1574
STAILQ_INSERT_HEAD(&sc->sc_tx_inactive, bf, next);
sys/dev/usb/wlan/if_urtw.c
1852
STAILQ_INSERT_TAIL(&sc->sc_tx_pending, data, next);
sys/dev/usb/wlan/if_urtw.c
4057
STAILQ_REMOVE_HEAD(&sc->sc_rx_active, next);
sys/dev/usb/wlan/if_urtw.c
4059
STAILQ_INSERT_TAIL(&sc->sc_rx_inactive, data, next);
sys/dev/usb/wlan/if_urtw.c
4068
STAILQ_REMOVE_HEAD(&sc->sc_rx_inactive, next);
sys/dev/usb/wlan/if_urtw.c
4069
STAILQ_INSERT_TAIL(&sc->sc_rx_active, data, next);
sys/dev/usb/wlan/if_urtw.c
4102
STAILQ_REMOVE_HEAD(&sc->sc_rx_active, next);
sys/dev/usb/wlan/if_urtw.c
4103
STAILQ_INSERT_TAIL(&sc->sc_rx_inactive, data, next);
sys/dev/usb/wlan/if_urtw.c
4199
STAILQ_REMOVE_HEAD(&sc->sc_tx_active, next);
sys/dev/usb/wlan/if_urtw.c
4201
STAILQ_INSERT_TAIL(&sc->sc_tx_inactive, data, next);
sys/dev/usb/wlan/if_urtw.c
4211
STAILQ_REMOVE_HEAD(&sc->sc_tx_pending, next);
sys/dev/usb/wlan/if_urtw.c
4212
STAILQ_INSERT_TAIL(&sc->sc_tx_active, data, next);
sys/dev/usb/wlan/if_urtw.c
4244
STAILQ_REMOVE_HEAD(&sc->sc_tx_inactive, next);
sys/dev/usb/wlan/if_urtwvar.h
45
STAILQ_ENTRY(urtw_data) next;
sys/dev/usb/wlan/if_zyd.c
2372
STAILQ_REMOVE_HEAD(&sc->tx_q, next);
sys/dev/usb/wlan/if_zyd.c
2446
STAILQ_REMOVE_HEAD(&sc->tx_free, next);
sys/dev/usb/wlan/if_zyd.c
2542
STAILQ_INSERT_TAIL(&sc->tx_q, data, next);
sys/dev/usb/wlan/if_zyd.c
529
STAILQ_INSERT_TAIL(&sc->tx_free, data, next);
sys/dev/usb/wlan/if_zyd.c
547
STAILQ_INSERT_TAIL(&sc->tx_free, data, next);
sys/dev/usb/wlan/if_zydreg.h
1165
STAILQ_ENTRY(zyd_tx_data) next;
sys/dev/virtio/scmi/virtio_scmi.c
286
SLIST_INSERT_HEAD(&q->p_head, pdu, next);
sys/dev/virtio/scmi/virtio_scmi.c
384
SLIST_REMOVE_HEAD(&q->p_head, next);
sys/dev/virtio/scmi/virtio_scmi.c
417
SLIST_INSERT_HEAD(&q->p_head, pdu, next);
sys/dev/virtio/scmi/virtio_scmi.c
53
SLIST_ENTRY(vtscmi_pdu) next;
sys/dev/virtio/virtio_ring.h
62
uint16_t next;
sys/dev/virtio/virtqueue.c
1027
uint16_t next_idx = vq_htog16(vq, dp->next);
sys/dev/virtio/virtqueue.c
1042
dp->next = vq_gtoh16(vq, vq->vq_desc_head_idx);
sys/dev/virtio/virtqueue.c
430
indirect[i].next = vq_gtoh16(vq, i + 1);
sys/dev/virtio/virtqueue.c
431
indirect[i].next = vq_gtoh16(vq, VQ_RING_DESC_CHAIN_END);
sys/dev/virtio/virtqueue.c
820
vr->desc[i].next = vq_gtoh16(vq, i + 1);
sys/dev/virtio/virtqueue.c
821
vr->desc[i].next = vq_gtoh16(vq, VQ_RING_DESC_CHAIN_END);
sys/dev/virtio/virtqueue.c
869
i++, idx = vq_htog16(vq, dp->next), seg++) {
sys/dev/virtio/virtqueue.c
938
vq->vq_desc_head_idx = vq_htog16(vq, dp->next);
sys/dev/vmware/vmci/vmci_hashtable.c
170
entry->next = table->entries[idx];
sys/dev/vmware/vmci/vmci_hashtable.c
267
cur = cur->next;
sys/dev/vmware/vmci/vmci_hashtable.c
484
entry = entry->next;
sys/dev/vmware/vmci/vmci_hashtable.c
528
prev->next = cur->next;
sys/dev/vmware/vmci/vmci_hashtable.c
530
table->entries[idx] = cur->next;
sys/dev/vmware/vmci/vmci_hashtable.c
531
cur->next = NULL;
sys/dev/vmware/vmci/vmci_hashtable.c
536
cur = cur->next;
sys/dev/vmware/vmci/vmci_hashtable.h
18
struct vmci_hash_entry *next;
sys/dev/vmware/vmci/vmci_queue_pair.c
205
struct queue_pair_entry *next;
sys/dev/vmware/vmci/vmci_queue_pair.c
210
vmci_list_scan(next, &qp_list->head, list_item) {
sys/dev/vmware/vmci/vmci_queue_pair.c
211
if (VMCI_HANDLE_EQUAL(next->handle, handle))
sys/dev/vmware/vmci/vmci_queue_pair.c
212
return (next);
sys/dev/vnic/nicvf_queues.c
1001
err = nicvf_tx_mbuf_locked(sq, &next);
sys/dev/vnic/nicvf_queues.c
1003
if (next == NULL)
sys/dev/vnic/nicvf_queues.c
1006
drbr_putback(ifp, sq->br, next);
sys/dev/vnic/nicvf_queues.c
988
struct mbuf *next;
sys/dev/vnic/nicvf_queues.c
997
while ((next = drbr_peek(ifp, sq->br)) != NULL) {
sys/dev/vnic/nicvf_queues.c
999
ETHER_BPF_MTAP(ifp, next);
sys/dev/wdatwd/wdatwd.c
139
STAILQ_FOREACH(wdat, &sc->action[action], next) {
sys/dev/wdatwd/wdatwd.c
388
STAILQ_INSERT_TAIL(&sc->action[entry->Action], wdat, next);
sys/dev/wdatwd/wdatwd.c
587
STAILQ_REMOVE_HEAD(&sc->action[i], next);
sys/dev/wdatwd/wdatwd.c
677
STAILQ_FOREACH(wdat, &sc->action[i], next) {
sys/dev/wdatwd/wdatwd.c
707
STAILQ_FOREACH(wdat, &sc->action[i], next) {
sys/dev/wdatwd/wdatwd.c
86
STAILQ_ENTRY(wdat_instr) next;
sys/dev/wg/wg_noise.c
605
struct noise_keypair *next, *current, *previous;
sys/dev/wg/wg_noise.c
610
next = atomic_load_ptr(&r->r_next);
sys/dev/wg/wg_noise.c
615
if (next != NULL) {
sys/dev/wg/wg_noise.c
617
atomic_store_ptr(&r->r_previous, next);
sys/dev/wg/wg_noise.c
626
noise_keypair_drop(next);
sys/dev/wpi/if_wpi.c
2186
hw = le32toh(sc->shared->next) & 0xfff;
sys/dev/wpi/if_wpi.c
2925
struct mbuf *next = m->m_nextpkt;
sys/dev/wpi/if_wpi.c
2927
tx->lnext = htole16(next->m_pkthdr.len);
sys/dev/wpi/if_wpi.c
3342
mrr.rates[i].next =
sys/dev/wpi/if_wpi.c
3353
mrr.rates[i].next = (i == WPI_RIDX_OFDM6) ?
sys/dev/wpi/if_wpi.c
5288
offsetof(struct wpi_shared, next));
sys/dev/wpi/if_wpireg.h
232
uint32_t next;
sys/dev/wpi/if_wpireg.h
571
uint8_t next;
sys/dev/xen/gntdev/gntdev.c
100
RB_ENTRY(file_offset_struct) next;
sys/dev/xen/gntdev/gntdev.c
112
RB_GENERATE_STATIC(file_offset_head, file_offset_struct, next, offset_cmp);
sys/dev/xen/grant_table/grant_table.c
100
callback->next = NULL;
sys/dev/xen/grant_table/grant_table.c
103
callback->next = gnttab_free_callback_list;
sys/dev/xen/grant_table/grant_table.c
106
callback = next;
sys/dev/xen/grant_table/grant_table.c
386
if (callback->next)
sys/dev/xen/grant_table/grant_table.c
391
callback->next = gnttab_free_callback_list;
sys/dev/xen/grant_table/grant_table.c
405
for (pcb = &gnttab_free_callback_list; *pcb; pcb = &(*pcb)->next) {
sys/dev/xen/grant_table/grant_table.c
407
*pcb = callback->next;
sys/dev/xen/grant_table/grant_table.c
92
struct gnttab_free_callback *callback, *next;
sys/dev/xen/grant_table/grant_table.c
98
next = callback->next;
sys/dev/xen/netfront/netfront.c
1532
goto next;
sys/dev/xen/netfront/netfront.c
1540
next:
sys/dev/xen/netfront/netfront.c
1609
SLIST_REMOVE_HEAD(&txq->tags, next);
sys/dev/xen/netfront/netfront.c
1624
SLIST_INSERT_HEAD(&txq->tags, tag, next);
sys/dev/xen/netfront/netfront.c
1633
SLIST_INSERT_HEAD(&txq->tags, tag, next);
sys/dev/xen/netfront/netfront.c
1638
SLIST_INSERT_HEAD(&txq->tags, tag, next);
sys/dev/xen/netfront/netfront.c
1656
SLIST_INSERT_HEAD(&txq->tags, tag, next);
sys/dev/xen/netfront/netfront.c
207
SLIST_ENTRY(mbuf_xennet) next;
sys/dev/xen/netfront/netfront.c
357
SLIST_INSERT_HEAD(&ref->txq->tags, ref, next);
sys/dev/xen/netfront/netfront.c
925
next);
sys/dev/xen/pcifront/pcifront.c
153
STAILQ_INSERT_TAIL(&pdev_list, pdev, next);
sys/dev/xen/pcifront/pcifront.c
86
STAILQ_ENTRY(pcifront_device) next;
sys/dev/xilinx/axidma.h
62
uint32_t next;
sys/dev/xilinx/if_xae.c
166
desc->next = sc->txdesc_ring_paddr + sizeof(struct axidma_desc) * nidx;
sys/dev/xilinx/if_xae.c
305
desc->next = sc->rxdesc_ring_paddr + sizeof(struct axidma_desc) * nidx;
sys/dev/xl/if_xl.c
1703
int error, i, next;
sys/dev/xl/if_xl.c
1721
next = 0;
sys/dev/xl/if_xl.c
1723
next = i + 1;
sys/dev/xl/if_xl.c
1725
next * sizeof(struct xl_list_onefrag);
sys/dev/xl/if_xl.c
1726
cd->xl_rx_chain[i].xl_next = &cd->xl_rx_chain[next];
sys/fs/ext2fs/ext2_extattr.c
161
struct ext2fs_extattr_entry *next;
sys/fs/ext2fs/ext2_extattr.c
164
next = EXT2_EXTATTR_NEXT(entry);
sys/fs/ext2fs/ext2_extattr.c
165
if ((char *)next >= end)
sys/fs/ext2fs/ext2_extattr.c
168
entry = next;
sys/fs/ext2fs/ext2_extattr.c
480
struct ext2fs_extattr_entry *next;
sys/fs/ext2fs/ext2_extattr.c
483
next = first_entry;
sys/fs/ext2fs/ext2_extattr.c
484
while (!EXT2_IS_LAST_ENTRY(next)) {
sys/fs/ext2fs/ext2_extattr.c
485
if (min_offs > le16toh(next->e_value_offs) &&
sys/fs/ext2fs/ext2_extattr.c
486
le16toh(next->e_value_offs) > 0)
sys/fs/ext2fs/ext2_extattr.c
487
min_offs = le16toh(next->e_value_offs);
sys/fs/ext2fs/ext2_extattr.c
489
next = EXT2_EXTATTR_NEXT(next);
sys/fs/ext2fs/ext2_extattr.c
499
next = first_entry;
sys/fs/ext2fs/ext2_extattr.c
500
while (!EXT2_IS_LAST_ENTRY(next))
sys/fs/ext2fs/ext2_extattr.c
502
if (le16toh(next->e_value_offs) > 0 &&
sys/fs/ext2fs/ext2_extattr.c
503
le16toh(next->e_value_offs) < le16toh(entry->e_value_offs))
sys/fs/ext2fs/ext2_extattr.c
504
next->e_value_offs = htole16(le16toh(next->e_value_offs) +
sys/fs/ext2fs/ext2_extattr.c
507
next = EXT2_EXTATTR_NEXT(next);
sys/fs/ext2fs/ext2_extattr.c
521
struct ext2fs_extattr_entry *next;
sys/fs/ext2fs/ext2_extattr.c
527
next = first_entry;
sys/fs/ext2fs/ext2_extattr.c
528
while (!EXT2_IS_LAST_ENTRY(next))
sys/fs/ext2fs/ext2_extattr.c
529
next = EXT2_EXTATTR_NEXT(next);
sys/fs/ext2fs/ext2_extattr.c
531
pad = (char*)next + sizeof(uint32_t);
sys/fs/ext2fs/ext2_extents.c
1237
int depth, len, error, next;
sys/fs/ext2fs/ext2_extents.c
1262
next = ext4_ext_next_leaf_block(ip, path);
sys/fs/ext2fs/ext2_extents.c
1263
if (le32toh(newext->e_blk) > le32toh(nex->e_blk) && next !=
sys/fs/ext2fs/ext2_extents.c
1268
error = ext4_ext_find_extent(ip, next, &npath);
sys/fs/fuse/fuse_file.c
225
LIST_REMOVE(fufh, next);
sys/fs/fuse/fuse_file.c
250
LIST_FOREACH(fufh, &fvdat->handles, next) {
sys/fs/fuse/fuse_file.c
262
LIST_FOREACH(fufh, &fvdat->handles, next) {
sys/fs/fuse/fuse_file.c
286
LIST_FOREACH(fufh, &fvdat->handles, next) {
sys/fs/fuse/fuse_file.c
296
LIST_FOREACH(fufh, &fvdat->handles, next) {
sys/fs/fuse/fuse_file.c
321
LIST_FOREACH(fufh, &fvdat->handles, next) {
sys/fs/fuse/fuse_file.c
373
LIST_INSERT_HEAD(&fvdat->handles, fufh, next);
sys/fs/fuse/fuse_file.h
135
LIST_ENTRY(fuse_filehandle) next;
sys/fs/fuse/fuse_internal.c
395
LIST_FOREACH(fufh, &fvdat->handles, next) {
sys/fs/fuse/fuse_vnops.c
1364
LIST_FOREACH_SAFE(fufh, &fvdat->handles, next, fufh_tmp) {
sys/fs/fuse/fuse_vnops.c
2191
LIST_FOREACH_SAFE(fufh, &fvdat->handles, next, fufh_tmp) {
sys/fs/nfs/nfs_commonsubs.c
4878
SLIST_ENTRY(list) next;
sys/fs/nfs/nfs_commonsubs.c
4974
SLIST_INSERT_HEAD(&head, lsp, next);
sys/fs/nfs/nfs_commonsubs.c
4995
SLIST_FOREACH_SAFE(lsp, &head, next, nlsp) {
sys/fs/smbfs/smbfs_smb.c
1244
u_int32_t size, next, dattr;
sys/fs/smbfs/smbfs_smb.c
1261
next = 0;
sys/fs/smbfs/smbfs_smb.c
1279
recsz = next = 24 + nmlen; /* docs misses zero byte at end */
sys/fs/smbfs/smbfs_smb.c
1282
md_get_uint32le(mbp, &next);
sys/fs/smbfs/smbfs_smb.c
1298
recsz = next ? next : fxsz + size;
sys/fs/smbfs/smbfs_smb.c
1312
if (next) {
sys/fs/smbfs/smbfs_smb.c
1313
cnt = next - nmlen - fxsz;
sys/fs/smbfs/smbfs_smb.c
1330
next = ctx->f_eofs + recsz;
sys/fs/smbfs/smbfs_smb.c
1332
(ctx->f_rnameofs >= ctx->f_eofs && ctx->f_rnameofs < next)) {
sys/fs/smbfs/smbfs_smb.c
1347
ctx->f_eofs = next;
sys/fs/tmpfs/tmpfs_subr.c
1600
struct uio *uio, off_t next)
sys/fs/tmpfs/tmpfs_subr.c
1618
dent.d_off = next;
sys/geom/journal/g_journal.c
2866
goto next;
sys/geom/journal/g_journal.c
2872
goto next;
sys/geom/journal/g_journal.c
2881
goto next;
sys/geom/journal/g_journal.c
2904
goto next;
sys/geom/journal/g_journal.c
2920
goto next;
sys/geom/journal/g_journal.c
2925
goto next;
sys/geom/journal/g_journal.c
2932
next:
sys/geom/part/g_part_ebr.c
638
struct g_part_entry *baseentry, *next;
sys/geom/part/g_part_ebr.c
692
next = LIST_NEXT(baseentry, gpe_entry);
sys/geom/part/g_part_ebr.c
693
while (next != NULL && next->gpe_deleted)
sys/geom/part/g_part_ebr.c
694
next = LIST_NEXT(next, gpe_entry);
sys/geom/part/g_part_ebr.c
697
if (next != NULL)
sys/geom/part/g_part_ebr.c
698
ebr_entry_link(basetable, (uint32_t)next->gpe_start,
sys/geom/part/g_part_ebr.c
699
(uint32_t)next->gpe_end, p);
sys/geom/part/g_part_ebr.c
705
baseentry = next;
sys/geom/raid/md_ddf.c
1287
next:
sys/geom/raid/md_ddf.c
1302
goto next;
sys/geom/raid/md_ddf.c
1363
goto next;
sys/geom/raid/md_promise.c
350
next:
sys/geom/raid/md_promise.c
422
goto next;
sys/geom/raid/md_promise.c
441
next:
sys/geom/raid/md_promise.c
485
goto next;
sys/i386/i386/bios.c
550
u_int16_t next;
sys/i386/i386/bios.c
616
pda->next = currdev;
sys/i386/i386/bios.c
618
if ((error = bios16(&args, PNP_GET_DEVNODE, &pda->next, &pda->node, 1))) {
sys/i386/i386/bios.c
628
currdev = pda->next;
sys/kern/init_main.c
200
STAILQ_INSERT_TAIL(list, *sipp, next);
sys/kern/init_main.c
203
STAILQ_MERGESORT(list, NULL, sysinit_compar, sysinit, next);
sys/kern/init_main.c
223
STAILQ_MERGE(&sysinit_list, &new_list, NULL, sysinit_compar, sysinit, next);
sys/kern/init_main.c
292
STAILQ_REMOVE_HEAD(&sysinit_list, next);
sys/kern/init_main.c
293
STAILQ_INSERT_TAIL(&sysinit_done_list, sip, next);
sys/kern/init_main.c
916
STAILQ_FOREACH(sip, &sysinit_done_list, next) {
sys/kern/init_main.c
921
STAILQ_FOREACH(sip, &sysinit_list, next) {
sys/kern/kern_boottrace.c
251
goto next;
sys/kern/kern_boottrace.c
283
next:
sys/kern/kern_clocksource.c
302
sbintime_t *next;
sys/kern/kern_clocksource.c
314
next = &state->nexttick;
sys/kern/kern_clocksource.c
316
next = &nexttick;
sys/kern/kern_clocksource.c
319
*next = now + timerperiod;
sys/kern/kern_clocksource.c
321
*next = -1; /* Next tick is not scheduled yet. */
sys/kern/kern_clocksource.c
380
sbintime_t *next;
sys/kern/kern_clocksource.c
386
next = &state->nexttick;
sys/kern/kern_clocksource.c
388
next = &nexttick;
sys/kern/kern_clocksource.c
402
*next = new + now;
sys/kern/kern_clocksource.c
407
eq = (new == *next);
sys/kern/kern_clocksource.c
411
*next = new;
sys/kern/kern_clocksource.c
479
sbintime_t now, next;
sys/kern/kern_clocksource.c
492
next = now + timerperiod;
sys/kern/kern_clocksource.c
494
nexttick = next;
sys/kern/kern_clocksource.c
508
state->nextevent = next;
sys/kern/kern_clocksource.c
510
state->nexttick = next;
sys/kern/kern_clocksource.c
513
state->nexthard = next;
sys/kern/kern_clocksource.c
514
state->nextstat = next;
sys/kern/kern_clocksource.c
515
state->nextprof = next;
sys/kern/kern_clocksource.c
516
state->nextcall = next;
sys/kern/kern_clocksource.c
517
state->nextcallopt = next;
sys/kern/kern_et.c
55
struct eventtimer *tmp, *next;
sys/kern/kern_et.c
88
next = SLIST_NEXT(tmp, et_all);
sys/kern/kern_et.c
89
if (next == NULL || next->et_quality < et->et_quality) {
sys/kern/kern_event.c
1006
kc->next = to;
sys/kern/kern_event.c
1009
kc->next = to + sbinuptime();
sys/kern/kern_event.c
811
sbintime_t next; /* next timer event fires at */
sys/kern/kern_event.c
820
callout_reset_sbt_on(&kc->c, kc->next, 0, filt_timerexpire, kc->kn,
sys/kern/kern_event.c
836
if (kc->next <= now)
sys/kern/kern_event.c
860
if (now >= kc->next) {
sys/kern/kern_event.c
861
delta = (now - kc->next) / kc->to;
sys/kern/kern_event.c
865
kc->next += delta * kc->to;
sys/kern/kern_event.c
866
if (now >= kc->next) /* overflow */
sys/kern/kern_event.c
867
kc->next = now + kc->to;
sys/kern/kern_event.c
991
kc->next = kc_src->next;
sys/kern/kern_exec.c
1524
SLIST_ENTRY(exec_args_kva) next;
sys/kern/kern_exec.c
1546
SLIST_INSERT_HEAD(&exec_args_kva_freelist, argkva, next);
sys/kern/kern_exec.c
1563
SLIST_REMOVE_HEAD(&exec_args_kva_freelist, next);
sys/kern/kern_exec.c
1586
SLIST_INSERT_HEAD(&exec_args_kva_freelist, argkva, next);
sys/kern/kern_exec.c
1618
SLIST_REMOVE_HEAD(&head, next);
sys/kern/kern_jailmeta.c
123
struct hunk *next;
sys/kern/kern_jailmeta.c
141
n->next = h;
sys/kern/kern_jailmeta.c
163
rem->next = h->next;
sys/kern/kern_jailmeta.c
164
h->next = rem;
sys/kern/kern_jailmeta.c
178
h = h->next; \
sys/kern/kern_jailmeta.c
207
h = h->next;
sys/kern/kern_jailmeta.c
220
if (h->next != NULL && *(dst - 1) == '\0')
sys/kern/kern_jailmeta.c
223
h = h->next;
sys/kern/kern_jailmeta.c
233
n = h->next;
sys/kern/kern_linker.c
688
module_t mod, next;
sys/kern/kern_linker.c
743
for (mod = TAILQ_FIRST(&file->modules); mod; mod = next) {
sys/kern/kern_linker.c
744
next = module_getfnext(mod);
sys/kern/kern_mbuf.c
1085
struct mbuf *m, *m1, *next, *prev = NULL;
sys/kern/kern_mbuf.c
1089
for (m = top; m != NULL; m = next) {
sys/kern/kern_mbuf.c
1091
next = m->m_next;
sys/kern/kern_mbuf.c
1106
m_freem(next);
sys/kern/kern_proc.c
2602
goto next;
sys/kern/kern_proc.c
2629
next:;
sys/kern/kern_rangelock.c
481
struct rl_q_entry *cur, *free, *next, **prev;
sys/kern/kern_rangelock.c
496
next = rl_q_load(&cur->rl_q_next);
sys/kern/kern_rangelock.c
497
if (rl_e_is_marked(next)) {
sys/kern/kern_rangelock.c
498
next = rl_e_unmark(next);
sys/kern/kern_rangelock.c
499
if (rl_q_cas(prev, cur, next)) {
sys/kern/kern_rangelock.c
505
cur = next;
sys/kern/kern_rangelock.c
576
struct rl_q_entry *cur, *next, **prev;
sys/kern/kern_rangelock.c
586
next = rl_q_load(&cur->rl_q_next);
sys/kern/kern_rangelock.c
587
if (rl_e_is_marked(next)) {
sys/kern/kern_rangelock.c
588
next = rl_e_unmark(next);
sys/kern/kern_rangelock.c
589
if (rl_q_cas(prev, cur, next)) {
sys/kern/kern_rangelock.c
592
cur = next;
sys/kern/kern_rangelock.c
617
struct rl_q_entry *cur, *next, **prev;
sys/kern/kern_rangelock.c
627
next = rl_q_load(&cur->rl_q_next);
sys/kern/kern_rangelock.c
628
if (rl_e_is_marked(next)) {
sys/kern/kern_rangelock.c
629
next = rl_e_unmark(next);
sys/kern/kern_rangelock.c
630
if (rl_q_cas(prev, cur, next)) {
sys/kern/kern_rangelock.c
633
cur = next;
sys/kern/kern_rangelock.c
654
struct rl_q_entry *cur, *next, **prev;
sys/kern/kern_rangelock.c
668
next = rl_q_load(&cur->rl_q_next);
sys/kern/kern_rangelock.c
669
if (rl_e_is_marked(next)) {
sys/kern/kern_rangelock.c
670
next = rl_e_unmark(next);
sys/kern/kern_rangelock.c
671
if (rl_q_cas(prev, cur, next)) {
sys/kern/kern_rangelock.c
677
cur = next;
sys/kern/kern_rmlock.c
204
struct rm_queue *next;
sys/kern/kern_rmlock.c
208
next = pc->pc_rm_queue.rmq_next;
sys/kern/kern_rmlock.c
209
tracker->rmp_cpuQueue.rmq_next = next;
sys/kern/kern_rmlock.c
212
next->rmq_prev = &tracker->rmp_cpuQueue;
sys/kern/kern_rmlock.c
243
struct rm_queue *next, *prev;
sys/kern/kern_rmlock.c
245
next = tracker->rmp_cpuQueue.rmq_next;
sys/kern/kern_rmlock.c
249
next->rmq_prev = prev;
sys/kern/kern_rmlock.c
252
prev->rmq_next = next;
sys/kern/kern_sig.c
3402
goto next;
sys/kern/kern_sig.c
3411
next:;
sys/kern/kern_sig.c
420
struct ksiginfo *ksi, *next;
sys/kern/kern_sig.c
439
TAILQ_FOREACH_SAFE(ksi, &sq->sq_list, ksi_link, next) {
sys/kern/kern_sig.c
583
ksiginfo_t *ksi, *next;
sys/kern/kern_sig.c
590
TAILQ_FOREACH_SAFE(ksi, &src->sq_list, ksi_link, next) {
sys/kern/kern_sig.c
635
ksiginfo_t *ksi, *next;
sys/kern/kern_sig.c
640
TAILQ_FOREACH_SAFE(ksi, &sq->sq_list, ksi_link, next) {
sys/kern/kern_sysctl.c
1337
int *next, int *len, int level, bool honor_skip)
sys/kern/kern_sysctl.c
1369
next + 1, len, level + 1, honor_skip);
sys/kern/kern_sysctl.c
1372
namelen - 1, next + 1, len, level + 1, honor_skip);
sys/kern/kern_sysctl.c
1392
*next = oidp->oid_number;
sys/kern/kern_sysctl.c
1409
int next[CTL_MAXNAME];
sys/kern/kern_sysctl.c
1413
success = sysctl_sysctl_next_action(lsp, name, namelen, next, &len, 1,
sys/kern/kern_sysctl.c
1418
error = SYSCTL_OUT(req, next, len * sizeof (int));
sys/kern/kern_sysctl.c
1426
static SYSCTL_NODE(_sysctl, CTL_SYSCTL_NEXT, next, CTLFLAG_RD |
sys/kern/kern_sysctl.c
2991
int qoid[CTL_MAXNAME + 2], next[CTL_MAXNAME];
sys/kern/kern_sysctl.c
3005
size_t nextsize = sizeof(next);
sys/kern/kern_sysctl.c
3008
next, &nextsize, NULL, 0, &nlen, 0);
sys/kern/kern_sysctl.c
3021
if (memcmp(&oid[0], &next[0], len * sizeof(int)) != 0)
sys/kern/kern_sysctl.c
3025
error = sysctl_find_oid(next, nlen, &oidp, NULL, NULL);
sys/kern/kern_sysctl.c
3029
(void)db_show_oid(oidp, next, nlen, flags | DB_SYSCTL_SAFE_ONLY);
sys/kern/kern_sysctl.c
3034
memcpy(&qoid[2 + len], &next[len], (nlen - len) * sizeof(int));
sys/kern/kern_tc.c
524
struct fftimehands *next;
sys/kern/kern_tc.c
542
cur->next = cur + 1;
sys/kern/kern_tc.c
543
last->next = ffth;
sys/kern/kern_tc.c
639
ffth = fftimehands->next;
sys/kern/kern_tc.c
784
ffth = fftimehands->next;
sys/kern/kern_timeout.c
431
struct callout *c, *next;
sys/kern/kern_timeout.c
476
LIST_FOREACH_SAFE(c, sc, c_links.le, next) {
sys/kern/kern_timeout.c
487
cc_exec_next(cc) = next;
sys/kern/kern_timeout.c
495
next = cc_exec_next(cc);
sys/kern/subr_epoch.c
806
ck_stack_entry_t *cursor, *head, *next;
sys/kern/subr_epoch.c
836
for (cursor = head; cursor != NULL; cursor = next) {
sys/kern/subr_epoch.c
840
next = CK_STACK_NEXT(cursor);
sys/kern/subr_module.c
108
int next;
sys/kern/subr_module.c
128
next = sizeof(uint32_t) * 2 + hdr[1];
sys/kern/subr_module.c
129
next = roundup(next, sizeof(u_long));
sys/kern/subr_module.c
130
curp += next;
sys/kern/subr_module.c
144
int next;
sys/kern/subr_module.c
152
next = sizeof(uint32_t) * 2 + hdr[1];
sys/kern/subr_module.c
153
next = roundup(next, sizeof(u_long));
sys/kern/subr_module.c
154
curp += next;
sys/kern/subr_module.c
168
next = sizeof(uint32_t) * 2 + hdr[1];
sys/kern/subr_module.c
169
next = roundup(next, sizeof(u_long));
sys/kern/subr_module.c
170
curp += next;
sys/kern/subr_module.c
186
int next;
sys/kern/subr_module.c
217
next = sizeof(uint32_t) * 2 + hdr[1];
sys/kern/subr_module.c
218
next = roundup(next, sizeof(u_long));
sys/kern/subr_module.c
219
curp += next;
sys/kern/subr_module.c
232
int next;
sys/kern/subr_module.c
267
next = sizeof(uint32_t) * 2 + hdr[1];
sys/kern/subr_module.c
268
next = roundup(next, sizeof(u_long));
sys/kern/subr_module.c
269
curp += next;
sys/kern/subr_module.c
303
int next;
sys/kern/subr_module.c
327
next = sizeof(uint32_t) * 2 + hdr[1];
sys/kern/subr_module.c
328
next = roundup(next, sizeof(u_long));
sys/kern/subr_module.c
329
curp += next;
sys/kern/subr_module.c
77
int next;
sys/kern/subr_module.c
92
next = sizeof(uint32_t) * 2 + hdr[1];
sys/kern/subr_module.c
93
next = roundup(next, sizeof(u_long));
sys/kern/subr_module.c
94
curp += next;
sys/kern/subr_smp.c
1204
struct topo_node *next;
sys/kern/subr_smp.c
1209
next = TAILQ_NEXT(child, siblings);
sys/kern/subr_smp.c
1213
while (next != NULL) {
sys/kern/subr_smp.c
1214
node = next;
sys/kern/subr_smp.c
1215
next = TAILQ_NEXT(node, siblings);
sys/kern/subr_smp.c
1229
struct topo_node *next;
sys/kern/subr_smp.c
1231
if ((next = TAILQ_FIRST(&node->children)) != NULL)
sys/kern/subr_smp.c
1232
return (next);
sys/kern/subr_smp.c
1234
if ((next = TAILQ_NEXT(node, siblings)) != NULL)
sys/kern/subr_smp.c
1235
return (next);
sys/kern/subr_smp.c
1238
if ((next = TAILQ_NEXT(node, siblings)) != NULL)
sys/kern/subr_smp.c
1239
return (next);
sys/kern/subr_smp.c
1251
struct topo_node *next;
sys/kern/subr_smp.c
1253
if ((next = TAILQ_NEXT(node, siblings)) != NULL)
sys/kern/subr_smp.c
1254
return (next);
sys/kern/subr_smp.c
1257
if ((next = TAILQ_NEXT(node, siblings)) != NULL)
sys/kern/subr_smp.c
1258
return (next);
sys/kern/subr_vmem.c
1216
struct vmem_btag *bt, *cursor, *next, *prev;
sys/kern/subr_vmem.c
1250
if ((next = TAILQ_NEXT(cursor, bt_seglist)) != NULL &&
sys/kern/subr_vmem.c
1252
next->bt_type == BT_TYPE_FREE && prev->bt_type == BT_TYPE_FREE &&
sys/kern/subr_vmem.c
1253
prev->bt_start + prev->bt_size == next->bt_start) {
sys/kern/subr_vmem.c
1254
prev->bt_size += next->bt_size;
sys/kern/subr_vmem.c
1255
bt_remfree(vm, next);
sys/kern/subr_vmem.c
1256
bt_remseg(vm, next);
sys/kern/sys_timerfd.c
406
sbintime_t exp, interval, now, next, diff;
sys/kern/sys_timerfd.c
414
next = now > SBT_MAX - interval ? SBT_MAX : now + interval;
sys/kern/sys_timerfd.c
420
next -= diff % interval;
sys/kern/sys_timerfd.c
423
callout_schedule_sbt(&tfd->tfd_callout, next, 0, C_ABSOLUTE);
sys/kern/sys_timerfd.c
424
tfd->tfd_time.it_value = sbttots(next);
sys/kern/sysv_msg.c
1007
next = msghdr->msg_spot;
sys/kern/sysv_msg.c
1014
if (next <= -1)
sys/kern/sysv_msg.c
1016
if (next >= msginfo.msgseg)
sys/kern/sysv_msg.c
1019
if ((error = copyin(msgp, &msgpool[next * msginfo.msgssz],
sys/kern/sysv_msg.c
1032
next = msgmaps[next].next;
sys/kern/sysv_msg.c
1034
if (next != -1)
sys/kern/sysv_msg.c
1144
short next;
sys/kern/sysv_msg.c
1357
next = msghdr->msg_spot;
sys/kern/sysv_msg.c
1365
if (next <= -1)
sys/kern/sysv_msg.c
1367
if (next >= msginfo.msgseg)
sys/kern/sysv_msg.c
1370
error = copyout(&msgpool[next * msginfo.msgssz], msgp, tlen);
sys/kern/sysv_msg.c
1380
next = msgmaps[next].next;
sys/kern/sysv_msg.c
157
short next; /* next segment in buffer */
sys/kern/sysv_msg.c
251
msgmaps[i-1].next = i;
sys/kern/sysv_msg.c
252
msgmaps[i].next = -1; /* implies entry is available */
sys/kern/sysv_msg.c
387
short next;
sys/kern/sysv_msg.c
390
next = msgmaps[msghdr->msg_spot].next;
sys/kern/sysv_msg.c
391
msgmaps[msghdr->msg_spot].next = free_msgmaps;
sys/kern/sysv_msg.c
394
msghdr->msg_spot = next;
sys/kern/sysv_msg.c
773
short next;
sys/kern/sysv_msg.c
977
next = free_msgmaps;
sys/kern/sysv_msg.c
978
if (next <= -1)
sys/kern/sysv_msg.c
980
if (next >= msginfo.msgseg)
sys/kern/sysv_msg.c
982
DPRINTF(("allocating segment %d to message\n", next));
sys/kern/sysv_msg.c
983
free_msgmaps = msgmaps[next].next;
sys/kern/sysv_msg.c
985
msgmaps[next].next = msghdr->msg_spot;
sys/kern/sysv_msg.c
986
msghdr->msg_spot = next;
sys/kern/uipc_sockbuf.c
1560
struct mbuf *m, *next, *mfree;
sys/kern/uipc_sockbuf.c
1568
next = (m = sb->sb_mb) ? m->m_nextpkt : 0;
sys/kern/uipc_sockbuf.c
1575
if (next == NULL && !is_tls) {
sys/kern/uipc_sockbuf.c
1584
next = sb->sb_mtls;
sys/kern/uipc_sockbuf.c
1588
KASSERT(next, ("%s: no next, len %d", __func__, len));
sys/kern/uipc_sockbuf.c
1589
m = next;
sys/kern/uipc_sockbuf.c
1590
next = m->m_nextpkt;
sys/kern/uipc_sockbuf.c
1652
m->m_nextpkt = next;
sys/kern/uipc_sockbuf.c
1654
sb->sb_mb = next;
sys/kern/uipc_socket.c
403
STAILQ_FOREACH_SAFE(s, &local_head, next, s_temp) {
sys/kern/uipc_socket.c
420
STAILQ_INSERT_TAIL(&wq->head, sp, next);
sys/kern/uipc_usrreq.c
1402
struct mbuf *control, *m, *first, *part, *next;
sys/kern/uipc_usrreq.c
1494
for (space = uio->uio_resid, m = next = first, part = NULL, datalen = 0;
sys/kern/uipc_usrreq.c
1505
next = STAILQ_NEXT(m, m_stailq);
sys/kern/uipc_usrreq.c
1515
next = part = m;
sys/kern/uipc_usrreq.c
1518
next = STAILQ_NEXT(m, m_stailq);
sys/kern/uipc_usrreq.c
1522
if (next == NULL)
sys/kern/uipc_usrreq.c
1525
STAILQ_FIRST(&sb->uxst_mbq) = next;
sys/kern/uipc_usrreq.c
1652
for (m = first; datalen > 0; m = next) {
sys/kern/uipc_usrreq.c
1656
next = STAILQ_NEXT(m, m_stailq);
sys/kern/uipc_usrreq.c
1668
for (; m != part && datalen > 0; m = next) {
sys/kern/uipc_usrreq.c
1669
next = STAILQ_NEXT(m, m_stailq);
sys/kern/uipc_usrreq.c
3559
goto next;
sys/kern/uipc_usrreq.c
3575
goto next;
sys/kern/uipc_usrreq.c
3596
goto next;
sys/kern/uipc_usrreq.c
3619
goto next;
sys/kern/uipc_usrreq.c
3628
next:
sys/kern/vfs_mount.c
2845
SLIST_ENTRY(mntaarg) next;
sys/kern/vfs_mount.c
2903
SLIST_INSERT_HEAD(&ma->list, maa, next);
sys/kern/vfs_mount.c
2932
SLIST_INSERT_HEAD(&ma->list, maa, next);
sys/kern/vfs_mount.c
2979
SLIST_REMOVE_HEAD(&ma->list, next);
sys/kern/vfs_subr.c
3043
struct synclist *next, *slp;
sys/kern/vfs_subr.c
3091
next = &syncer_workitem_pending[syncer_delayno];
sys/kern/vfs_subr.c
3121
LIST_INSERT_HEAD(next, bo, bo_synclist);
sys/kern/vfs_subr.c
5389
static long start, incr, next;
sys/kern/vfs_subr.c
5411
next += incr;
sys/kern/vfs_subr.c
5412
if (next == 0 || next > syncer_maxdelay) {
sys/kern/vfs_subr.c
5419
next = start;
sys/kern/vfs_subr.c
5423
vn_syncer_add_to_worklist(bo, syncdelay > 0 ? next % syncdelay : 0);
sys/libkern/x86/crc32_sse42.c
225
const unsigned char *next, *end;
sys/libkern/x86/crc32_sse42.c
232
next = buf;
sys/libkern/x86/crc32_sse42.c
236
while (len && ((uintptr_t)next & (align - 1)) != 0) {
sys/libkern/x86/crc32_sse42.c
237
crc0 = _mm_crc32_u8(crc0, *next);
sys/libkern/x86/crc32_sse42.c
238
next++;
sys/libkern/x86/crc32_sse42.c
254
end = next + LONG;
sys/libkern/x86/crc32_sse42.c
257
crc0 = _mm_crc32_u64(crc0, *(const uint64_t *)next);
sys/libkern/x86/crc32_sse42.c
259
*(const uint64_t *)(next + LONG));
sys/libkern/x86/crc32_sse42.c
261
*(const uint64_t *)(next + (LONG * 2)));
sys/libkern/x86/crc32_sse42.c
263
crc0 = _mm_crc32_u32(crc0, *(const uint32_t *)next);
sys/libkern/x86/crc32_sse42.c
265
*(const uint32_t *)(next + LONG));
sys/libkern/x86/crc32_sse42.c
267
*(const uint32_t *)(next + (LONG * 2)));
sys/libkern/x86/crc32_sse42.c
269
next += align;
sys/libkern/x86/crc32_sse42.c
270
} while (next < end);
sys/libkern/x86/crc32_sse42.c
318
next += LONG * 2;
sys/libkern/x86/crc32_sse42.c
332
end = next + SHORT;
sys/libkern/x86/crc32_sse42.c
335
crc0 = _mm_crc32_u64(crc0, *(const uint64_t *)next);
sys/libkern/x86/crc32_sse42.c
337
*(const uint64_t *)(next + SHORT));
sys/libkern/x86/crc32_sse42.c
339
*(const uint64_t *)(next + (SHORT * 2)));
sys/libkern/x86/crc32_sse42.c
341
crc0 = _mm_crc32_u32(crc0, *(const uint32_t *)next);
sys/libkern/x86/crc32_sse42.c
343
*(const uint32_t *)(next + SHORT));
sys/libkern/x86/crc32_sse42.c
345
*(const uint32_t *)(next + (SHORT * 2)));
sys/libkern/x86/crc32_sse42.c
347
next += align;
sys/libkern/x86/crc32_sse42.c
348
} while (next < end);
sys/libkern/x86/crc32_sse42.c
353
next += SHORT * 2;
sys/libkern/x86/crc32_sse42.c
359
end = next + (len - (len & (align - 1)));
sys/libkern/x86/crc32_sse42.c
360
while (next < end) {
sys/libkern/x86/crc32_sse42.c
362
crc0 = _mm_crc32_u64(crc0, *(const uint64_t *)next);
sys/libkern/x86/crc32_sse42.c
364
crc0 = _mm_crc32_u32(crc0, *(const uint32_t *)next);
sys/libkern/x86/crc32_sse42.c
366
next += align;
sys/libkern/x86/crc32_sse42.c
372
crc0 = _mm_crc32_u8(crc0, *next);
sys/libkern/x86/crc32_sse42.c
373
next++;
sys/net/altq/altq_fairq.c
640
b->next = b;
sys/net/altq/altq_fairq.c
643
b->next = cl->cl_head;
sys/net/altq/altq_fairq.c
645
b->prev->next = b;
sys/net/altq/altq_fairq.c
646
b->next->prev = b;
sys/net/altq/altq_fairq.c
804
cl->cl_head = b->next;
sys/net/altq/altq_fairq.c
808
b->next->prev = b->prev;
sys/net/altq/altq_fairq.c
809
b->prev->next = b->next;
sys/net/altq/altq_fairq.c
819
cl->cl_head = b->next;
sys/net/altq/altq_fairq.c
823
cl->cl_head = b->next;
sys/net/altq/altq_fairq.c
873
b = b->next;
sys/net/altq/altq_fairq.h
93
struct fairq_bucket *next; /* circular list */
sys/net/if.c
1867
next: continue;
sys/net/if.c
1899
goto next; /* next address! */
sys/net/if.c
1980
ifa_preferred(struct ifaddr *cur, struct ifaddr *next)
sys/net/if.c
1983
return (cur->ifa_carp && (!next->ifa_carp ||
sys/net/if.c
1984
((*carp_master_p)(next) && !(*carp_master_p)(cur))));
sys/net/if.c
3598
struct ifmultiaddr *next;
sys/net/if.c
3601
CK_STAILQ_FOREACH_SAFE(ifma, &ifp->if_multiaddrs, ifma_link, next)
sys/net/if_llatbl.c
143
struct mbuf *next = lle->la_hold->m_nextpkt;
sys/net/if_llatbl.c
145
lle->la_hold = next;
sys/net/if_llatbl.c
176
struct llentry *lle, *next;
sys/net/if_llatbl.c
182
CK_LIST_FOREACH_SAFE(lle, &llt->lle_head[i], lle_next, next) {
sys/net/if_llatbl.c
277
struct llentry *lle, *next;
sys/net/if_llatbl.c
293
CK_LIST_FOREACH_SAFE(lle, &pmd.dchain, lle_chain, next)
sys/net/if_llatbl.c
309
struct llentry *lle, *next;
sys/net/if_llatbl.c
311
CK_LIST_FOREACH_SAFE(lle, head, lle_chain, next)
sys/net/if_llatbl.c
328
struct mbuf *next = lle->la_hold->m_nextpkt;
sys/net/if_llatbl.c
330
lle->la_hold = next;
sys/net/if_llatbl.c
690
struct llentry *lle, *next;
sys/net/if_llatbl.c
704
CK_LIST_FOREACH_SAFE(lle, &dchain, lle_chain, next) {
sys/net/if_llatbl.c
790
struct llentry *lle, *next;
sys/net/if_llatbl.c
803
CK_LIST_FOREACH_SAFE(lle, &lmd.dchain, lle_chain, next)
sys/net/if_media.c
348
struct ifmedia_entry *match, *next;
sys/net/if_media.c
353
LIST_FOREACH(next, &ifm->ifm_list, ifm_list) {
sys/net/if_media.c
354
if ((next->ifm_media & mask) == (target & mask)) {
sys/net/if_media.c
361
match = next;
sys/net/iflib.c
2660
caddr_t start, end, cur, next;
sys/net/iflib.c
2670
next = CACHE_PTR_NEXT(cur);
sys/net/iflib.c
2671
return (next < end ? next : start);
sys/net/iflib.c
2704
int flid, cidx, len, next;
sys/net/iflib.c
2718
next = (cidx + CACHE_PTR_INCREMENT) & (fl->ifl_size - 1);
sys/net/iflib.c
2719
prefetch(&fl->ifl_sds.ifsd_map[next]);
sys/net/iflib.c
3828
int next, size;
sys/net/iflib.c
3832
next = (cidx + CACHE_PTR_INCREMENT) & (size - 1);
sys/net/iflib.c
3837
prefetch2cachelines(&items[next]);
sys/net/iflib.c
4265
next = m->m_nextpkt;
sys/net/iflib.c
4269
m = next;
sys/net/iflib.c
4277
next = m;
sys/net/iflib.c
4280
next = next->m_nextpkt;
sys/net/iflib.c
4281
} while (next != NULL);
sys/net/iflib.c
4291
for (next = m, i = 0; next != NULL; i++) {
sys/net/iflib.c
4292
mp[i] = next;
sys/net/iflib.c
4293
next = next->m_nextpkt;
sys/net/iflib.c
6754
char *p, *next;
sys/net/iflib.c
6788
for (i = 0, next = buf, p = strsep(&next, " ,"); i < 8 && p;
sys/net/iflib.c
6789
i++, p = strsep(&next, " ,")) {
sys/net/netmap_user.h
403
struct win_netmap_fd_list *next;
sys/net/netmap_user.h
419
for (curr = win_netmap_fd_list_head; curr; curr = curr->next) {
sys/net/netmap_user.h
425
curr->next = win_netmap_fd_list_head;
sys/net/netmap_user.h
436
for (; curr ; prev = curr, curr = curr->next) {
sys/net/netmap_user.h
441
win_netmap_fd_list_head = curr->next;
sys/net/netmap_user.h
443
prev->next = curr->next;
sys/net/netmap_user.h
456
for (curr = win_netmap_fd_list_head; curr; curr = curr->next) {
sys/net/pfil.c
289
struct pfil_link *link, *next;
sys/net/pfil.c
294
CK_STAILQ_FOREACH_SAFE(link, &ph->head_in, link_chain, next) {
sys/net/pfil.c
298
CK_STAILQ_FOREACH_SAFE(link, &ph->head_out, link_chain, next) {
sys/net/pfvar.h
2018
TAILQ_ENTRY(pf_sctp_multihome_job) next;
sys/net/radix.c
1038
next = rn;
sys/net/radix.c
1047
rn = next;
sys/net/radix.c
1061
struct radix_node *base, *next;
sys/net/radix.c
1081
next = rn;
sys/net/radix.c
1089
rn = next;
sys/net/radix.c
585
rn_new_radix_mask(struct radix_node *tt, struct radix_mask *next)
sys/net/radix.c
601
m->rm_mklist = next;
sys/net/radix.c
77
struct radix_mask *next);
sys/net/radix.c
957
struct radix_node *base, *next;
sys/net/route/route_subscription.c
118
CK_STAILQ_INSERT_HEAD(&rnh->rnh_subscribers, rs, next);
sys/net/route/route_subscription.c
138
CK_STAILQ_INSERT_HEAD(&rnh->rnh_subscribers, rs, next);
sys/net/route/route_subscription.c
155
CK_STAILQ_REMOVE(&rnh->rnh_subscribers, rs, rib_subscription, next);
sys/net/route/route_subscription.c
169
CK_STAILQ_REMOVE(&rnh->rnh_subscribers, rs, rib_subscription, next);
sys/net/route/route_subscription.c
203
CK_STAILQ_REMOVE_HEAD(&rnh->rnh_subscribers, next);
sys/net/route/route_subscription.c
44
CK_STAILQ_ENTRY(rib_subscription) next;
sys/net/route/route_subscription.c
60
CK_STAILQ_FOREACH(rs, &rnh->rnh_subscribers, next) {
sys/net80211/ieee80211_ageq.c
92
struct mbuf *next;
sys/net80211/ieee80211_ageq.c
94
for (; m != NULL; m = next) {
sys/net80211/ieee80211_ageq.c
95
next = m->m_nextpkt;
sys/net80211/ieee80211_hwmp.c
1276
struct mbuf *m, *next;
sys/net80211/ieee80211_hwmp.c
1457
for (; m != NULL; m = next) {
sys/net80211/ieee80211_hwmp.c
1458
next = m->m_nextpkt;
sys/net80211/ieee80211_mesh.c
1074
struct mbuf *m, *mcopy, *next;
sys/net80211/ieee80211_mesh.c
1120
for (; mcopy != NULL; mcopy = next) {
sys/net80211/ieee80211_mesh.c
1121
next = mcopy->m_nextpkt;
sys/net80211/ieee80211_mesh.c
2565
struct ieee80211_mesh_gate_route *gr, *next;
sys/net80211/ieee80211_mesh.c
2590
TAILQ_FOREACH_SAFE(gr, &ms->ms_known_gates, gr_next, next) {
sys/net80211/ieee80211_mesh.c
366
struct ieee80211_mesh_route *rt, *next;
sys/net80211/ieee80211_mesh.c
369
TAILQ_FOREACH_SAFE(rt, &ms->ms_routes, rt_next, next) {
sys/net80211/ieee80211_mesh.c
390
struct ieee80211_mesh_route *rt, *next;
sys/net80211/ieee80211_mesh.c
395
TAILQ_FOREACH_SAFE(rt, &ms->ms_routes, rt_next, next)
sys/net80211/ieee80211_mesh.c
405
struct ieee80211_mesh_route *rt, *next;
sys/net80211/ieee80211_mesh.c
408
TAILQ_FOREACH_SAFE(rt, &ms->ms_routes, rt_next, next) {
sys/net80211/ieee80211_mesh.c
423
struct ieee80211_mesh_route *rt, *next;
sys/net80211/ieee80211_mesh.c
428
TAILQ_FOREACH_SAFE(rt, &ms->ms_routes, rt_next, next) {
sys/net80211/ieee80211_mesh.c
866
struct ieee80211_mesh_gate_route *gr = NULL, *next;
sys/net80211/ieee80211_mesh.c
870
TAILQ_FOREACH_SAFE(gr, &ms->ms_known_gates, gr_next, next) {
sys/net80211/ieee80211_node.c
2301
struct ieee80211_node *ni, *next;
sys/net80211/ieee80211_node.c
2304
TAILQ_FOREACH_SAFE(ni, &nt->nt_node, ni_list, next) {
sys/net80211/ieee80211_node.c
2327
TAILQ_FOREACH_SAFE(ni, &nt->nt_node, ni_list, next)
sys/net80211/ieee80211_output.c
1924
struct mbuf *next;
sys/net80211/ieee80211_output.c
1930
next = m->m_nextpkt;
sys/net80211/ieee80211_output.c
1933
} while ((m = next) != NULL);
sys/net80211/ieee80211_proto.c
1293
goto next;
sys/net80211/ieee80211_proto.c
1298
next:
sys/net80211/ieee80211_scan_sta.c
1729
struct sta_entry *se, *next;
sys/net80211/ieee80211_scan_sta.c
1732
TAILQ_FOREACH_SAFE(se, &st->st_entry, se_list, next) {
sys/net80211/ieee80211_scan_sta.c
220
struct sta_entry *se, *next;
sys/net80211/ieee80211_scan_sta.c
222
TAILQ_FOREACH_SAFE(se, &st->st_entry, se_list, next) {
sys/net80211/ieee80211_superg.c
614
struct mbuf *m, *next;
sys/net80211/ieee80211_superg.c
618
for (m = head; m != last; m = next) {
sys/net80211/ieee80211_superg.c
619
next = m->m_nextpkt;
sys/net80211/ieee80211_wds.c
103
struct mbuf *m, *next;
sys/net80211/ieee80211_wds.c
115
for (; m != NULL; m = next) {
sys/net80211/ieee80211_wds.c
116
next = m->m_nextpkt;
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
270
LIST_FOREACH(con, &unit->con_list, next) {
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
494
LIST_FOREACH(con, &unit->con_list, next)
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
697
LIST_FOREACH(con, &unit->con_list, next)
sys/netgraph/bluetooth/hci/ng_hci_evnt.c
857
LIST_FOREACH(con, &unit->con_list, next)
sys/netgraph/bluetooth/hci/ng_hci_main.c
542
ng_hci_neighbor_p nn = LIST_NEXT(n, next);
sys/netgraph/bluetooth/hci/ng_hci_main.c
567
LIST_FOREACH(n, &unit->neighbors, next) {
sys/netgraph/bluetooth/hci/ng_hci_main.c
594
LIST_FOREACH(c, &unit->con_list, next)
sys/netgraph/bluetooth/hci/ng_hci_main.c
612
LIST_FOREACH(c, &unit->con_list, next) {
sys/netgraph/bluetooth/hci/ng_hci_misc.c
184
LIST_INSERT_HEAD(&unit->neighbors, n, next);
sys/netgraph/bluetooth/hci/ng_hci_misc.c
197
LIST_REMOVE(n, next);
sys/netgraph/bluetooth/hci/ng_hci_misc.c
223
ng_hci_neighbor_p nn = LIST_NEXT(n, next);
sys/netgraph/bluetooth/hci/ng_hci_misc.c
298
LIST_INSERT_HEAD(&unit->con_list, con, next);
sys/netgraph/bluetooth/hci/ng_hci_misc.c
311
LIST_REMOVE(con, next);
sys/netgraph/bluetooth/hci/ng_hci_misc.c
338
LIST_FOREACH(con, &unit->con_list, next)
sys/netgraph/bluetooth/hci/ng_hci_misc.c
354
LIST_FOREACH(con, &unit->con_list, next)
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
342
LIST_FOREACH(acl_con, &unit->con_list, next)
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
388
LIST_FOREACH(sco_con, &unit->con_list, next)
sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
966
LIST_FOREACH(con, &unit->con_list, next)
sys/netgraph/bluetooth/hci/ng_hci_var.h
194
LIST_ENTRY(ng_hci_unit_con) next; /* next */
sys/netgraph/bluetooth/hci/ng_hci_var.h
216
LIST_ENTRY(ng_hci_neighbor) next;
sys/netgraph/bluetooth/include/ng_btsocket_hci_raw.h
54
LIST_ENTRY(ng_btsocket_hci_raw_pcb) next; /* link to next */
sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h
178
LIST_ENTRY(ng_btsocket_l2cap_pcb) next; /* link to next PCB */
sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h
48
LIST_ENTRY(ng_btsocket_l2cap_rtentry) next; /* link to next */
sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h
83
LIST_ENTRY(ng_btsocket_l2cap_raw_pcb) next; /* link to next PCB */
sys/netgraph/bluetooth/include/ng_btsocket_rfcomm.h
258
LIST_ENTRY(ng_btsocket_rfcomm_session) next; /* link to next */
sys/netgraph/bluetooth/include/ng_btsocket_rfcomm.h
303
LIST_ENTRY(ng_btsocket_rfcomm_pcb) next; /* link to next */
sys/netgraph/bluetooth/include/ng_btsocket_sco.h
51
LIST_ENTRY(ng_btsocket_sco_rtentry) next; /* link to next */
sys/netgraph/bluetooth/include/ng_btsocket_sco.h
93
LIST_ENTRY(ng_btsocket_sco_pcb) next; /* link to next PCB */
sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c
326
LIST_FOREACH(ch, &l2cap->chan_list, next)
sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c
72
TAILQ_FOREACH(cmd, &con->cmd_list, next) {
sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
527
LIST_FOREACH(ch, &l2cap->chan_list, next){
sys/netgraph/bluetooth/l2cap/ng_l2cap_main.c
557
LIST_FOREACH(con, &l2cap->con_list, next)
sys/netgraph/bluetooth/l2cap/ng_l2cap_main.c
575
LIST_FOREACH(con, &l2cap->con_list, next) {
sys/netgraph/bluetooth/l2cap/ng_l2cap_main.c
604
LIST_FOREACH(ch, &l2cap->chan_list, next)
sys/netgraph/bluetooth/l2cap/ng_l2cap_main.c
623
LIST_FOREACH(ch, &l2cap->chan_list, next) {
sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c
145
LIST_INSERT_HEAD(&l2cap->con_list, con, next);
sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c
266
n = LIST_NEXT(f, next);
sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c
289
LIST_REMOVE(con, next);
sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c
304
LIST_FOREACH(con, &l2cap->con_list, next)
sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c
321
LIST_FOREACH(con, &l2cap->con_list, next)
sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c
368
LIST_INSERT_HEAD(&l2cap->chan_list, ch, next);
sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c
390
LIST_FOREACH(ch, &l2cap->chan_list, next){
sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c
409
LIST_FOREACH(ch, &l2cap->chan_list, next){
sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c
429
n = TAILQ_NEXT(f, next);
sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c
441
LIST_REMOVE(ch, next);
sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c
487
TAILQ_FOREACH(cmd, &con->cmd_list, next) {
sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.h
67
TAILQ_INSERT_TAIL(&(con)->cmd_list, (cmd), next); \
sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.h
73
TAILQ_REMOVE(&((cmd)->con->cmd_list), (cmd), next); \
sys/netgraph/bluetooth/l2cap/ng_l2cap_var.h
133
LIST_ENTRY(ng_l2cap_con) next; /* link */
sys/netgraph/bluetooth/l2cap/ng_l2cap_var.h
167
LIST_ENTRY(ng_l2cap_chan) next; /* link */
sys/netgraph/bluetooth/l2cap/ng_l2cap_var.h
190
TAILQ_ENTRY(ng_l2cap_cmd) next; /* link */
sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c
1524
LIST_REMOVE(pcb, next);
sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c
500
LIST_FOREACH(pcb, &ng_btsocket_hci_raw_sockets, next) {
sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c
510
goto next;
sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c
518
goto next;
sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c
544
next:
sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c
565
LIST_FOREACH(pcb, &ng_btsocket_hci_raw_sockets, next) {
sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c
950
LIST_INSERT_HEAD(&ng_btsocket_hci_raw_sockets, pcb, next);
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
1591
LIST_FOREACH(pcb, &ng_btsocket_l2cap_sockets, next) {
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
1601
goto next;
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
1614
next:
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
1653
LIST_INSERT_HEAD(&ng_btsocket_l2cap_rt, rt, next);
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
1841
pcb_next = LIST_NEXT(pcb, next);
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
1866
ng_btsocket_l2cap_rtentry_p rt_next = LIST_NEXT(rt, next);
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
1869
LIST_REMOVE(rt, next);
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
2073
LIST_INSERT_HEAD(&ng_btsocket_l2cap_sockets, pcb, next);
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
2118
LIST_FOREACH(pcb, &ng_btsocket_l2cap_sockets, next)
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
2215
LIST_FOREACH(rt, &ng_btsocket_l2cap_rt, next) {
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
2421
LIST_REMOVE(pcb, next);
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
2720
LIST_FOREACH(p, &ng_btsocket_l2cap_sockets, next) {
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
2749
LIST_FOREACH(p, &ng_btsocket_l2cap_sockets, next)
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
2768
LIST_FOREACH(p, &ng_btsocket_l2cap_sockets, next){
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c
1167
LIST_REMOVE(pcb, next);
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c
395
rt, next);
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c
422
LIST_FOREACH(pcb,&ng_btsocket_l2cap_raw_sockets,next) {
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c
469
LIST_FOREACH(pcb, &ng_btsocket_l2cap_raw_sockets, next) {
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c
493
ng_btsocket_l2cap_rtentry_p rt_next = LIST_NEXT(rt, next);
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c
496
LIST_REMOVE(rt, next);
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c
642
LIST_INSERT_HEAD(&ng_btsocket_l2cap_raw_sockets, pcb, next);
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c
677
LIST_FOREACH(rt, &ng_btsocket_l2cap_raw_rt, next) {
sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c
757
LIST_FOREACH(rt, &ng_btsocket_l2cap_raw_rt, next) {
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
1038
s_next = LIST_NEXT(s, next);
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
1044
LIST_REMOVE(s, next);
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
1364
LIST_INSERT_HEAD(&ng_btsocket_rfcomm_sessions, s, next);
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
1790
LIST_FOREACH(s, &ng_btsocket_rfcomm_sessions, next) {
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
3389
LIST_FOREACH(pcb, &ng_btsocket_rfcomm_sockets, next) {
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
430
LIST_INSERT_HEAD(&ng_btsocket_rfcomm_sockets, pcb, next);
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
465
LIST_FOREACH(pcb1, &ng_btsocket_rfcomm_sockets, next) {
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
740
LIST_REMOVE(pcb, next);
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
831
LIST_FOREACH(pcb1, &ng_btsocket_rfcomm_sockets, next)
sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
872
LIST_FOREACH(s, &ng_btsocket_rfcomm_sessions, next)
sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
1052
pcb_next = LIST_NEXT(pcb, next);
sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
1078
ng_btsocket_sco_rtentry_p rt_next = LIST_NEXT(rt, next);
sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
1081
LIST_REMOVE(rt, next);
sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
1259
LIST_INSERT_HEAD(&ng_btsocket_sco_sockets, pcb, next);
sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
1297
LIST_FOREACH(pcb, &ng_btsocket_sco_sockets, next) {
sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
1385
LIST_FOREACH(rt, &ng_btsocket_sco_rt, next) {
sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
1522
LIST_REMOVE(pcb, next);
sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
1810
LIST_FOREACH(p, &ng_btsocket_sco_sockets, next) {
sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
1846
LIST_FOREACH(p, &ng_btsocket_sco_sockets, next) {
sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
1872
LIST_FOREACH(p, &ng_btsocket_sco_sockets, next) {
sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
841
LIST_INSERT_HEAD(&ng_btsocket_sco_rt, rt, next);
sys/netgraph/ng_bridge.c
1014
SLIST_FOREACH(host, &priv->tab[bucket], next) {
sys/netgraph/ng_bridge.c
1072
SLIST_INSERT_HEAD(&priv->tab[bucket], host, next);
sys/netgraph/ng_bridge.c
1120
SLIST_REMOVE_HEAD(oldList, next);
sys/netgraph/ng_bridge.c
1122
SLIST_INSERT_HEAD(&newTab[newBucket], host, next);
sys/netgraph/ng_bridge.c
1172
*hptr = SLIST_NEXT(host, next);
sys/netgraph/ng_bridge.c
1176
hptr = &SLIST_NEXT(host, next);
sys/netgraph/ng_bridge.c
1223
*hptr = SLIST_NEXT(host, next);
sys/netgraph/ng_bridge.c
1229
hptr = &SLIST_NEXT(host, next);
sys/netgraph/ng_bridge.c
139
SLIST_ENTRY(ng_bridge_host) next; /* next entry in bucket */
sys/netgraph/ng_bridge.c
649
SLIST_FOREACH(host, &priv->tab[bucket], next) {
sys/netgraph/ng_etf.c
134
LIST_ENTRY(filter) next;
sys/netgraph/ng_etf.c
161
LIST_FOREACH(fil, chain, next) {
sys/netgraph/ng_etf.c
326
fil, next);
sys/netgraph/ng_etf.c
458
fil2 = LIST_NEXT(fil1, next);
sys/netgraph/ng_etf.c
460
LIST_REMOVE(fil1, next);
sys/netgraph/ng_pptpgre.c
1012
SLIST_INSERT_HEAD(&hpriv->roq, np, next);
sys/netgraph/ng_pptpgre.c
1014
SLIST_INSERT_AFTER(prev, np, next);
sys/netgraph/ng_pptpgre.c
1025
SLIST_REMOVE_HEAD(&hpriv->roq, next);
sys/netgraph/ng_pptpgre.c
1030
SLIST_INSERT_HEAD(&sendq, np, next);
sys/netgraph/ng_pptpgre.c
1032
SLIST_INSERT_AFTER(last, np, next);
sys/netgraph/ng_pptpgre.c
1188
SLIST_REMOVE_HEAD(&hpriv->roq, next);
sys/netgraph/ng_pptpgre.c
1189
SLIST_INSERT_HEAD(&sendq, np, next);
sys/netgraph/ng_pptpgre.c
1199
SLIST_REMOVE_HEAD(&hpriv->roq, next);
sys/netgraph/ng_pptpgre.c
1200
SLIST_INSERT_AFTER(last, np, next);
sys/netgraph/ng_pptpgre.c
1270
SLIST_REMOVE_HEAD(&hpriv->roq, next);
sys/netgraph/ng_pptpgre.c
174
SLIST_ENTRY(ng_pptpgre_roq) next; /* next entry of the queue */
sys/netgraph/ng_pptpgre.c
736
SLIST_REMOVE_HEAD(q, next);
sys/netgraph/ng_pptpgre.c
911
SLIST_INSERT_HEAD(&sendq, &t, next); \
sys/netgraph/ng_pptpgre.c
928
SLIST_FOREACH(np, &hpriv->roq, next) {
sys/netgraph/ng_pptpgre.c
969
SLIST_REMOVE_HEAD(&hpriv->roq, next);
sys/netgraph/ng_pptpgre.c
971
SLIST_INSERT_HEAD(&sendq, np, next);
sys/netgraph/ng_pptpgre.c
988
SLIST_REMOVE_HEAD(&hpriv->roq, next);
sys/netgraph/ng_pptpgre.c
991
SLIST_INSERT_HEAD(&sendq, np, next);
sys/netgraph/ng_pptpgre.c
993
SLIST_INSERT_AFTER(last, np, next);
sys/netgraph/ng_socket.c
162
LIST_ENTRY(hookpriv) next;
sys/netgraph/ng_socket.c
723
LIST_REMOVE(hp, next);
sys/netgraph/ng_socket.c
726
LIST_INSERT_HEAD(&new[h], hp, next);
sys/netgraph/ng_socket.c
752
LIST_INSERT_HEAD(&priv->hash[h], hp, next);
sys/netgraph/ng_socket.c
801
LIST_FOREACH(hp, &priv->hash[h], next)
sys/netgraph/ng_socket.c
984
LIST_REMOVE(hp, next);
sys/netinet/in_pcb.c
1695
next:
sys/netinet/in_pcb.c
1708
goto next;
sys/netinet/in_pcb.c
1720
goto next;
sys/netinet/in_pcb.c
1749
goto next;
sys/netinet/ip_reass.c
207
int i, hlen, next, tmpmax;
sys/netinet/ip_reass.c
454
next = 0;
sys/netinet/ip_reass.c
456
if (ntohs(GETIP(q)->ip_off) != next) {
sys/netinet/ip_reass.c
461
next += ntohs(GETIP(q)->ip_len);
sys/netinet/ip_reass.c
475
if (next + (ip->ip_hl << 2) > IP_MAXPACKET) {
sys/netinet/ip_reass.c
517
ip->ip_len = htons((ip->ip_hl << 2) + next);
sys/netinet/libalias/alias_db.c
1456
lnk->server = lnk->server->next;
sys/netinet/libalias/alias_db.c
2032
server->next = server;
sys/netinet/libalias/alias_db.c
2038
for (s = head; s->next != head; s = s->next)
sys/netinet/libalias/alias_db.c
2040
s->next = server;
sys/netinet/libalias/alias_db.c
2041
server->next = head;
sys/netinet/libalias/alias_db.c
512
struct server *head, *curr, *next;
sys/netinet/libalias/alias_db.c
516
next = curr->next;
sys/netinet/libalias/alias_db.c
518
} while ((curr = next) != head);
sys/netinet/libalias/alias_db.c
971
lnk->server = lnk->server->next;
sys/netinet/libalias/alias_db.h
252
struct server *next;
sys/netinet/libalias/alias_mod.c
134
SLIST_FOREACH(b, &dll_chain, next) {
sys/netinet/libalias/alias_mod.c
138
SLIST_INSERT_HEAD(&dll_chain, p, next);
sys/netinet/libalias/alias_mod.c
150
SLIST_FOREACH_SAFE(b, &dll_chain, next, b_tmp)
sys/netinet/libalias/alias_mod.c
152
SLIST_REMOVE(&dll_chain, b, dll, next);
sys/netinet/libalias/alias_mod.c
167
SLIST_REMOVE_HEAD(&dll_chain, next);
sys/netinet/libalias/alias_mod.h
114
SLIST_ENTRY(dll) next;
sys/netinet/libalias/alias_proxy.c
109
struct proxy_entry *next;
sys/netinet/libalias/alias_proxy.c
212
entry->next = NULL;
sys/netinet/libalias/alias_proxy.c
222
entry->next = la->proxyList;
sys/netinet/libalias/alias_proxy.c
228
ptr_last->next = entry;
sys/netinet/libalias/alias_proxy.c
231
entry->next = ptr;
sys/netinet/libalias/alias_proxy.c
235
ptr = ptr->next;
sys/netinet/libalias/alias_proxy.c
238
ptr_last->next = entry;
sys/netinet/libalias/alias_proxy.c
240
entry->next = NULL;
sys/netinet/libalias/alias_proxy.c
251
entry->last->next = entry->next;
sys/netinet/libalias/alias_proxy.c
253
la->proxyList = entry->next;
sys/netinet/libalias/alias_proxy.c
255
if (entry->next != NULL)
sys/netinet/libalias/alias_proxy.c
256
entry->next->last = entry->last;
sys/netinet/libalias/alias_proxy.c
273
ptr_next = ptr->next;
sys/netinet/libalias/alias_proxy.c
485
ptr = ptr->next;
sys/netinet/sctp_asconf.c
1219
TAILQ_FOREACH_SAFE(aa, &stcb->asoc.asconf_queue, next, aa_next) {
sys/netinet/sctp_asconf.c
1237
TAILQ_REMOVE(&stcb->asoc.asconf_queue, aa, next);
sys/netinet/sctp_asconf.c
1248
TAILQ_REMOVE(&stcb->asoc.asconf_queue, aa, next);
sys/netinet/sctp_asconf.c
1312
TAILQ_INSERT_TAIL(&stcb->asoc.asconf_queue, aa, next);
sys/netinet/sctp_asconf.c
1449
TAILQ_FOREACH_SAFE(aa, &stcb->asoc.asconf_queue, next, aa_next) {
sys/netinet/sctp_asconf.c
1462
TAILQ_REMOVE(&stcb->asoc.asconf_queue, aa, next);
sys/netinet/sctp_asconf.c
1530
TAILQ_INSERT_TAIL(&stcb->asoc.asconf_queue, aa, next);
sys/netinet/sctp_asconf.c
1544
TAILQ_FOREACH(aa, &stcb->asoc.asconf_queue, next) {
sys/netinet/sctp_asconf.c
1641
TAILQ_REMOVE(&stcb->asoc.asconf_queue, aparam, next);
sys/netinet/sctp_asconf.c
1810
TAILQ_FOREACH_SAFE(aa, &stcb->asoc.asconf_queue, next, aa_next) {
sys/netinet/sctp_asconf.c
2567
TAILQ_FOREACH(aa, &stcb->asoc.asconf_queue, next) {
sys/netinet/sctp_asconf.c
2623
TAILQ_FOREACH(aa, &stcb->asoc.asconf_queue, next) {
sys/netinet/sctp_asconf.c
3363
TAILQ_INSERT_TAIL(&stcb->asoc.asconf_queue, aa_vtag, next);
sys/netinet/sctp_asconf.c
3364
TAILQ_INSERT_TAIL(&stcb->asoc.asconf_queue, aa_add, next);
sys/netinet/sctp_asconf.c
3365
TAILQ_INSERT_TAIL(&stcb->asoc.asconf_queue, aa_del, next);
sys/netinet/sctp_asconf.c
655
TAILQ_FOREACH_SAFE(ack, &asoc->asconf_ack_sent, next, ack_next) {
sys/netinet/sctp_asconf.c
660
TAILQ_REMOVE(&asoc->asconf_ack_sent, ack, next);
sys/netinet/sctp_asconf.c
819
TAILQ_INSERT_TAIL(&stcb->asoc.asconf_ack_sent, ack, next);
sys/netinet/sctp_auth.c
1204
LIST_REMOVE(skey, next);
sys/netinet/sctp_auth.c
1236
LIST_REMOVE(skey, next);
sys/netinet/sctp_auth.c
1349
LIST_REMOVE(skey, next);
sys/netinet/sctp_auth.c
489
LIST_FOREACH(skey, shared_keys, next) {
sys/netinet/sctp_auth.c
507
LIST_INSERT_HEAD(shared_keys, new_skey, next);
sys/netinet/sctp_auth.c
511
LIST_FOREACH(skey, shared_keys, next) {
sys/netinet/sctp_auth.c
514
LIST_INSERT_BEFORE(skey, new_skey, next);
sys/netinet/sctp_auth.c
528
LIST_INSERT_BEFORE(skey, new_skey, next);
sys/netinet/sctp_auth.c
529
LIST_REMOVE(skey, next);
sys/netinet/sctp_auth.c
533
if (LIST_NEXT(skey, next) == NULL) {
sys/netinet/sctp_auth.c
535
LIST_INSERT_AFTER(skey, new_skey, next);
sys/netinet/sctp_auth.c
613
LIST_FOREACH(skey, src, next) {
sys/netinet/sctp_auth.h
61
LIST_ENTRY(sctp_shared_key) next;
sys/netinet/sctp_indata.c
2200
TAILQ_INSERT_TAIL(&asoc->pending_reply_queue, control, next);
sys/netinet/sctp_indata.c
2205
TAILQ_FOREACH_SAFE(lcontrol, &asoc->pending_reply_queue, next, nlcontrol) {
sys/netinet/sctp_indata.c
2210
TAILQ_INSERT_BEFORE(lcontrol, control, next);
sys/netinet/sctp_indata.c
2221
TAILQ_INSERT_TAIL(&asoc->pending_reply_queue, control, next);
sys/netinet/sctp_indata.c
2309
TAILQ_FOREACH_SAFE(control, &asoc->pending_reply_queue, next, ncontrol) {
sys/netinet/sctp_indata.c
2310
TAILQ_REMOVE(&asoc->pending_reply_queue, control, next);
sys/netinet/sctp_indata.c
2322
TAILQ_FOREACH_SAFE(control, &asoc->pending_reply_queue, next, ncontrol) {
sys/netinet/sctp_indata.c
2331
TAILQ_REMOVE(&asoc->pending_reply_queue, control, next);
sys/netinet/sctp_indata.c
5435
TAILQ_REMOVE(&stcb->sctp_ep->read_queue, control, next);
sys/netinet/sctp_indata.c
5679
TAILQ_FOREACH(control, &stcb->sctp_ep->read_queue, next) {
sys/netinet/sctp_input.c
1826
TAILQ_FOREACH_SAFE(sq, &asoc->pending_reply_queue, next, nsq) {
sys/netinet/sctp_input.c
1827
TAILQ_REMOVE(&asoc->pending_reply_queue, sq, next);
sys/netinet/sctp_input.c
1864
TAILQ_FOREACH_SAFE(aparam, &asoc->asconf_queue, next, naparam) {
sys/netinet/sctp_input.c
1865
TAILQ_REMOVE(&asoc->asconf_queue, aparam, next);
sys/netinet/sctp_input.c
1868
TAILQ_FOREACH_SAFE(aack, &asoc->asconf_ack_sent, next, naack) {
sys/netinet/sctp_input.c
1869
TAILQ_REMOVE(&asoc->asconf_ack_sent, aack, next);
sys/netinet/sctp_input.c
213
TAILQ_REMOVE(&stcb->asoc.strmout[i].outqueue, sp, next);
sys/netinet/sctp_input.c
300
TAILQ_FOREACH_SAFE(sp, &outs->outqueue, next, nsp) {
sys/netinet/sctp_input.c
302
TAILQ_REMOVE(&outs->outqueue, sp, next);
sys/netinet/sctp_input.c
487
TAILQ_FOREACH_SAFE(param, &asoc->asconf_queue, next, nparam) {
sys/netinet/sctp_input.c
488
TAILQ_REMOVE(&asoc->asconf_queue, param, next);
sys/netinet/sctp_output.c
12298
TAILQ_FOREACH_SAFE(sp, &oldstream[i].outqueue, next, nsp) {
sys/netinet/sctp_output.c
12299
TAILQ_REMOVE(&oldstream[i].outqueue, sp, next);
sys/netinet/sctp_output.c
12300
TAILQ_INSERT_TAIL(&stcb->asoc.strmout[i].outqueue, sp, next);
sys/netinet/sctp_output.c
13256
TAILQ_INSERT_TAIL(&strm->outqueue, sp, next);
sys/netinet/sctp_output.c
6485
TAILQ_INSERT_TAIL(&strm->outqueue, sp, next);
sys/netinet/sctp_output.c
7284
TAILQ_REMOVE(&strq->outqueue, sp, next);
sys/netinet/sctp_output.c
7671
TAILQ_REMOVE(&strq->outqueue, sp, next);
sys/netinet/sctp_output.c
7796
TAILQ_FOREACH(sp, &stcb->asoc.strmout[i].outqueue, next) {
sys/netinet/sctp_output.c
9411
TAILQ_FOREACH(ack, &stcb->asoc.asconf_ack_sent, next) {
sys/netinet/sctp_pcb.c
3491
TAILQ_FOREACH_SAFE(sq, &inp->read_queue, next, nsq) {
sys/netinet/sctp_pcb.c
3496
TAILQ_REMOVE(&inp->read_queue, sq, next);
sys/netinet/sctp_pcb.c
3532
LIST_FOREACH_SAFE(shared_key, &inp->sctp_ep.shared_keys, next, nshared_key) {
sys/netinet/sctp_pcb.c
3533
LIST_REMOVE(shared_key, next);
sys/netinet/sctp_pcb.c
4641
TAILQ_FOREACH(sq, &inp->read_queue, next) {
sys/netinet/sctp_pcb.c
4804
TAILQ_FOREACH_SAFE(sp, &outs->outqueue, next, nsp) {
sys/netinet/sctp_pcb.c
4806
TAILQ_REMOVE(&outs->outqueue, sp, next);
sys/netinet/sctp_pcb.c
4834
TAILQ_FOREACH_SAFE(sq, &asoc->pending_reply_queue, next, nsq) {
sys/netinet/sctp_pcb.c
4835
TAILQ_REMOVE(&asoc->pending_reply_queue, sq, next);
sys/netinet/sctp_pcb.c
4995
TAILQ_FOREACH_SAFE(aparam, &asoc->asconf_queue, next, naparam) {
sys/netinet/sctp_pcb.c
4997
TAILQ_REMOVE(&asoc->asconf_queue, aparam, next);
sys/netinet/sctp_pcb.c
5000
TAILQ_FOREACH_SAFE(aack, &asoc->asconf_ack_sent, next, naack) {
sys/netinet/sctp_pcb.c
5002
TAILQ_REMOVE(&asoc->asconf_ack_sent, aack, next);
sys/netinet/sctp_pcb.c
5021
LIST_FOREACH_SAFE(shared_key, &asoc->shared_keys, next, nshared_key) {
sys/netinet/sctp_pcb.c
5022
LIST_REMOVE(shared_key, next);
sys/netinet/sctp_pcb.c
5442
TAILQ_INSERT_TAIL(&wkq->que, qent, next);
sys/netinet/sctp_pcb.c
5485
TAILQ_REMOVE(&wkq->que, qent, next);
sys/netinet/sctp_pcb.c
6687
TAILQ_REMOVE(&stcb->sctp_ep->read_queue, control, next);
sys/netinet/sctp_pcb.c
6747
TAILQ_REMOVE(&stcb->sctp_ep->read_queue, control, next);
sys/netinet/sctp_ss_functions.c
790
sp = TAILQ_NEXT(sp, next);
sys/netinet/sctp_structs.h
110
TAILQ_ENTRY(sctp_mcore_queue) next;
sys/netinet/sctp_structs.h
489
TAILQ_ENTRY(sctp_queued_to_read) next;
sys/netinet/sctp_structs.h
532
TAILQ_ENTRY(sctp_stream_queue_pending) next;
sys/netinet/sctp_structs.h
655
TAILQ_ENTRY(sctp_asconf_addr) next;
sys/netinet/sctp_structs.h
759
TAILQ_ENTRY(sctp_asconf) next;
sys/netinet/sctp_structs.h
769
TAILQ_ENTRY(sctp_asconf_ack) next;
sys/netinet/sctp_timer.c
1373
TAILQ_FOREACH(sp, &stcb->asoc.strmout[i].outqueue, next) {
sys/netinet/sctp_usrreq.c
829
TAILQ_FOREACH_SAFE(control, &inp->read_queue, next, ncontrol) {
sys/netinet/sctp_usrreq.c
833
TAILQ_REMOVE(&inp->read_queue, control, next);
sys/netinet/sctputil.c
3710
TAILQ_INSERT_AFTER(&stcb->sctp_ep->read_queue, aborted_control, control, next);
sys/netinet/sctputil.c
4334
TAILQ_FOREACH_SAFE(sp, &outs->outqueue, next, nsp) {
sys/netinet/sctputil.c
4336
TAILQ_REMOVE(&outs->outqueue, sp, next);
sys/netinet/sctputil.c
4825
TAILQ_FOREACH_SAFE(control, &old_inp->read_queue, next, nctl) {
sys/netinet/sctputil.c
4829
TAILQ_REMOVE(&old_inp->read_queue, control, next);
sys/netinet/sctputil.c
4830
TAILQ_INSERT_TAIL(&tmp_queue, control, next);
sys/netinet/sctputil.c
4849
TAILQ_FOREACH_SAFE(control, &tmp_queue, next, nctl) {
sys/netinet/sctputil.c
4850
TAILQ_INSERT_TAIL(&new_inp->read_queue, control, next);
sys/netinet/sctputil.c
4972
TAILQ_INSERT_TAIL(&inp->read_queue, control, next);
sys/netinet/sctputil.c
5737
TAILQ_REMOVE(&inp->read_queue, control, next);
sys/netinet/sctputil.c
5758
TAILQ_REMOVE(&inp->read_queue, control, next);
sys/netinet/sctputil.c
5790
ctl = TAILQ_NEXT(control, next);
sys/netinet/sctputil.c
5824
ctl = TAILQ_NEXT(ctl, next);
sys/netinet/sctputil.c
5903
nxt = TAILQ_NEXT(control, next);
sys/netinet/sctputil.c
6105
(TAILQ_NEXT(control, next) == NULL)) {
sys/netinet/sctputil.c
6185
TAILQ_REMOVE(&inp->read_queue, control, next);
sys/netinet/sctputil.c
6345
(TAILQ_NEXT(control, next) == NULL)) {
sys/netinet/tcp_log_buf.c
1984
struct tcp_log_mem *log_entry, *next;
sys/netinet/tcp_log_buf.c
2019
while ((next = STAILQ_NEXT(log_entry, tlm_queue)) != NULL) {
sys/netinet/tcp_log_buf.c
2021
tcp_log_entry_refcnt_rem(next);
sys/netinet/tcp_log_buf.c
2022
tcp_log_remove_log_cleanup(tp, next);
sys/netinet/tcp_lro.c
1135
LIST_INSERT_HEAD(&lc->lro_free, le, next);
sys/netinet/tcp_lro.c
1402
LIST_REMOVE(le, next);
sys/netinet/tcp_lro.c
156
LIST_INSERT_HEAD(&lc->lro_active, le, next);
sys/netinet/tcp_lro.c
164
LIST_REMOVE(le, next); /* active list */
sys/netinet/tcp_lro.c
230
LIST_INSERT_HEAD(&lc->lro_free, le + i, next);
sys/netinet/tcp_lro.c
625
LIST_FOREACH_SAFE(le, &lc->lro_active, next, le_tmp) {
sys/netinet/tcp_lro.c
648
LIST_FOREACH_SAFE(le, &lc->lro_active, next, le_tmp) {
sys/netinet/tcp_lro.h
132
LIST_ENTRY(lro_entry) next;
sys/netinet/tcp_ratelimit.c
1129
CK_LIST_FOREACH(rs, &int_rs, next) {
sys/netinet/tcp_ratelimit.c
1283
CK_LIST_REMOVE(rs, next);
sys/netinet/tcp_ratelimit.c
1315
CK_LIST_FOREACH_SAFE(rs, &int_rs, next, nrs) {
sys/netinet/tcp_ratelimit.c
1316
CK_LIST_REMOVE(rs, next);
sys/netinet/tcp_ratelimit.c
578
CK_LIST_INSERT_HEAD(&int_rs, rs, next);
sys/netinet/tcp_ratelimit.c
598
CK_LIST_INSERT_HEAD(&int_rs, rs, next);
sys/netinet/tcp_ratelimit.c
763
CK_LIST_INSERT_HEAD(&int_rs, rs, next);
sys/netinet/tcp_ratelimit.h
69
CK_LIST_ENTRY(tcp_rate_set) next;
sys/netinet/tcp_stacks/rack.c
14943
TAILQ_REMOVE(&rack->r_ctl.opt_list, dol, next);
sys/netinet/tcp_stacks/rack.c
22698
TAILQ_INSERT_TAIL(&rack->r_ctl.opt_list, dol, next);
sys/netinet/tcp_stacks/rack.c
23960
TAILQ_FOREACH_SAFE(dol, &rack->r_ctl.opt_list, next, sdol) {
sys/netinet/tcp_stacks/rack.c
23961
TAILQ_REMOVE(&rack->r_ctl.opt_list, dol, next);
sys/netinet/tcp_stacks/rack.c
2659
struct rack_sendmap *next,
sys/netinet/tcp_stacks/rack.c
2671
log.u_bbr.rttProp = (uintptr_t)next;
sys/netinet/tcp_stacks/rack.c
2685
if (next) {
sys/netinet/tcp_stacks/rack.c
2686
log.u_bbr.flex5 = next->r_start;
sys/netinet/tcp_stacks/rack.c
2687
log.u_bbr.flex6 = next->r_end;
sys/netinet/tcp_stacks/rack.c
9227
struct rack_sendmap *rsm, *nrsm, *prev, *next;
sys/netinet/tcp_stacks/rack.c
9317
next = tqhash_next(rack->r_ctl.tqh, rsm);
sys/netinet/tcp_stacks/rack.c
9318
if (next &&
sys/netinet/tcp_stacks/rack.c
9319
(rsm->bindex == next->bindex) &&
sys/netinet/tcp_stacks/rack.c
9321
((next->r_flags & RACK_STRADDLE) == 0) &&
sys/netinet/tcp_stacks/rack.c
9323
((next->r_flags & RACK_WAS_SACKPASS) == 0) &&
sys/netinet/tcp_stacks/rack.c
9325
((next->r_flags & RACK_IS_PCM) == 0) &&
sys/netinet/tcp_stacks/rack.c
9327
(next->r_flags & RACK_IN_GP_WIN))
sys/netinet/tcp_stacks/rack.c
9331
if (next && can_use_hookery &&
sys/netinet/tcp_stacks/rack.c
9332
(next->r_flags & RACK_ACKED) &&
sys/netinet/tcp_stacks/rack.c
9333
SEQ_GEQ(end, next->r_start)) {
sys/netinet/tcp_stacks/rack.c
9355
next->r_start = start;
sys/netinet/tcp_stacks/rack.c
9357
next->r_flags |= RACK_SHUFFLED;
sys/netinet/tcp_stacks/rack.c
9359
rack_setup_offset_for_rsm(rack, rsm, next);
sys/netinet/tcp_stacks/rack.c
9378
if (next->r_tim_lastsent[(next->r_rtr_cnt-1)] <
sys/netinet/tcp_stacks/rack.c
9380
next->r_tim_lastsent[(next->r_rtr_cnt-1)] = nrsm->r_tim_lastsent[(nrsm->r_rtr_cnt-1)];
sys/netinet/tcp_stacks/rack.c
9384
if (next->r_ack_arrival <
sys/netinet/tcp_stacks/rack.c
9386
next->r_ack_arrival = rack_to_usec_ts(&rack->r_ctl.act_rcv_time);
sys/netinet/tcp_stacks/rack.c
9445
if (SEQ_LT(end, next->r_end) ||
sys/netinet/tcp_stacks/rack.c
9446
(end == next->r_end)) {
sys/netinet/tcp_stacks/rack.c
9450
rack_log_map_chg(tp, rack, &stack_map, rsm, next, MAP_SACK_M1, end, __LINE__);
sys/netinet/tcp_stacks/rack.c
9452
start = next->r_end;
sys/netinet/tcp_stacks/rack.c
9453
rsm = tqhash_next(rack->r_ctl.tqh, next);
sys/netinet/tcp_stacks/rack.c
9912
next = tqhash_next(rack->r_ctl.tqh, rsm);
sys/netinet/tcp_stacks/rack.c
9913
while (next) {
sys/netinet/tcp_stacks/rack.c
9914
if (next->r_flags & RACK_TLP)
sys/netinet/tcp_stacks/rack.c
9917
if ((next->r_flags & RACK_IN_GP_WIN) &&
sys/netinet/tcp_stacks/rack.c
9923
(next->r_flags & RACK_WAS_SACKPASS))
sys/netinet/tcp_stacks/rack.c
9926
((next->r_flags & RACK_IN_GP_WIN) == 0)) {
sys/netinet/tcp_stacks/rack.c
9929
if (rsm->bindex != next->bindex)
sys/netinet/tcp_stacks/rack.c
9935
if (next->r_flags & RACK_STRADDLE)
sys/netinet/tcp_stacks/rack.c
9937
if (next->r_flags & RACK_IS_PCM)
sys/netinet/tcp_stacks/rack.c
9939
if (next->r_flags & RACK_ACKED) {
sys/netinet/tcp_stacks/rack.c
9941
rsm = rack_merge_rsm(rack, rsm, next);
sys/netinet/tcp_stacks/rack.c
9942
next = tqhash_next(rack->r_ctl.tqh, rsm);
sys/netinet/tcp_stacks/tailq_hash.c
147
TAILQ_FOREACH(e, &hs->ht[bindex], next) {
sys/netinet/tcp_stacks/tailq_hash.c
174
TAILQ_FOREACH_REVERSE(e, &hs->ht[pbucket], rack_head, next) {
sys/netinet/tcp_stacks/tailq_hash.c
191
e = TAILQ_NEXT(rsm, next);
sys/netinet/tcp_stacks/tailq_hash.c
209
e = TAILQ_PREV(rsm, rack_head, next);
sys/netinet/tcp_stacks/tailq_hash.c
237
TAILQ_REMOVE(&hs->ht[rsm->bindex], rsm, next);
sys/netinet/tcp_stacks/tailq_hash.c
287
TAILQ_INSERT_TAIL(&hs->ht[rsm->bindex], rsm, next);
sys/netinet/tcp_stacks/tailq_hash.c
290
TAILQ_FOREACH(e, &hs->ht[rsm->bindex], next) {
sys/netinet/tcp_stacks/tailq_hash.c
293
TAILQ_INSERT_BEFORE(e, rsm, next);
sys/netinet/tcp_stacks/tailq_hash.c
298
TAILQ_INSERT_TAIL(&hs->ht[rsm->bindex], rsm, next);
sys/netinet/tcp_stacks/tcp_rack.h
60
TAILQ_ENTRY(rack_sendmap) next;
sys/netinet/tcp_stacks/tcp_rack.h
89
TAILQ_ENTRY(deferred_opt_list) next;
sys/netinet6/in6_ifattach.c
857
struct ifaddr *ifa, *next;
sys/netinet6/in6_ifattach.c
866
CK_STAILQ_FOREACH_SAFE(ifa, &ifp->if_addrhead, ifa_link, next) {
sys/netinet6/in6_src.c
1127
goto next; /* not match */
sys/netinet6/in6_src.c
1145
next:
sys/netinet6/in6_src.c
166
goto next; /* XXX: we can't use 'continue' here */ \
sys/netinet6/in6_src.c
482
next:
sys/netinet6/ip6_mroute.c
1358
for (p = &rt->mf6c_stall; *p != NULL; p = &(*p)->next)
sys/netinet6/ip6_mroute.c
1371
rte->next = NULL;
sys/netinet6/ip6_mroute.c
1421
struct rtdetq *n = rte->next;
sys/netinet6/ip6_mroute.c
676
struct rtdetq *n = rte->next;
sys/netinet6/ip6_mroute.c
803
mfc->mf6c_stall = rte->next;
sys/netinet6/ip6_mroute.c
958
struct rtdetq *n = rte->next;
sys/netinet6/ip6_mroute.h
264
struct rtdetq *next;
sys/netinet6/ip_fw_nat64.h
207
} next; /* next state index */
sys/netinet6/nd6.c
1811
struct nd_prefix *pr, *next;
sys/netinet6/nd6.c
1817
LIST_FOREACH_SAFE(pr, &V_nd_prefix, ndpr_entry, next) {
sys/netinet6/nd6.c
350
struct ifaddr *ifa, *next;
sys/netinet6/nd6.c
353
CK_STAILQ_FOREACH_SAFE(ifa, &ifp->if_addrhead, ifa_link, next) {
sys/netinet6/nd6_rtr.c
1478
struct nd_pfxrouter *pfr, *next;
sys/netinet6/nd6_rtr.c
1506
LIST_FOREACH_SAFE(pfr, &pr->ndpr_advrtrs, pfr_entry, next)
sys/netipsec/ipsec_output.c
125
next:
sys/netipsec/ipsec_output.c
176
goto next;
sys/netipsec/ipsec_output.c
551
next:
sys/netipsec/ipsec_output.c
615
goto next;
sys/netlink/netlink_domain.c
667
struct nl_buf *first, *last, *nb, *next;
sys/netlink/netlink_domain.c
801
for (nb = first; nb != last; nb = next) {
sys/netlink/netlink_domain.c
802
next = TAILQ_NEXT(nb, tailq);
sys/netlink/netlink_snl.h
227
lb->next = ss->lb;
sys/netlink/netlink_snl.h
242
lb = lb->next;
sys/netlink/netlink_snl.h
243
ss->lb->next = NULL;
sys/netlink/netlink_snl.h
246
struct linear_buffer *lb_next = lb->next;
sys/netlink/netlink_snl.h
88
struct linear_buffer *next; /* Buffer chaining */
sys/netlink/route/iface.c
1511
SLIST_INSERT_HEAD(&nl_cloners, cloner, next);
sys/netlink/route/iface.c
1519
SLIST_REMOVE(&nl_cloners, cloner, nl_cloner, next);
sys/netlink/route/route_var.h
119
SLIST_ENTRY(nl_cloner) next;
sys/netpfil/ipfilter/netinet/fil.c
6843
ipf_tune_findbycookie(ipftuneable_t **ptop, void *cookie, void **next)
sys/netpfil/ipfilter/netinet/fil.c
6849
if (next != NULL) {
sys/netpfil/ipfilter/netinet/fil.c
6859
*next = ta + 1;
sys/netpfil/ipfilter/netinet/fil.c
6861
*next = ptop;
sys/netpfil/ipfilter/netinet/fil.c
6868
if (next != NULL)
sys/netpfil/ipfilter/netinet/fil.c
6869
*next = &ta->ipft_next;
sys/netpfil/ipfilter/netinet/fil.c
6873
if (next != NULL)
sys/netpfil/ipfilter/netinet/fil.c
6874
*next = NULL;
sys/netpfil/ipfilter/netinet/fil.c
7457
ipftoken_t *it, *next;
sys/netpfil/ipfilter/netinet/fil.c
7460
for (it = softc->ipf_token_head; it != NULL; it = next) {
sys/netpfil/ipfilter/netinet/fil.c
7461
next = it->ipt_next;
sys/netpfil/ipfilter/netinet/fil.c
7697
frentry_t *next;
sys/netpfil/ipfilter/netinet/fil.c
7710
next = fg->fg_start;
sys/netpfil/ipfilter/netinet/fil.c
7711
while (next != NULL) {
sys/netpfil/ipfilter/netinet/fil.c
7713
if (next->fr_flags & FR_OUTQUE)
sys/netpfil/ipfilter/netinet/fil.c
7714
return (next);
sys/netpfil/ipfilter/netinet/fil.c
7715
} else if (next->fr_flags & FR_INQUE) {
sys/netpfil/ipfilter/netinet/fil.c
7716
return (next);
sys/netpfil/ipfilter/netinet/fil.c
7718
next = next->fr_next;
sys/netpfil/ipfilter/netinet/fil.c
7720
if (next == NULL)
sys/netpfil/ipfilter/netinet/fil.c
7745
frentry_t *fr, *next, zero;
sys/netpfil/ipfilter/netinet/fil.c
7795
next = softc->ipf_acct[out][it.iri_active];
sys/netpfil/ipfilter/netinet/fil.c
7797
next = softc->ipf_rules[out][it.iri_active];
sys/netpfil/ipfilter/netinet/fil.c
7799
if (next == NULL)
sys/netpfil/ipfilter/netinet/fil.c
7800
next = ipf_nextrule(softc, it.iri_active,
sys/netpfil/ipfilter/netinet/fil.c
7806
next = fg->fg_start;
sys/netpfil/ipfilter/netinet/fil.c
7808
next = NULL;
sys/netpfil/ipfilter/netinet/fil.c
7811
next = fr->fr_next;
sys/netpfil/ipfilter/netinet/fil.c
7812
if (next == NULL)
sys/netpfil/ipfilter/netinet/fil.c
7813
next = ipf_nextrule(softc, it.iri_active, unit,
sys/netpfil/ipfilter/netinet/fil.c
7817
if (next != NULL && next->fr_next != NULL)
sys/netpfil/ipfilter/netinet/fil.c
7819
else if (ipf_nextrule(softc, it.iri_active, unit, next, out) != NULL)
sys/netpfil/ipfilter/netinet/fil.c
7830
if (next != NULL) {
sys/netpfil/ipfilter/netinet/fil.c
7831
obj.ipfo_size = next->fr_size;
sys/netpfil/ipfilter/netinet/fil.c
7832
MUTEX_ENTER(&next->fr_lock);
sys/netpfil/ipfilter/netinet/fil.c
7833
next->fr_ref++;
sys/netpfil/ipfilter/netinet/fil.c
7834
MUTEX_EXIT(&next->fr_lock);
sys/netpfil/ipfilter/netinet/fil.c
7835
t->ipt_data = next;
sys/netpfil/ipfilter/netinet/fil.c
7839
next = &zero;
sys/netpfil/ipfilter/netinet/fil.c
7842
it.iri_rule = predict ? next : NULL;
sys/netpfil/ipfilter/netinet/fil.c
7849
error = ipf_outobjk(softc, &obj, next);
sys/netpfil/ipfilter/netinet/fil.c
7852
if (next->fr_data != NULL) {
sys/netpfil/ipfilter/netinet/fil.c
7855
if (next->fr_type == FR_T_IPFEXPR)
sys/netpfil/ipfilter/netinet/fil.c
7859
dobj.ipfo_size = next->fr_dsize;
sys/netpfil/ipfilter/netinet/fil.c
7862
error = ipf_outobjk(softc, &dobj, next->fr_data);
sys/netpfil/ipfilter/netinet/fil.c
7866
if ((fr != NULL) && (next == &zero))
sys/netpfil/ipfilter/netinet/ip_auth.c
857
frauthent_t *fae, *next, zero;
sys/netpfil/ipfilter/netinet/ip_auth.c
878
next = softa->ipf_auth_entries;
sys/netpfil/ipfilter/netinet/ip_auth.c
880
next = fae->fae_next;
sys/netpfil/ipfilter/netinet/ip_auth.c
887
if (next != NULL) {
sys/netpfil/ipfilter/netinet/ip_auth.c
888
ATOMIC_INC(next->fae_ref);
sys/netpfil/ipfilter/netinet/ip_auth.c
889
token->ipt_data = next;
sys/netpfil/ipfilter/netinet/ip_auth.c
892
next = &zero;
sys/netpfil/ipfilter/netinet/ip_auth.c
898
error = ipf_outobjk(softc, objp, next);
sys/netpfil/ipfilter/netinet/ip_auth.c
902
if (next->fae_next == NULL)
sys/netpfil/ipfilter/netinet/ip_dstlist.c
258
ippool_dst_t *node, *next;
sys/netpfil/ipfilter/netinet/ip_dstlist.c
264
for (node = softd->dstlist[i + 1]; node != NULL; node = next) {
sys/netpfil/ipfilter/netinet/ip_dstlist.c
265
next = node->ipld_next;
sys/netpfil/ipfilter/netinet/ip_dstlist.c
339
ippool_dst_t zero, *next = NULL, *dsttab = NULL;
sys/netpfil/ipfilter/netinet/ip_dstlist.c
349
next = softd->dstlist[(int)iter->ili_unit + 1];
sys/netpfil/ipfilter/netinet/ip_dstlist.c
351
next = dsttab->ipld_next;
sys/netpfil/ipfilter/netinet/ip_dstlist.c
354
if (next != NULL) {
sys/netpfil/ipfilter/netinet/ip_dstlist.c
355
ATOMIC_INC32(next->ipld_ref);
sys/netpfil/ipfilter/netinet/ip_dstlist.c
356
token->ipt_data = next;
sys/netpfil/ipfilter/netinet/ip_dstlist.c
357
hint = next->ipld_next;
sys/netpfil/ipfilter/netinet/ip_dstlist.c
360
next = &zero;
sys/netpfil/ipfilter/netinet/ip_dstlist.c
413
err = COPYOUT(next, iter->ili_data, sizeof(*next));
sys/netpfil/ipfilter/netinet/ip_frag.c
1165
ipfr_t *frag, *next, zero;
sys/netpfil/ipfilter/netinet/ip_frag.c
1183
next = *top;
sys/netpfil/ipfilter/netinet/ip_frag.c
1185
next = frag->ipfr_next;
sys/netpfil/ipfilter/netinet/ip_frag.c
1187
if (next != NULL) {
sys/netpfil/ipfilter/netinet/ip_frag.c
1188
ATOMIC_INC(next->ipfr_ref);
sys/netpfil/ipfilter/netinet/ip_frag.c
1189
token->ipt_data = next;
sys/netpfil/ipfilter/netinet/ip_frag.c
1192
next = &zero;
sys/netpfil/ipfilter/netinet/ip_frag.c
1195
if (next->ipfr_next == NULL)
sys/netpfil/ipfilter/netinet/ip_frag.c
1200
error = COPYOUT(next, itp->igi_data, sizeof(*next));
sys/netpfil/ipfilter/netinet/ip_nat.c
2533
nat_t *next;
sys/netpfil/ipfilter/netinet/ip_nat.c
2536
for (next = softn->ipf_nat_instances; (nat = next) != NULL;) {
sys/netpfil/ipfilter/netinet/ip_nat.c
2537
next = nat->nat_next;
sys/netpfil/ipfilter/netinet/ip_pool.c
1135
ip_pool_node_t *n, **next;
sys/netpfil/ipfilter/netinet/ip_pool.c
1137
for (next = &ipo->ipo_list; (n = *next) != NULL; )
sys/netpfil/ipfilter/netinet/ip_state.c
4730
ipstate_t *is, *next, zero;
sys/netpfil/ipfilter/netinet/ip_state.c
4762
next = softs->ipf_state_list;
sys/netpfil/ipfilter/netinet/ip_state.c
4764
next = is->is_next;
sys/netpfil/ipfilter/netinet/ip_state.c
4771
if (next != NULL) {
sys/netpfil/ipfilter/netinet/ip_state.c
4772
MUTEX_ENTER(&next->is_lock);
sys/netpfil/ipfilter/netinet/ip_state.c
4773
next->is_ref++;
sys/netpfil/ipfilter/netinet/ip_state.c
4774
MUTEX_EXIT(&next->is_lock);
sys/netpfil/ipfilter/netinet/ip_state.c
4775
token->ipt_data = next;
sys/netpfil/ipfilter/netinet/ip_state.c
4778
next = &zero;
sys/netpfil/ipfilter/netinet/ip_state.c
4781
if (next->is_next == NULL)
sys/netpfil/ipfilter/netinet/ip_state.c
4787
error = ipf_outobjk(softc, obj, next);
sys/netpfil/ipfilter/netinet/ipf_rb.h
306
_t *next; \
sys/netpfil/ipfilter/netinet/ipf_rb.h
324
next = prev; \
sys/netpfil/ipfilter/netinet/ipf_rb.h
329
node = next; \
sys/netpfil/ipfilter/netinet/radix_ipf.c
1277
for (stp = myst_top; stp; stp = stp->next)
sys/netpfil/ipfilter/netinet/radix_ipf.c
1341
for (stp = myst_top; stp != NULL; stp = stp->next)
sys/netpfil/ipfilter/netinet/radix_ipf.c
1350
for (pstp = &myst_top; (stp = *pstp) != NULL; pstp = &stp->next)
sys/netpfil/ipfilter/netinet/radix_ipf.c
1356
*pstp = stp->next;
sys/netpfil/ipfilter/netinet/radix_ipf.c
1374
stp->next = myst_top;
sys/netpfil/ipfilter/netinet/radix_ipf.c
1398
for (s1 = myst_top; s1 != NULL; s1 = s1->next) {
sys/netpfil/ipfilter/netinet/radix_ipf.c
218
for (; masknode != NULL; masknode = masknode->next) {
sys/netpfil/ipfilter/netinet/radix_ipf.c
298
for (pm = &node->masks; (m = *pm) != NULL; pm = &m->next)
sys/netpfil/ipfilter/netinet/radix_ipf.c
301
mask->next = *pm;
sys/netpfil/ipfilter/netinet/radix_ipf.c
423
mask->next = NULL;
sys/netpfil/ipfilter/netinet/radix_ipf.c
433
pmask = &m->next) {
sys/netpfil/ipfilter/netinet/radix_ipf.c
443
mask->next = *pmask;
sys/netpfil/ipfilter/netinet/radix_ipf.c
454
*pmask = mask->next;
sys/netpfil/ipfilter/netinet/radix_ipf.c
457
pmask = &mask->next;
sys/netpfil/ipfilter/netinet/radix_ipf.c
465
*pmask = mask->next;
sys/netpfil/ipfilter/netinet/radix_ipf.c
468
pmask = &mask->next;
sys/netpfil/ipfilter/netinet/radix_ipf.c
705
*pm = m->next;
sys/netpfil/ipfilter/netinet/radix_ipf.c
708
pm = &m->next;
sys/netpfil/ipfilter/netinet/radix_ipf.c
718
*pmask = m->next;
sys/netpfil/ipfilter/netinet/radix_ipf.c
750
ipf_rdx_node_t *next;
sys/netpfil/ipfilter/netinet/radix_ipf.c
764
next = node;
sys/netpfil/ipfilter/netinet/radix_ipf.c
771
node = next;
sys/netpfil/ipfilter/netinet/radix_ipf.c
923
struct myst *next;
sys/netpfil/ipfilter/netinet/radix_ipf.h
15
struct ipf_rdx_mask *next;
sys/netpfil/ipfw/dn_aqm.h
110
CK_LIST_ENTRY(dn_aqm) next; /* Next AQM in the list */
sys/netpfil/ipfw/dn_aqm_codel.c
195
next: m = q->mq.head;
sys/netpfil/ipfw/dn_aqm_codel.c
218
goto next;
sys/netpfil/ipfw/dn_aqm_pie.c
331
next: m = q->mq.head;
sys/netpfil/ipfw/dn_aqm_pie.c
356
goto next;
sys/netpfil/ipfw/dn_heap.c
497
void **curp, *cur, *next;
sys/netpfil/ipfw/dn_heap.c
504
next = *(void **)((char *)cur + ht->ofs);
sys/netpfil/ipfw/dn_heap.c
509
*curp = next;
sys/netpfil/ipfw/dn_heap.c
533
void **curp, *cur, *next;
sys/netpfil/ipfw/dn_heap.c
543
next = *(void **)((char *)cur + ht->ofs);
sys/netpfil/ipfw/dn_heap.c
548
*curp = next;
sys/netpfil/ipfw/dn_sched.h
144
CK_LIST_ENTRY(dn_alg) next; /* Next scheduler in the list */
sys/netpfil/ipfw/dn_sched.h
173
next:
sys/netpfil/ipfw/dn_sched.h
197
goto next;
sys/netpfil/ipfw/dn_sched_fq_codel.h
141
next: m = q->mq.head;
sys/netpfil/ipfw/dn_sched_fq_codel.h
164
goto next;
sys/netpfil/ipfw/dn_sched_fq_pie.c
341
next: m = q->mq.head;
sys/netpfil/ipfw/dn_sched_fq_pie.c
366
goto next;
sys/netpfil/ipfw/dn_sched_qfq.c
209
struct qfq_class *next; /* Link for the slot list. */
sys/netpfil/ipfw/dn_sched_qfq.c
364
struct qfq_group *next;
sys/netpfil/ipfw/dn_sched_qfq.c
367
next = qfq_ffs(q, mask);
sys/netpfil/ipfw/dn_sched_qfq.c
368
if (qfq_gt(grp->F, next->F))
sys/netpfil/ipfw/dn_sched_qfq.c
392
struct qfq_group *next;
sys/netpfil/ipfw/dn_sched_qfq.c
395
next = qfq_ffs(q, mask);
sys/netpfil/ipfw/dn_sched_qfq.c
396
if (!qfq_gt(next->F, old_finish))
sys/netpfil/ipfw/dn_sched_qfq.c
442
cl->next = grp->slots[i];
sys/netpfil/ipfw/dn_sched_qfq.c
455
*h = (*h)->next;
sys/netpfil/ipfw/dn_sched_qfq.c
636
struct qfq_group *next = qfq_ffs(q, mask);
sys/netpfil/ipfw/dn_sched_qfq.c
637
if (qfq_gt(roundedF, next->F)) {
sys/netpfil/ipfw/dn_sched_qfq.c
639
if (qfq_gt(limit, next->F))
sys/netpfil/ipfw/dn_sched_qfq.c
640
cl->S = next->F;
sys/netpfil/ipfw/dn_sched_qfq.c
727
pprev = &(*pprev)->next;
sys/netpfil/ipfw/dn_sched_qfq.c
731
*pprev = cl->next;
sys/netpfil/ipfw/ip_dummynet.c
142
CK_LIST_FOREACH(d, &aqmlist, next) {
sys/netpfil/ipfw/ip_dummynet.c
158
CK_LIST_FOREACH(d, &schedlist, next) {
sys/netpfil/ipfw/ip_dummynet.c
1787
goto next;
sys/netpfil/ipfw/ip_dummynet.c
1889
next:
sys/netpfil/ipfw/ip_dummynet.c
2653
CK_LIST_FOREACH(s, &schedlist, next) {
sys/netpfil/ipfw/ip_dummynet.c
2660
CK_LIST_INSERT_HEAD(&schedlist, d, next);
sys/netpfil/ipfw/ip_dummynet.c
2675
CK_LIST_FOREACH_SAFE(r, &schedlist, next, tmp) {
sys/netpfil/ipfw/ip_dummynet.c
2681
CK_LIST_REMOVE(r, next);
sys/netpfil/ipfw/ip_dummynet.c
2747
CK_LIST_FOREACH(aqm, &aqmlist, next) {
sys/netpfil/ipfw/ip_dummynet.c
2754
CK_LIST_INSERT_HEAD(&aqmlist, d, next);
sys/netpfil/ipfw/ip_dummynet.c
2791
CK_LIST_FOREACH_SAFE(r, &aqmlist, next, tmp) {
sys/netpfil/ipfw/ip_dummynet.c
2797
CK_LIST_REMOVE(r, next);
sys/netpfil/ipfw/ip_fw_compat.c
76
ipfw_dyn_rule *next; /* linked list of rules. */
sys/netpfil/ipfw/ip_fw_dynamic.c
2116
#define DYN_FREE_STATES(s, next, name) do { \
sys/netpfil/ipfw/ip_fw_dynamic.c
2119
next = SLIST_NEXT(s, expired); \
sys/netpfil/ipfw/ip_fw_dynamic.c
2126
s = next; \
sys/netpfil/ipfw/ip_fw_dynamic.c
2137
s = next; \
sys/netpfil/ipfw/ip_fw_dynamic.c
2320
#define DYN_UNLINK_STATES(s, prev, next, exp, af, name, extra) do { \
sys/netpfil/ipfw/ip_fw_dynamic.c
2326
next = CK_SLIST_NEXT(s, entry); \
sys/netpfil/ipfw/ip_fw_dynamic.c
2358
s = next; \
sys/netpfil/ipfw/ip_fw_iface.c
381
TAILQ_INSERT_TAIL(&iif->consumers, ic, next);
sys/netpfil/ipfw/ip_fw_iface.c
398
TAILQ_REMOVE(&iif->consumers, ic, next);
sys/netpfil/ipfw/ip_fw_iface.c
435
TAILQ_FOREACH(ic, &iif->consumers, next)
sys/netpfil/ipfw/ip_fw_iface.c
452
TAILQ_FOREACH(ic, &iif->consumers, next)
sys/netpfil/ipfw/ip_fw_private.h
299
struct ip_fw *next; /* linked list of deleted rules */
sys/netpfil/ipfw/ip_fw_private.h
397
TAILQ_ENTRY(ipfw_ifc) next;
sys/netpfil/ipfw/ip_fw_sockopt.c
558
rule->next = *head;
sys/netpfil/ipfw/ip_fw_sockopt.c
573
head = head->next;
sys/netpfil/ipfw/ip_fw_table_algo.c
1078
SLIST_FOREACH(ent, &head[hash], next) {
sys/netpfil/ipfw/ip_fw_table_algo.c
1093
SLIST_FOREACH(ent, &head[hash], next) {
sys/netpfil/ipfw/ip_fw_table_algo.c
1123
SLIST_FOREACH(ent, &head[hash], next) {
sys/netpfil/ipfw/ip_fw_table_algo.c
1141
SLIST_FOREACH(ent, &head[hash], next) {
sys/netpfil/ipfw/ip_fw_table_algo.c
1172
SLIST_FOREACH(ent, &head[hash], next) {
sys/netpfil/ipfw/ip_fw_table_algo.c
1188
SLIST_FOREACH(ent, &head[hash], next) {
sys/netpfil/ipfw/ip_fw_table_algo.c
1342
SLIST_FOREACH_SAFE(ent, &cfg->head4[i], next, ent_next)
sys/netpfil/ipfw/ip_fw_table_algo.c
1346
SLIST_FOREACH_SAFE(ent, &cfg->head6[i], next, ent_next)
sys/netpfil/ipfw/ip_fw_table_algo.c
1488
SLIST_FOREACH(tmp, &head[hash], next) {
sys/netpfil/ipfw/ip_fw_table_algo.c
1506
SLIST_FOREACH(tmp, &head[hash], next) {
sys/netpfil/ipfw/ip_fw_table_algo.c
1528
SLIST_FOREACH_SAFE(ent, &cfg->head4[i], next, ent_next)
sys/netpfil/ipfw/ip_fw_table_algo.c
1532
SLIST_FOREACH_SAFE(ent, &cfg->head6[i], next, ent_next)
sys/netpfil/ipfw/ip_fw_table_algo.c
1586
SLIST_FOREACH(tmp, &head[hash], next) {
sys/netpfil/ipfw/ip_fw_table_algo.c
1598
SLIST_FOREACH(tmp, &head[hash], next) {
sys/netpfil/ipfw/ip_fw_table_algo.c
1619
SLIST_INSERT_HEAD(&head[hash], ent, next);
sys/netpfil/ipfw/ip_fw_table_algo.c
1664
SLIST_FOREACH_SAFE(tmp, &head[hash], next, tmp_next) {
sys/netpfil/ipfw/ip_fw_table_algo.c
1668
SLIST_REMOVE(&head[hash], tmp, chashentry, next);
sys/netpfil/ipfw/ip_fw_table_algo.c
1680
SLIST_FOREACH_SAFE(tmp, &head[hash], next, tmp_next) {
sys/netpfil/ipfw/ip_fw_table_algo.c
1684
SLIST_REMOVE(&head[hash], tmp, chashentry, next);
sys/netpfil/ipfw/ip_fw_table_algo.c
1815
SLIST_FOREACH_SAFE(ent, &old_head[i], next, ent_next) {
sys/netpfil/ipfw/ip_fw_table_algo.c
1817
SLIST_INSERT_HEAD(&new_head[nhash], ent, next);
sys/netpfil/ipfw/ip_fw_table_algo.c
1836
SLIST_FOREACH_SAFE(ent, &old_head[i], next, ent_next) {
sys/netpfil/ipfw/ip_fw_table_algo.c
1838
SLIST_INSERT_HEAD(&new_head[nhash], ent, next);
sys/netpfil/ipfw/ip_fw_table_algo.c
3067
SLIST_ENTRY(fhashentry) next;
sys/netpfil/ipfw/ip_fw_table_algo.c
3145
ka = (uint64_t *)(&a->next + 1);
sys/netpfil/ipfw/ip_fw_table_algo.c
3146
kb = (uint64_t *)(&b->next + 1);
sys/netpfil/ipfw/ip_fw_table_algo.c
3219
SLIST_FOREACH(ent, &head[hash], next) {
sys/netpfil/ipfw/ip_fw_table_algo.c
3244
SLIST_FOREACH(ent, &head[hash], next) {
sys/netpfil/ipfw/ip_fw_table_algo.c
3322
SLIST_FOREACH_SAFE(ent, &cfg->head[i], next, ent_next)
sys/netpfil/ipfw/ip_fw_table_algo.c
3458
SLIST_FOREACH(tmp, &head[hash], next) {
sys/netpfil/ipfw/ip_fw_table_algo.c
3479
SLIST_FOREACH_SAFE(ent, &cfg->head[i], next, ent_next)
sys/netpfil/ipfw/ip_fw_table_algo.c
3542
SLIST_FOREACH(tmp, &head[hash], next) {
sys/netpfil/ipfw/ip_fw_table_algo.c
3564
SLIST_INSERT_HEAD(&head[hash], ent, next);
sys/netpfil/ipfw/ip_fw_table_algo.c
3610
SLIST_FOREACH(tmp, &head[hash], next) {
sys/netpfil/ipfw/ip_fw_table_algo.c
3614
SLIST_REMOVE(&head[hash], tmp, fhashentry, next);
sys/netpfil/ipfw/ip_fw_table_algo.c
3716
SLIST_FOREACH_SAFE(ent, &old_head[i], next, ent_next) {
sys/netpfil/ipfw/ip_fw_table_algo.c
3718
SLIST_INSERT_HEAD(&new_head[nhash], ent, next);
sys/netpfil/ipfw/ip_fw_table_algo.c
936
SLIST_ENTRY(chashentry) next;
sys/netpfil/ipfw/nat64/nat64lsn_control.c
748
stg->next.index = idx.index;
sys/netpfil/ipfw/nat64/nat64lsn_control.c
791
stg->next.index = idx.index;
sys/netpfil/ipfw/nat64/nat64lsn_control.c
798
stg->next.index = idx.index;
sys/netpfil/ipfw/test/main.c
263
getnum(const char *s, char **next, const char *key)
sys/netpfil/ipfw/test/main.c
268
if (next) /* default */
sys/netpfil/ipfw/test/main.c
269
*next = NULL;
sys/netpfil/ipfw/test/main.c
296
D("suffix %s for %s, next %p", end, key, next);
sys/netpfil/ipfw/test/main.c
300
DX(3, "suffix now %s for %s, next %p", end, key, next);
sys/netpfil/ipfw/test/main.c
301
if (next && *end) {
sys/netpfil/ipfw/test/main.c
303
*next = end;
sys/netpfil/ipfw/test/main.c
319
char *s, *cur, *next;
sys/netpfil/ipfw/test/main.c
338
for (next = s; (cur = strsep(&next, ","));) {
sys/netpfil/ipfw/test/main.c
679
ND(1, "backlog %d p %p prev %p next %p", i, h, h->prev, h->next);
sys/netpfil/ipfw/test/main.c
688
ND(1, "before %d p %p prev %p next %p", i+1, h+1, h[1].prev, h[1].next);
sys/netpfil/ipfw/test/main.c
690
ND(1, " after %d p %p prev %p next %p", i+1, h+1, h[1].prev, h[1].next);
sys/netpfil/ipfw/test/mylist.h
10
struct list_head *prev, *next;
sys/netpfil/ipfw/test/mylist.h
13
#define INIT_LIST_HEAD(l) do { (l)->prev = (l)->next = (l); } while (0)
sys/netpfil/ipfw/test/mylist.h
14
#define list_empty(l) ( (l)->next == l )
sys/netpfil/ipfw/test/mylist.h
17
struct list_head *next)
sys/netpfil/ipfw/test/mylist.h
19
next->prev = o;
sys/netpfil/ipfw/test/mylist.h
20
o->next = next;
sys/netpfil/ipfw/test/mylist.h
22
prev->next = o;
sys/netpfil/ipfw/test/mylist.h
32
(ty *)((char *)((pL)->next) - offsetof(ty, member))
sys/netpfil/ipfw/test/mylist.h
35
__list_del(struct list_head *prev, struct list_head *next)
sys/netpfil/ipfw/test/mylist.h
37
next->prev = prev;
sys/netpfil/ipfw/test/mylist.h
38
prev->next = next;
sys/netpfil/ipfw/test/mylist.h
45
__list_del(entry->prev, entry->next);
sys/netpfil/ipfw/test/mylist.h
46
entry->next = entry->prev = NULL;
sys/netpfil/pf/if_pfsync.c
1984
struct pf_kstate *st, *next;
sys/netpfil/pf/if_pfsync.c
1996
TAILQ_FOREACH_SAFE(st, &b->b_qs[q], sync_list, next) {
sys/netpfil/pf/pf.c
1126
SLIST_INSERT_HEAD(&V_pf_overloadqueue, pfoe, next);
sys/netpfil/pf/pf.c
1151
SLIST_FOREACH(pfoe, &queue, next) {
sys/netpfil/pf/pf.c
1185
SLIST_FOREACH_SAFE(pfoe, &queue, next, pfoe1)
sys/netpfil/pf/pf.c
1187
SLIST_REMOVE(&queue, pfoe, pf_overload_entry, next);
sys/netpfil/pf/pf.c
1207
SLIST_FOREACH(pfoe, &queue, next)
sys/netpfil/pf/pf.c
1222
SLIST_FOREACH_SAFE(pfoe, &queue, next, pfoe1)
sys/netpfil/pf/pf.c
1583
struct pf_send_entry *pfse, *next;
sys/netpfil/pf/pf.c
1592
STAILQ_FOREACH_SAFE(pfse, &V_pf_sendqueue, pfse_next, next) {
sys/netpfil/pf/pf.c
270
SLIST_ENTRY(pf_overload_entry) next;
sys/netpfil/pf/pf.c
2701
struct pf_send_entry *pfse, *next;
sys/netpfil/pf/pf.c
2712
STAILQ_FOREACH_SAFE(pfse, &queue, pfse_next, next) {
sys/netpfil/pf/pf.c
3018
struct pf_ksrc_node *cur, *next;
sys/netpfil/pf/pf.c
3024
LIST_FOREACH_SAFE(cur, &sh->nodes, entry, next)
sys/netpfil/pf/pf.c
8205
TAILQ_FOREACH_SAFE(j, &pd->sctp_multihome_jobs, next, tmp) {
sys/netpfil/pf/pf.c
8308
TAILQ_INSERT_TAIL(&pd->sctp_multihome_jobs, nj, next);
sys/netpfil/pf/pf.c
8353
TAILQ_REMOVE(&pd->sctp_multihome_jobs, j, next);
sys/netpfil/pf/pf.c
8428
TAILQ_INSERT_TAIL(&pd->sctp_multihome_jobs, job, next);
sys/netpfil/pf/pf.c
8462
TAILQ_INSERT_TAIL(&pd->sctp_multihome_jobs, job, next);
sys/netpfil/pf/pf_norm.c
390
struct pf_frent *next = TAILQ_NEXT(frent, fr_next);
sys/netpfil/pf/pf_norm.c
401
if (next == NULL) {
sys/netpfil/pf/pf_norm.c
406
if (next->fe_off == frent->fe_off + frent->fe_len)
sys/netpfil/pf/pf_norm.c
482
struct pf_frent *next = TAILQ_NEXT(frent, fr_next);
sys/netpfil/pf/pf_norm.c
490
if (next == NULL) {
sys/netpfil/pf/pf_norm.c
493
KASSERT(frent->fe_off + frent->fe_len <= next->fe_off,
sys/netpfil/pf/pf_norm.c
495
if (pf_frent_index(next) == index) {
sys/netpfil/pf/pf_norm.c
496
frag->fr_firstoff[index] = next;
sys/netpfil/pf/pf_norm.c
521
struct pf_frent *prev, *next;
sys/netpfil/pf/pf_norm.c
564
for (next = TAILQ_NEXT(prev, fr_next); next != NULL;
sys/netpfil/pf/pf_norm.c
565
next = TAILQ_NEXT(next, fr_next)) {
sys/netpfil/pf/pf_norm.c
566
if (next->fe_off > frent->fe_off)
sys/netpfil/pf/pf_norm.c
568
prev = next;
sys/netpfil/pf/pf_norm.c
577
struct pf_frent *after, *next, *prev;
sys/netpfil/pf/pf_norm.c
717
after = next) {
sys/netpfil/pf/pf_norm.c
743
next = TAILQ_NEXT(after, fr_next);
sys/nfs/bootp_subr.c
127
STAILQ_ENTRY(bootpc_ifcontext) next;
sys/nfs/bootp_subr.c
1638
ifctx = STAILQ_NEXT(ifctx, next);
sys/nfs/bootp_subr.c
1664
STAILQ_FOREACH(ifctx, &gctx->interfaces, next)
sys/nfs/bootp_subr.c
1667
STAILQ_FOREACH(ifctx, &gctx->interfaces, next)
sys/nfs/bootp_subr.c
1677
STAILQ_FOREACH(ifctx, &gctx->interfaces, next)
sys/nfs/bootp_subr.c
1686
STAILQ_FOREACH(ifctx, &gctx->interfaces, next)
sys/nfs/bootp_subr.c
1691
STAILQ_FOREACH(ifctx, &gctx->interfaces, next)
sys/nfs/bootp_subr.c
1695
STAILQ_FOREACH(ifctx, &gctx->interfaces, next)
sys/nfs/bootp_subr.c
1737
STAILQ_REMOVE_HEAD(&gctx->interfaces, next);
sys/nfs/bootp_subr.c
351
STAILQ_INSERT_TAIL(&gctx->interfaces, ifctx, next);
sys/nfs/bootp_subr.c
568
STAILQ_FOREACH(ifctx, &gctx->interfaces, next) {
sys/nfs/bootp_subr.c
576
STAILQ_FOREACH(ifctx, &gctx->interfaces, next) {
sys/nfs/bootp_subr.c
697
STAILQ_FOREACH(ifctx, &gctx->interfaces, next) {
sys/nfs/bootp_subr.c
720
STAILQ_FOREACH(ifctx, &gctx->interfaces, next) {
sys/nfs/bootp_subr.c
796
STAILQ_FOREACH(ifctx, &gctx->interfaces, next)
sys/nfs/bootp_subr.c
819
STAILQ_FOREACH(ifctx, &gctx->interfaces, next)
sys/nfs/bootp_subr.c
835
STAILQ_FOREACH(ifctx, &gctx->interfaces, next)
sys/ofed/drivers/infiniband/core/ib_cm.c
911
work = list_entry(cm_id_priv->work_list.next, struct cm_work, list);
sys/ofed/drivers/infiniband/core/ib_cma.c
1820
dev_id_priv = list_entry(id_priv->listen_list.next,
sys/ofed/drivers/infiniband/core/ib_cma.c
1891
mc = container_of(id_priv->mc_list.next,
sys/ofed/drivers/infiniband/core/ib_cma.c
3451
if (bind_list->owners.first->next)
sys/ofed/drivers/infiniband/core/ib_cma.c
4719
id_priv = list_entry(cma_dev->id_list.next,
sys/ofed/drivers/infiniband/core/ib_fmr_pool.c
379
struct ib_pool_fmr *fmr, *next;
sys/ofed/drivers/infiniband/core/ib_fmr_pool.c
388
list_for_each_entry_safe(fmr, next, &pool->free_list, list) {
sys/ofed/drivers/infiniband/core/ib_fmr_pool.c
449
fmr = list_entry(pool->free_list.next, struct ib_pool_fmr, list);
sys/ofed/drivers/infiniband/core/ib_iwcm.c
126
work = list_entry(cm_id_priv->work_free_list.next, struct iwcm_work,
sys/ofed/drivers/infiniband/core/ib_iwcm.c
901
work = list_entry(cm_id_priv->work_list.next,
sys/ofed/drivers/infiniband/core/ib_mad.c
1254
next_send_buf = send_buf->next;
sys/ofed/drivers/infiniband/core/ib_mad.c
2319
mad_send_wr = list_entry(mad_agent_priv->wait_list.next,
sys/ofed/drivers/infiniband/core/ib_mad.c
2363
if (mad_agent_priv->wait_list.next == &mad_send_wr->agent_list)
sys/ofed/drivers/infiniband/core/ib_mad.c
2466
mad_list = container_of(qp_info->overflow_list.next,
sys/ofed/drivers/infiniband/core/ib_mad.c
2677
local = list_entry(mad_agent_priv->local_list.next,
sys/ofed/drivers/infiniband/core/ib_mad.c
2803
mad_send_wr = list_entry(mad_agent_priv->wait_list.next,
sys/ofed/drivers/infiniband/core/ib_mad.c
2855
recv_wr.next = NULL;
sys/ofed/drivers/infiniband/core/ib_mad.c
2927
mad_list = list_entry(qp_info->recv_queue.list.next,
sys/ofed/drivers/infiniband/core/ib_mad.c
977
send_wr->cur_seg = container_of(send_wr->rmpp_list.next,
sys/ofed/drivers/infiniband/core/ib_mad_rmpp.c
400
if (seg->list.next == rmpp_list)
sys/ofed/drivers/infiniband/core/ib_mad_rmpp.c
403
return container_of(seg->list.next, struct ib_mad_recv_buf, list);
sys/ofed/drivers/infiniband/core/ib_multicast.c
407
member = list_entry(group->active_list.next,
sys/ofed/drivers/infiniband/core/ib_multicast.c
449
member = list_entry(group->pending_list.next,
sys/ofed/drivers/infiniband/core/ib_multicast.c
502
member = list_entry(group->pending_list.next,
sys/ofed/drivers/infiniband/core/ib_ucm.c
1181
ctx = list_entry(file->ctxs.next,
sys/ofed/drivers/infiniband/core/ib_ucm.c
162
uevent = list_entry(ctx->events.next,
sys/ofed/drivers/infiniband/core/ib_ucm.c
415
uevent = list_entry(file->events.next, struct ib_ucm_event, file_list);
sys/ofed/drivers/infiniband/core/ib_ucma.c
415
uevent = list_entry(file->event_list.next, struct ucma_event, list);
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
766
struct umem_odp_node *node, *next;
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
773
node; node = next) {
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
777
next = rbt_ib_umem_iter_next(node, start, last - 1);
sys/ofed/drivers/infiniband/core/ib_user_mad.c
312
recv_buf = container_of(recv_buf->list.next,
sys/ofed/drivers/infiniband/core/ib_user_mad.c
367
packet = list_entry(file->recv_list.next, struct ib_umad_packet, list);
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2018
struct ib_send_wr *wr = NULL, *last, *next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2094
next = &ud->wr;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2110
next = &rdma->wr;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2127
next = &atomic->wr;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2131
next_size = sizeof(*next);
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2132
next = alloc_wr(next_size, user_wr->num_sge);
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2133
if (!next) {
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2144
next->ex.imm_data =
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2147
next->ex.invalidate_rkey = user_wr->ex.invalidate_rkey;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2151
wr = next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2153
last->next = next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2154
last = next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2156
next->next = NULL;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2157
next->wr_id = user_wr->wr_id;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2158
next->num_sge = user_wr->num_sge;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2159
next->opcode = user_wr->opcode;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2160
next->send_flags = user_wr->send_flags;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2162
if (next->num_sge) {
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2163
next->sg_list = (void *)((char *)next +
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2165
if (copy_from_user(next->sg_list, sgls + sg_ind,
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2166
next->num_sge *
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2171
sg_ind += next->num_sge;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2173
next->sg_list = NULL;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2179
for (next = wr; next; next = next->next) {
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2181
if (next == bad_wr)
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2196
next = wr->next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2198
wr = next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2212
struct ib_recv_wr *wr = NULL, *last, *next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2252
(U32_MAX - ALIGN(sizeof *next, sizeof (struct ib_sge))) /
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2258
next = kmalloc(ALIGN(sizeof *next, sizeof (struct ib_sge)) +
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2261
if (!next) {
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2267
wr = next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2269
last->next = next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2270
last = next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2272
next->next = NULL;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2273
next->wr_id = user_wr->wr_id;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2274
next->num_sge = user_wr->num_sge;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2276
if (next->num_sge) {
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2277
next->sg_list = (void *)((char *)next +
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2278
ALIGN(sizeof *next, sizeof (struct ib_sge)));
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2279
if (copy_from_user(next->sg_list, sgls + sg_ind,
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2280
next->num_sge *
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2285
sg_ind += next->num_sge;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2287
next->sg_list = NULL;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2297
next = wr->next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2299
wr = next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2309
struct ib_recv_wr *wr, *next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2336
for (next = wr; next; next = next->next) {
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2338
if (next == bad_wr)
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2348
next = wr->next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2350
wr = next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2360
struct ib_recv_wr *wr, *next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2388
for (next = wr; next; next = next->next) {
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2390
if (next == bad_wr)
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2400
next = wr->next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2402
wr = next;
sys/ofed/drivers/infiniband/core/ib_uverbs_ioctl.c
125
buf->next = pbundle->allocated_mem;
sys/ofed/drivers/infiniband/core/ib_uverbs_ioctl.c
43
struct bundle_alloc_head *next;
sys/ofed/drivers/infiniband/core/ib_uverbs_ioctl.c
515
memblock = memblock->next;
sys/ofed/drivers/infiniband/core/ib_uverbs_ioctl.c
549
pbundle->alloc_head.next = NULL;
sys/ofed/drivers/infiniband/core/ib_uverbs_main.c
240
event = list_entry(ev_queue->event_list.next, struct ib_uverbs_event, list);
sys/ofed/drivers/infiniband/core/ib_uverbs_main.c
246
list_del(ev_queue->event_list.next);
sys/ofed/drivers/infiniband/core/ib_verbs.c
2017
fmr = list_entry(fmr_list->next, struct ib_fmr, list);
sys/ofed/drivers/infiniband/core/ib_verbs.c
2141
qp = list_entry(xrcd->tgt_qp_list.next, struct ib_qp, xrcd_list);
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c
1206
p = list_entry(priv->cm.start_list.next, typeof(*p), list);
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c
1244
p = list_entry(priv->cm.reap_list.next, typeof(*p), list);
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c
184
p = list_entry(priv->cm.rx_flush_list.next, typeof(*p), list);
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c
293
wr->next = NULL;
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c
797
p = list_entry(priv->cm.passive_ids.next, typeof(*p), list);
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_fs.c
130
.next = ipoib_mcg_seq_next,
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_fs.c
236
.next = ipoib_path_seq_next,
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_verbs.c
228
priv->rx_wr.next = NULL;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1811
goto next;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
1832
next:
sys/ofed/drivers/infiniband/ulp/sdp/sdp_proc.c
101
next = sdp_get_idx(seq, *pos);
sys/ofed/drivers/infiniband/ulp/sdp/sdp_proc.c
102
if (next)
sys/ofed/drivers/infiniband/ulp/sdp/sdp_proc.c
103
sock_hold((struct socket *)next, SOCK_REF_SEQ);
sys/ofed/drivers/infiniband/ulp/sdp/sdp_proc.c
109
return next;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_proc.c
179
s->seq_ops.next = sdp_seq_next;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_proc.c
423
.next = sdpprf_next,
sys/ofed/drivers/infiniband/ulp/sdp/sdp_proc.c
95
void *next = NULL;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_proc.c
99
next = sdp_get_idx(seq, 0);
sys/ofed/drivers/infiniband/ulp/sdp/sdp_rx.c
140
rx_wr.next = NULL;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_tx.c
138
tx_wr.next = NULL;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_tx.c
400
wr.next = NULL;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_zcopy.c
528
wr.next = NULL;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_zcopy.c
65
BUG_ON(!tx_sa->umem->chunk_list.next);
sys/ofed/drivers/infiniband/ulp/sdp/sdp_zcopy.c
67
chunk = list_entry(tx_sa->umem->chunk_list.next, struct ib_umem_chunk, list);
sys/ofed/include/rdma/ib_mad.h
449
struct ib_mad_send_buf *next;
sys/ofed/include/rdma/ib_verbs.h
1289
struct ib_send_wr *next;
sys/ofed/include/rdma/ib_verbs.h
1373
struct ib_recv_wr *next;
sys/ofed/include/rdma/ib_verbs.h
2008
struct ib_flow_spec_list *next;
sys/ofed/include/rdma/rdma_vt.h
478
qp = rcu_dereference(qp->next))
sys/ofed/include/rdma/rdmavt_mr.h
95
u32 next; /* next unused index (speeds search) */
sys/ofed/include/rdma/rdmavt_qp.h
272
struct rvt_qp __rcu *next; /* link list for QPN hash table */
sys/opencrypto/cryptodeflate.c
121
bufp->next = NULL;
sys/opencrypto/cryptodeflate.c
171
p->next = NULL;
sys/opencrypto/cryptodeflate.c
173
bufp->next = p;
sys/opencrypto/cryptodeflate.c
207
bufp = bufp->next;
sys/opencrypto/cryptodeflate.c
231
bufp = bufp->next;
sys/opencrypto/cryptodev.c
1092
TAILQ_REMOVE(&fcr->csessions, cse, next);
sys/opencrypto/cryptodev.c
263
TAILQ_ENTRY(csession) next;
sys/opencrypto/cryptodev.c
521
TAILQ_INSERT_TAIL(&fcr->csessions, cse, next);
sys/opencrypto/cryptodev.c
543
TAILQ_FOREACH(cse, &fcr->csessions, next) {
sys/opencrypto/cryptodev.c
575
TAILQ_FOREACH(cse, &fcr->csessions, next) {
sys/opencrypto/cryptodev.c
577
TAILQ_REMOVE(&fcr->csessions, cse, next);
sys/opencrypto/deflate.h
50
struct deflate_buf *next;
sys/powerpc/aim/slb.c
293
struct slbtnode *ua, *next, *inter;
sys/powerpc/aim/slb.c
324
next = ua->u.ua_child[idx];
sys/powerpc/aim/slb.c
325
if (next == NULL) {
sys/powerpc/aim/slb.c
334
if (esid2base(esid, next->ua_level) != next->ua_base) {
sys/powerpc/aim/slb.c
340
ua = next;
sys/powerpc/ofw/ofw_real.c
442
cell_t next;
sys/powerpc/ofw/ofw_real.c
458
return (OUT(args.next));
sys/powerpc/powerpc/mp_machdep.c
159
goto next;
sys/powerpc/powerpc/mp_machdep.c
164
goto next;
sys/powerpc/powerpc/mp_machdep.c
192
next:
sys/powerpc/ps3/if_glc.c
591
sc->sc_rxdmadesc[idx].next = sc->sc_rxdmadesc_phys +
sys/powerpc/ps3/if_glc.c
666
sc->sc_txdmadesc[idx].next = sc->sc_txdmadesc_phys +
sys/powerpc/ps3/if_glc.c
672
sc->sc_txdmadesc[idx].next = 0;
sys/powerpc/ps3/if_glc.c
696
sc->sc_txdmadesc[idx].next = firstslotphys;
sys/powerpc/ps3/if_glcreg.h
151
uint32_t next;
sys/powerpc/pseries/phyp_dbg.c
106
int c, err, next;
sys/powerpc/pseries/phyp_dbg.c
130
next = 1;
sys/powerpc/pseries/phyp_dbg.c
131
if (c == '\r' && dbgport.inbuf.str[next] == '\0') {
sys/powerpc/pseries/phyp_dbg.c
132
next++;
sys/powerpc/pseries/phyp_dbg.c
137
memmove(&dbgport.inbuf.str[0], &dbgport.inbuf.str[next],
sys/powerpc/pseries/plpar_iommu.c
50
struct papr_iommu_map *next;
sys/riscv/iommu/iommu.c
1021
LIST_FOREACH(domain, &unit->domain_list, next) {
sys/riscv/iommu/iommu.c
1022
LIST_FOREACH(ctx, &domain->ctx_list, next) {
sys/riscv/iommu/iommu.c
1050
LIST_FOREACH(domain, &unit->domain_list, next) {
sys/riscv/iommu/iommu.c
1052
LIST_FOREACH(ctx, &domain->ctx_list, next) {
sys/riscv/iommu/iommu.c
1163
LIST_INSERT_HEAD(&unit->domain_list, domain, next);
sys/riscv/iommu/iommu.c
1190
LIST_REMOVE(domain, next);
sys/riscv/iommu/iommu.c
1221
LIST_INSERT_HEAD(&domain->ctx_list, ctx, next);
sys/riscv/iommu/iommu.c
1288
LIST_REMOVE(ctx, next);
sys/riscv/iommu/iommu.h
138
LIST_ENTRY(riscv_iommu_unit) next;
sys/riscv/iommu/iommu.h
146
LIST_ENTRY(riscv_iommu_domain) next;
sys/riscv/iommu/iommu.h
156
LIST_ENTRY(riscv_iommu_ctx) next;
sys/riscv/iommu/iommu_frontend.c
224
LIST_FOREACH(entry, &iommu_list, next) {
sys/riscv/iommu/iommu_frontend.c
431
LIST_INSERT_HEAD(&iommu_list, entry, next);
sys/riscv/iommu/iommu_frontend.c
446
LIST_FOREACH_SAFE(entry, &iommu_list, next, tmp) {
sys/riscv/iommu/iommu_frontend.c
448
LIST_REMOVE(entry, next);
sys/riscv/iommu/iommu_frontend.c
470
LIST_FOREACH(entry, &iommu_list, next) {
sys/riscv/iommu/iommu_frontend.c
70
LIST_ENTRY(iommu_entry) next;
sys/riscv/starfive/jh7110_pcie.c
316
goto next;
sys/riscv/starfive/jh7110_pcie.c
319
next:
sys/rpc/rpcb_prot.c
118
rpcblist_ptr next;
sys/rpc/rpcb_prot.c
121
next = NULL;
sys/rpc/rpcb_prot.c
136
next = (*rp)->rpcb_next;
sys/rpc/rpcb_prot.c
142
next_copy = next;
sys/rpc/rpcb_prot.c
202
rpcb_entry_list_ptr next;
sys/rpc/rpcb_prot.c
205
next = NULL;
sys/rpc/rpcb_prot.c
220
next = (*rp)->rpcb_entry_next;
sys/rpc/rpcb_prot.c
227
next_copy = next;
sys/rpc/rpcb_prot.h
292
struct rpcbs_addrlist *next;
sys/rpc/rpcb_prot.h
306
struct rpcbs_rmtcalllist *next;
sys/rpc/rpcb_prot.h
442
struct rpcbs_addrlist *next;
sys/rpc/rpcb_prot.h
456
struct rpcbs_rmtcalllist *next;
sys/security/mac_ddb/mac_ddb.c
242
LIST_FOREACH_FROM(cmd, &db_cmd_table, next) {
sys/security/mac_ddb/mac_ddb.c
260
LIST_FOREACH_FROM(cmd, &db_show_table, next) {
sys/sys/hwt_record.h
46
TAILQ_ENTRY(hwt_record_entry) next;
sys/sys/kernel.h
229
STAILQ_ENTRY(sysinit) next; /* singly-linked list */
sys/sys/socketvar.h
92
STAILQ_ENTRY(so_splice) next;
sys/sys/tree.h
944
struct type *elm, struct type *next) \
sys/sys/tree.h
949
_RB_ORDER_CHECK(cmp, elm, next); \
sys/sys/tree.h
951
_RB_ORDER_CHECK(cmp, next, name##_RB_NEXT(elm)); \
sys/sys/tree.h
956
return (name##_RB_INSERT_FINISH(head, elm, tmpp, next)); \
sys/tests/framework/kern_testfrwk.c
103
TAILQ_REMOVE(&tf->kfrwk_testq, wk, next);
sys/tests/framework/kern_testfrwk.c
196
TAILQ_FOREACH(li, &kfrwk.kfrwk_testlist, next) {
sys/tests/framework/kern_testfrwk.c
224
TAILQ_INSERT_TAIL(&kfrwk.kfrwk_testq, kte, next);
sys/tests/framework/kern_testfrwk.c
245
TAILQ_FOREACH(li, &kfrwk.kfrwk_testlist, next) {
sys/tests/framework/kern_testfrwk.c
255
TAILQ_INSERT_TAIL(&kfrwk.kfrwk_testlist, te, next);
sys/tests/framework/kern_testfrwk.c
270
TAILQ_FOREACH(li, &kfrwk.kfrwk_testlist, next) {
sys/tests/framework/kern_testfrwk.c
291
TAILQ_REMOVE(&kfrwk.kfrwk_testlist, te, next);
sys/tests/framework/kern_testfrwk.c
48
TAILQ_ENTRY(kern_test_list) next;
sys/tests/framework/kern_testfrwk.c
56
TAILQ_ENTRY(kern_test_entry) next;
sys/ufs/ffs/ffs_softdep.c
10189
struct worklist *next;
sys/ufs/ffs/ffs_softdep.c
10191
next = LIST_NEXT(marker, wk_list);
sys/ufs/ffs/ffs_softdep.c
10193
return next;
sys/ufs/ffs/ffs_vnops.c
365
goto next;
sys/ufs/ffs/ffs_vnops.c
376
goto next;
sys/ufs/ffs/ffs_vnops.c
392
next:
sys/vm/vm_kern.c
626
vm_offset_t end, next, start;
sys/vm/vm_kern.c
632
for (start = addr, end = addr + size; addr < end; addr = next) {
sys/vm/vm_kern.c
641
next = roundup2(addr + 1, KVA_QUANTUM);
sys/vm/vm_kern.c
642
if (next > end || next < start)
sys/vm/vm_kern.c
643
next = end;
sys/vm/vm_kern.c
646
next = end;
sys/vm/vm_kern.c
648
rv = kmem_back_domain(domain, object, addr, next - addr, flags);
sys/vm/vm_map.c
584
vm_map_entry_t entry, next;
sys/vm/vm_map.c
591
next = entry->defer_next;
sys/vm/vm_map.c
609
entry = next;
sys/vm/vm_object.c
1698
vm_page_t next, p, pp;
sys/vm/vm_object.c
1711
for (p = vm_radix_iter_lookup_ge(&pages, 0); p != NULL; p = next) {
sys/vm/vm_object.c
1716
next = vm_object_collapse_scan_wait(&pages, object, p);
sys/vm/vm_object.c
1735
next = vm_radix_iter_step(&pages);
sys/vm/vm_object.c
1744
next = vm_radix_iter_step(&pages);
sys/vm/vm_object.c
1757
next = vm_object_collapse_scan_wait(&pages, object, pp);
sys/vm/vm_object.c
1787
next = vm_radix_iter_step(&pages);
sys/vm/vm_object.c
1801
next = vm_object_collapse_scan_wait(&pages, object,
sys/vm/vm_object.c
1818
next = vm_radix_iter_step(&pages);
sys/vm/vm_page.c
3712
vm_page_t next;
sys/vm/vm_page.c
3731
next = TAILQ_NEXT(m, plinks.q);
sys/vm/vm_page.c
3736
if (next == NULL)
sys/vm/vm_page.c
3739
TAILQ_INSERT_BEFORE(next, m, plinks.q);
sys/vm/vm_page.c
377
char *next;
sys/vm/vm_page.c
379
next = list;
sys/vm/vm_page.c
380
while (next != NULL) {
sys/vm/vm_page.c
381
if ((pa = vm_page_blacklist_next(&next, end)) == 0)
sys/vm/vm_pager.c
129
dead_pager_haspage(vm_object_t object, vm_pindex_t pindex, int *prev, int *next)
sys/vm/vm_pager.c
134
if (next != NULL)
sys/vm/vm_pager.c
135
*next = 0;
sys/x86/x86/cpu_machdep.c
1018
struct nmi_handler *next;
sys/x86/x86/cpu_machdep.c
1042
(uintptr_t *)&hp->next);
sys/x86/x86/cpu_machdep.c
1046
hp->next = nmi_handlers_head;
sys/x86/x86/cpu_machdep.c
1049
(uintptr_t *)&hp->next, (uintptr_t)hp) == 0)
sys/x86/x86/cpu_machdep.c
1069
(uintptr_t *)&hp->next);
sys/x86/x86/cpu_machdep.c
1104
(uintptr_t *)&hp->next);
sys/x86/x86/mca.c
874
struct mca_internal *next, *rec;
sys/x86/x86/mca.c
906
STAILQ_FOREACH_SAFE(rec, &tmplist, link, next)
sys/xen/gnttab.h
51
struct gnttab_free_callback *next;
tests/sys/aio/aio_test.c
1547
next:
tests/sys/aio/aio_test.c
1560
goto next;
tests/sys/arch/aarch64/sve.c
116
int idx, next;
tests/sys/arch/aarch64/sve.c
133
next = 3 * svectx->sve_vector_len / sizeof(*sveregs);
tests/sys/arch/aarch64/sve.c
134
while (idx != next) {
tests/sys/net/bpf/pcap-test.c
116
for (p = all; p != NULL; p = p->next)
tests/sys/net/bpf/pcap-test.c
174
STAILQ_ENTRY(packet) next;
tests/sys/net/bpf/pcap-test.c
191
STAILQ_INSERT_TAIL(list, p, next);
tests/sys/net/bpf/pcap-test.c
216
p1 = STAILQ_NEXT(p1, next), p2 = STAILQ_NEXT(p2, next), cnt++) {
tests/sys/netgraph/util.c
144
SLIST_INSERT_HEAD(&data_head, p, next);
tests/sys/netgraph/util.c
184
SLIST_FOREACH(hnd, &data_head, next)
tests/sys/netgraph/util.c
61
SLIST_ENTRY(data_handler) next;
tests/sys/netinet/ip6_mrouted.c
153
STAILQ_INSERT_TAIL(&miflist, mif, next);
tests/sys/netinet/ip6_mrouted.c
172
STAILQ_FOREACH(mif, &miflist, next) {
tests/sys/netinet/ip6_mrouted.c
35
STAILQ_ENTRY(mif) next;
tests/sys/netinet/ip6_mrouted.c
76
STAILQ_FOREACH(mif, &miflist, next) {
tests/sys/sys/arb_test.c
38
ARB32_ENTRY() next;
tests/sys/sys/arb_test.c
52
ARB_PROTOTYPE(tree, node, next, compare);
tests/sys/sys/arb_test.c
54
ARB_GENERATE(tree, node, next, compare);
tests/sys/sys/arb_test.c
70
ARB_INIT(tmp, next, root, ITER);
tests/sys/sys/arb_test.c
73
tmp = ARB_GETFREE(root, next);
tools/build/bootstrap-m4/inittokenizer.c
1842
char *next;
tools/build/bootstrap-m4/inittokenizer.c
1847
base = strtol(yytext+2, &next, 0);
tools/build/bootstrap-m4/inittokenizer.c
1848
if (base > 36 || next == NULL) {
tools/build/bootstrap-m4/inittokenizer.c
1851
next++;
tools/build/bootstrap-m4/inittokenizer.c
1852
while (*next != 0) {
tools/build/bootstrap-m4/inittokenizer.c
1853
if (*next >= '0' && *next <= '9')
tools/build/bootstrap-m4/inittokenizer.c
1854
d = *next - '0';
tools/build/bootstrap-m4/inittokenizer.c
1855
else if (*next >= 'a' && *next <= 'z')
tools/build/bootstrap-m4/inittokenizer.c
1856
d = *next - 'a' + 10;
tools/build/bootstrap-m4/inittokenizer.c
1858
assert(*next >= 'A' && *next <= 'Z');
tools/build/bootstrap-m4/inittokenizer.c
1859
d = *next - 'A' + 10;
tools/build/bootstrap-m4/inittokenizer.c
1866
next++;
tools/bus_space/busdma.c
277
seg0 = seg->u.seg.next;
tools/bus_space/busdma.c
496
seg = seg->u.seg.next;
tools/bus_space/busdma.c
72
struct obj *next;
tools/regression/geom/ConfCmp/ConfCmp.c
261
LIST_FOREACH(r, &refs, next) {
tools/regression/geom/ConfCmp/ConfCmp.c
268
LIST_INSERT_HEAD(&refs, r, next);
tools/regression/geom/ConfCmp/ConfCmp.c
70
LIST_ENTRY(ref) next;
tools/tools/drm/radeon/mkregtable/mkregtable.c
109
static inline void __list_del(struct list_head *prev, struct list_head *next)
tools/tools/drm/radeon/mkregtable/mkregtable.c
111
next->prev = prev;
tools/tools/drm/radeon/mkregtable/mkregtable.c
112
prev->next = next;
tools/tools/drm/radeon/mkregtable/mkregtable.c
124
__list_del(entry->prev, entry->next);
tools/tools/drm/radeon/mkregtable/mkregtable.c
125
entry->next = (void *)0xDEADBEEF;
tools/tools/drm/radeon/mkregtable/mkregtable.c
141
new->next = old->next;
tools/tools/drm/radeon/mkregtable/mkregtable.c
142
new->next->prev = new;
tools/tools/drm/radeon/mkregtable/mkregtable.c
144
new->prev->next = new;
tools/tools/drm/radeon/mkregtable/mkregtable.c
160
__list_del(entry->prev, entry->next);
tools/tools/drm/radeon/mkregtable/mkregtable.c
171
__list_del(list->prev, list->next);
tools/tools/drm/radeon/mkregtable/mkregtable.c
183
__list_del(list->prev, list->next);
tools/tools/drm/radeon/mkregtable/mkregtable.c
195
return list->next == head;
tools/tools/drm/radeon/mkregtable/mkregtable.c
204
return head->next == head;
tools/tools/drm/radeon/mkregtable/mkregtable.c
222
struct list_head *next = head->next;
tools/tools/drm/radeon/mkregtable/mkregtable.c
223
return (next == head) && (next == head->prev);
tools/tools/drm/radeon/mkregtable/mkregtable.c
232
return !list_empty(head) && (head->next == head->prev);
tools/tools/drm/radeon/mkregtable/mkregtable.c
239
struct list_head *new_first = entry->next;
tools/tools/drm/radeon/mkregtable/mkregtable.c
240
list->next = head->next;
tools/tools/drm/radeon/mkregtable/mkregtable.c
241
list->next->prev = list;
tools/tools/drm/radeon/mkregtable/mkregtable.c
243
entry->next = list;
tools/tools/drm/radeon/mkregtable/mkregtable.c
244
head->next = new_first;
tools/tools/drm/radeon/mkregtable/mkregtable.c
268
if (list_is_singular(head) && (head->next != entry && head != entry))
tools/tools/drm/radeon/mkregtable/mkregtable.c
277
struct list_head *prev, struct list_head *next)
tools/tools/drm/radeon/mkregtable/mkregtable.c
279
struct list_head *first = list->next;
tools/tools/drm/radeon/mkregtable/mkregtable.c
283
prev->next = first;
tools/tools/drm/radeon/mkregtable/mkregtable.c
285
last->next = next;
tools/tools/drm/radeon/mkregtable/mkregtable.c
286
next->prev = last;
tools/tools/drm/radeon/mkregtable/mkregtable.c
298
__list_splice(list, head, head->next);
tools/tools/drm/radeon/mkregtable/mkregtable.c
324
__list_splice(list, head, head->next);
tools/tools/drm/radeon/mkregtable/mkregtable.c
364
list_entry((ptr)->next, type, member)
tools/tools/drm/radeon/mkregtable/mkregtable.c
372
for (pos = (head)->next; prefetch(pos->next), pos != (head); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
373
pos = pos->next)
tools/tools/drm/radeon/mkregtable/mkregtable.c
386
for (pos = (head)->next; pos != (head); pos = pos->next)
tools/tools/drm/radeon/mkregtable/mkregtable.c
404
for (pos = (head)->next, n = pos->next; pos != (head); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
405
pos = n, n = pos->next)
tools/tools/drm/radeon/mkregtable/mkregtable.c
42
struct list_head *next, *prev;
tools/tools/drm/radeon/mkregtable/mkregtable.c
425
for (pos = list_entry((head)->next, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
427
pos = list_entry(pos->member.next, typeof(*pos), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
461
for (pos = list_entry(pos->member.next, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
462
prefetch(pos->member.next), &pos->member != (head); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
463
pos = list_entry(pos->member.next, typeof(*pos), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
488
for (; prefetch(pos->member.next), &pos->member != (head); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
489
pos = list_entry(pos->member.next, typeof(*pos), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
499
for (pos = list_entry((head)->next, typeof(*pos), member), \
tools/tools/drm/radeon/mkregtable/mkregtable.c
500
n = list_entry(pos->member.next, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
502
pos = n, n = list_entry(n->member.next, typeof(*n), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
515
for (pos = list_entry(pos->member.next, typeof(*pos), member), \
tools/tools/drm/radeon/mkregtable/mkregtable.c
516
n = list_entry(pos->member.next, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
518
pos = n, n = list_entry(n->member.next, typeof(*n), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
52
list->next = list;
tools/tools/drm/radeon/mkregtable/mkregtable.c
531
for (n = list_entry(pos->member.next, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
533
pos = n, n = list_entry(n->member.next, typeof(*n), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
64
struct list_head *prev, struct list_head *next)
tools/tools/drm/radeon/mkregtable/mkregtable.c
66
next->prev = new;
tools/tools/drm/radeon/mkregtable/mkregtable.c
67
new->next = next;
tools/tools/drm/radeon/mkregtable/mkregtable.c
69
prev->next = new;
tools/tools/drm/radeon/mkregtable/mkregtable.c
73
struct list_head *prev, struct list_head *next);
tools/tools/drm/radeon/mkregtable/mkregtable.c
86
__list_add(new, head, head->next);
tools/tools/iwn/iwnstats/main.c
313
goto next;
tools/tools/iwn/iwnstats/main.c
318
next:
tools/tools/net80211/stumbler/stumbler.c
103
next = nodes->next;
tools/tools/net80211/stumbler/stumbler.c
105
nodes = next;
tools/tools/net80211/stumbler/stumbler.c
225
node = node->next;
tools/tools/net80211/stumbler/stumbler.c
476
if (!node->next) {
tools/tools/net80211/stumbler/stumbler.c
477
node->next = (struct node_info*)
tools/tools/net80211/stumbler/stumbler.c
479
if (!node->next)
tools/tools/net80211/stumbler/stumbler.c
482
memset(node->next, 0, sizeof(*node->next));
tools/tools/net80211/stumbler/stumbler.c
483
memcpy(node->next->mac, data->mac, 6);
tools/tools/net80211/stumbler/stumbler.c
484
node->next->prev = node;
tools/tools/net80211/stumbler/stumbler.c
485
node->next->pos = node->pos+1;
tools/tools/net80211/stumbler/stumbler.c
487
node = node->next;
tools/tools/net80211/stumbler/stumbler.c
493
node = node->next;
tools/tools/net80211/stumbler/stumbler.c
506
ni = ni->next;
tools/tools/net80211/stumbler/stumbler.c
583
goto next;
tools/tools/net80211/stumbler/stumbler.c
593
goto next;
tools/tools/net80211/stumbler/stumbler.c
599
goto next;
tools/tools/net80211/stumbler/stumbler.c
609
goto next;
tools/tools/net80211/stumbler/stumbler.c
617
goto next;
tools/tools/net80211/stumbler/stumbler.c
620
goto next;
tools/tools/net80211/stumbler/stumbler.c
674
next:
tools/tools/net80211/stumbler/stumbler.c
91
struct node_info* next;
tools/tools/net80211/stumbler/stumbler.c
948
node = node->next;
tools/tools/net80211/stumbler/stumbler.c
95
struct node_info* next;
tools/tools/net80211/w00t/ap/ap.c
42
struct client *next;
tools/tools/net80211/w00t/ap/ap.c
572
c = c->next;
tools/tools/net80211/w00t/ap/ap.c
589
c->next = p->clients;
tools/tools/net80211/w00t/expand/expand.c
130
q = q->next;
tools/tools/net80211/w00t/expand/expand.c
145
last->next = q;
tools/tools/net80211/w00t/expand/expand.c
55
struct queue *next;
tools/tools/net80211/w00t/redir/redir.c
171
q = q->next;
tools/tools/net80211/w00t/redir/redir.c
186
last->next = q;
tools/tools/net80211/w00t/redir/redir.c
538
if (q->next) {
tools/tools/net80211/w00t/redir/redir.c
540
p->q = q->next;
tools/tools/net80211/w00t/redir/redir.c
543
if (!last->next) {
tools/tools/net80211/w00t/redir/redir.c
544
last->next = q;
tools/tools/net80211/w00t/redir/redir.c
545
q->next = 0;
tools/tools/net80211/w00t/redir/redir.c
548
last = last->next;
tools/tools/net80211/w00t/redir/redir.c
57
struct queue *next;
tools/tools/net80211/wesside/wesside/wesside.c
2357
static unsigned char *next = buf;
tools/tools/net80211/wesside/wesside/wesside.c
2370
next = buf;
tools/tools/net80211/wesside/wesside/wesside.c
2374
pkt = get_80211(&next, &totlen, &plen);
tools/tools/net80211/wlanwds/wlanwds.c
370
p->next = wds;
tools/tools/net80211/wlanwds/wlanwds.c
472
for (p = wds; p != NULL; p = p->next)
tools/tools/net80211/wlanwds/wlanwds.c
503
p->next = wds;
tools/tools/net80211/wlanwds/wlanwds.c
527
for (pp = &wds; (p = *pp) != NULL; pp = &p->next)
tools/tools/net80211/wlanwds/wlanwds.c
531
*pp = p->next;
tools/tools/net80211/wlanwds/wlanwds.c
546
for (pp = &wds; (p = *pp) != NULL; pp = &p->next)
tools/tools/net80211/wlanwds/wlanwds.c
550
*pp = p->next;
tools/tools/net80211/wlanwds/wlanwds.c
77
struct wds *next;
tools/tools/netmap/nmreplay.c
147
uint64_t next; /* buffer index for next packet */
tools/tools/netmap/nmreplay.c
716
p->next = q->prod_tail + pad(q->cur_len) + sizeof(struct q_pkt);
tools/tools/netmap/nmreplay.c
718
q->cur_len, (int)q->prod_tail, p->next,
tools/tools/netmap/nmreplay.c
720
q->prod_tail = p->next;
tools/tools/netmap/nmreplay.c
864
__builtin_prefetch (q->buf + p->next);
tools/tools/netmap/nmreplay.c
891
(u_long)q->_head, (u_long)q->_tail, (u_long)p->next);
tools/tools/netmap/nmreplay.c
902
q->cons_head = p->next;
usr.bin/ar/acpyacc.y
51
struct list *next;
usr.bin/ar/acpyacc.y
565
l->next = list;
usr.bin/ar/acpyacc.y
576
for(len = 0; list; list = list->next)
usr.bin/ar/acpyacc.y
590
l = list->next;
usr.bin/ar/acpyacc.y
608
for(i = n - 1; i >= 0; i--, list = list->next) {
usr.bin/bluetooth/btsockstat/btsockstat.c
218
ng_btsocket_hci_raw_pcb_p this = NULL, next = NULL;
usr.bin/bluetooth/btsockstat/btsockstat.c
229
for ( ; this != NULL; this = next) {
usr.bin/bluetooth/btsockstat/btsockstat.c
235
next = LIST_NEXT(&pcb, next);
usr.bin/bluetooth/btsockstat/btsockstat.c
273
ng_btsocket_l2cap_raw_pcb_p this = NULL, next = NULL;
usr.bin/bluetooth/btsockstat/btsockstat.c
284
for ( ; this != NULL; this = next) {
usr.bin/bluetooth/btsockstat/btsockstat.c
290
next = LIST_NEXT(&pcb, next);
usr.bin/bluetooth/btsockstat/btsockstat.c
329
ng_btsocket_l2cap_pcb_p this = NULL, next = NULL;
usr.bin/bluetooth/btsockstat/btsockstat.c
341
for ( ; this != NULL; this = next) {
usr.bin/bluetooth/btsockstat/btsockstat.c
347
next = LIST_NEXT(&pcb, next);
usr.bin/bluetooth/btsockstat/btsockstat.c
384
ng_btsocket_l2cap_rtentry_p this = NULL, next = NULL;
usr.bin/bluetooth/btsockstat/btsockstat.c
394
for ( ; this != NULL; this = next) {
usr.bin/bluetooth/btsockstat/btsockstat.c
398
next = LIST_NEXT(&rt, next);
usr.bin/bluetooth/btsockstat/btsockstat.c
434
ng_btsocket_rfcomm_pcb_p this = NULL, next = NULL;
usr.bin/bluetooth/btsockstat/btsockstat.c
446
for ( ; this != NULL; this = next) {
usr.bin/bluetooth/btsockstat/btsockstat.c
452
next = LIST_NEXT(&pcb, next);
usr.bin/bluetooth/btsockstat/btsockstat.c
499
ng_btsocket_rfcomm_session_p this = NULL, next = NULL;
usr.bin/bluetooth/btsockstat/btsockstat.c
510
for ( ; this != NULL; this = next) {
usr.bin/bluetooth/btsockstat/btsockstat.c
516
next = LIST_NEXT(&s, next);
usr.bin/calendar/calendar.h
133
struct event *next;
usr.bin/calendar/dates.c
453
ee->next = e;
usr.bin/calendar/events.c
232
e = e->next;
usr.bin/calendar/parsedata.c
374
struct yearinfo *next;
usr.bin/calendar/parsedata.c
487
yearinfo = yearinfo -> next;
usr.bin/calendar/parsedata.c
495
yearinfo->next = years;
usr.bin/diff/diff.c
559
entry->next = excludes_list;
usr.bin/diff/diff.h
111
struct excludes *next;
usr.bin/diff/diffdir.c
380
for (excl = excludes_list; excl != NULL; excl = excl->next)
usr.bin/dtc/fdt.cc
1363
device_tree::assign_phandles(node_ptr n, uint32_t &next)
usr.bin/dtc/fdt.cc
1367
assign_phandle(n, next);
usr.bin/dtc/fdt.cc
1372
assign_phandles(c, next);
usr.bin/dtc/fdt.cc
1446
node_ptr next;
usr.bin/dtc/fdt.cc
1453
next = c;
usr.bin/dtc/fdt.cc
1473
target = next;
usr.bin/dtc/fdt.hh
881
property_ptr assign_phandle(node_ptr n, uint32_t &next);
usr.bin/dtc/fdt.hh
887
void assign_phandles(node_ptr n, uint32_t &next);
usr.bin/du/du.c
342
struct links_entry *next;
usr.bin/du/du.c
380
free_list = le->next;
usr.bin/du/du.c
394
buckets[i] = le->next;
usr.bin/du/du.c
402
le->next = new_buckets[hash];
usr.bin/du/du.c
415
for (le = buckets[hash]; le != NULL; le = le->next) {
usr.bin/du/du.c
423
le->previous->next = le->next;
usr.bin/du/du.c
424
if (le->next != NULL)
usr.bin/du/du.c
425
le->next->previous = le->previous;
usr.bin/du/du.c
427
buckets[hash] = le->next;
usr.bin/du/du.c
433
le->next = free_list;
usr.bin/du/du.c
448
free_list = le->next;
usr.bin/du/du.c
461
le->next = buckets[hash];
usr.bin/du/du.c
508
SLIST_INSERT_HEAD(&ignores, ign, next);
usr.bin/du/du.c
518
SLIST_REMOVE_HEAD(&ignores, next);
usr.bin/du/du.c
531
SLIST_FOREACH(ign, &ignores, next) {
usr.bin/du/du.c
64
SLIST_ENTRY(ignentry) next;
usr.bin/find/find.c
116
new->next = plan;
usr.bin/find/find.c
120
tail->next = new;
usr.bin/find/find.c
124
tail->next = new;
usr.bin/find/find.c
236
for (p = plan; p && (p->execute)(p, entry); p = p->next);
usr.bin/find/find.c
95
tail->next = new;
usr.bin/find/find.h
105
struct _plandata *next; /* next node */
usr.bin/find/function.c
1875
p && (state = (p->execute)(p, entry)); p = p->next);
usr.bin/find/function.c
1922
p && (state = (p->execute)(p, entry)); p = p->next);
usr.bin/find/function.c
1941
p && (state = (p->execute)(p, entry)); p = p->next);
usr.bin/find/function.c
1947
p && (state = (p->execute)(p, entry)); p = p->next);
usr.bin/find/function.c
95
new->next = NULL;
usr.bin/find/operator.c
106
tail = subplan = next;
usr.bin/find/operator.c
108
tail->next = next;
usr.bin/find/operator.c
109
tail = next;
usr.bin/find/operator.c
111
tail->next = NULL;
usr.bin/find/operator.c
146
tail->next = expr;
usr.bin/find/operator.c
149
tail->next = NULL;
usr.bin/find/operator.c
161
PLAN *next; /* next node being processed */
usr.bin/find/operator.c
168
while ((next = yanknode(&plan))) {
usr.bin/find/operator.c
173
if (next->execute == f_expr)
usr.bin/find/operator.c
174
next->p_data[0] = not_squish(next->p_data[0]);
usr.bin/find/operator.c
181
if (next->execute == f_not) {
usr.bin/find/operator.c
200
next = node;
usr.bin/find/operator.c
202
next->p_data[0] = node;
usr.bin/find/operator.c
207
tail = result = next;
usr.bin/find/operator.c
209
tail->next = next;
usr.bin/find/operator.c
210
tail = next;
usr.bin/find/operator.c
212
tail->next = NULL;
usr.bin/find/operator.c
224
PLAN *next; /* next node being processed */
usr.bin/find/operator.c
228
tail = result = next = NULL;
usr.bin/find/operator.c
230
while ((next = yanknode(&plan)) != NULL) {
usr.bin/find/operator.c
235
if (next->execute == f_expr)
usr.bin/find/operator.c
236
next->p_data[0] = or_squish(next->p_data[0]);
usr.bin/find/operator.c
239
if (next->execute == f_not)
usr.bin/find/operator.c
240
next->p_data[0] = or_squish(next->p_data[0]);
usr.bin/find/operator.c
247
if (next->execute == f_or) {
usr.bin/find/operator.c
250
next->p_data[0] = result;
usr.bin/find/operator.c
251
next->p_data[1] = or_squish(plan);
usr.bin/find/operator.c
252
if (next->p_data[1] == NULL)
usr.bin/find/operator.c
254
return (next);
usr.bin/find/operator.c
259
tail = result = next;
usr.bin/find/operator.c
261
tail->next = next;
usr.bin/find/operator.c
262
tail = next;
usr.bin/find/operator.c
264
tail->next = NULL;
usr.bin/find/operator.c
58
(*planp) = (*planp)->next;
usr.bin/find/operator.c
59
node->next = NULL;
usr.bin/find/operator.c
72
PLAN *next; /* temp node holding subexpression results */
usr.bin/find/operator.c
89
if ((next = yankexpr(planp)) == NULL)
usr.bin/find/operator.c
98
if (next->execute == f_closeparen) {
usr.bin/finger/finger.h
55
struct where *next; /* next place user is or has been */
usr.bin/finger/lprint.c
163
for (w = pn->whead, maxlen = -1; w != NULL; w = w->next)
usr.bin/finger/lprint.c
167
for (w = pn->whead; w != NULL; w = w->next) {
usr.bin/finger/sprint.c
94
for (w = pn->whead; w != NULL; w = w->next) {
usr.bin/finger/util.c
110
for (; !doit && w != NULL; w = w->next)
usr.bin/finger/util.c
119
for (w = pn->whead; doit && w != NULL; w = w->next)
usr.bin/finger/util.c
225
pn->wtail->next = w;
usr.bin/finger/util.c
228
w->next = NULL;
usr.bin/fortune/fortune/fortune.c
1010
for (fp = parent->child; choice--; fp = fp->next)
usr.bin/fortune/fortune/fortune.c
1021
fp = fp->next) {
usr.bin/fortune/fortune/fortune.c
1047
fp = fp->next;
usr.bin/fortune/fortune/fortune.c
1144
for (child = fp->child; child != NULL; child = child->next) {
usr.bin/fortune/fortune/fortune.c
1209
list = list->next;
usr.bin/fortune/fortune/fortune.c
1285
for (fp = list; fp != NULL; fp = fp->next) {
usr.bin/fortune/fortune/fortune.c
1312
for (fp = list; fp != NULL; fp = fp->next) {
usr.bin/fortune/fortune/fortune.c
564
(*tail)->next = fp;
usr.bin/fortune/fortune/fortune.c
570
fp->next = *head;
usr.bin/fortune/fortune/fortune.c
595
fp->next = NULL;
usr.bin/fortune/fortune/fortune.c
659
scene->next = obscene;
usr.bin/fortune/fortune/fortune.c
660
obscene->next = NULL;
usr.bin/fortune/fortune/fortune.c
83
struct fd *next, *prev;
usr.bin/fortune/fortune/fortune.c
942
if (File_list->next == NULL || File_list->percent == NO_PROB)
usr.bin/fortune/fortune/fortune.c
947
for (fp = File_list; fp->percent != NO_PROB; fp = fp->next) {
usr.bin/fortune/fortune/fortune.c
964
if (fp->next != NULL) {
usr.bin/fortune/fortune/fortune.c
971
fp = fp->next;
usr.bin/fstat/fstat.c
227
STAILQ_FOREACH(fst, head, next)
usr.bin/fstat/fstat.c
252
for (d = devs; d != NULL; d = d->next)
usr.bin/fstat/fstat.c
640
cur->next = devs;
usr.bin/fstat/fstat.c
72
struct devs *next;
usr.bin/fstat/fuser.c
250
STAILQ_FOREACH(consumer, &reqfiles[i].consumers, next) {
usr.bin/fstat/fuser.c
286
STAILQ_FOREACH(fst, head, next) {
usr.bin/fstat/fuser.c
314
STAILQ_FOREACH(cons, &reqfiles[i].consumers, next)
usr.bin/fstat/fuser.c
335
STAILQ_INSERT_TAIL(&reqfiles[i].consumers, cons, next);
usr.bin/fstat/fuser.c
89
STAILQ_ENTRY(consumer) next;
usr.bin/gcore/elfcore.c
331
for (entry = map; entry != NULL; entry = entry->next)
usr.bin/gcore/elfcore.c
559
struct map_entry *next;
usr.bin/gcore/elfcore.c
562
next = map->next;
usr.bin/gcore/elfcore.c
564
map = next;
usr.bin/gcore/elfcore.c
619
linkp = &ent->next;
usr.bin/gcore/elfcore.c
64
struct map_entry *next;
usr.bin/gprof/arcs.c
501
clp = clp -> next;
usr.bin/gprof/arcs.c
569
for ( clp = cyclehead ; clp ; clp = clp -> next ) {
usr.bin/gprof/arcs.c
608
clp -> next = cyclehead;
usr.bin/gprof/arcs.c
724
prev = &clp -> next;
usr.bin/gprof/arcs.c
725
clp = clp -> next;
usr.bin/gprof/arcs.c
731
*prev = clp -> next;
usr.bin/gprof/arcs.c
732
clp = clp -> next;
usr.bin/gprof/gprof.h
152
struct cl *next; /* next member of list */
usr.bin/gprof/gprof.h
236
struct stringlist *next;
usr.bin/gprof/printlist.c
65
slp -> next = listp -> next;
usr.bin/gprof/printlist.c
67
listp -> next = slp;
usr.bin/gprof/printlist.c
75
for ( slp = listp -> next ; slp ; slp = slp -> next ) {
usr.bin/grdc/grdc.c
192
new[5] = (new[5]&~mask) | (next[k]&mask);
usr.bin/grdc/grdc.c
194
new[k] = (new[k]&~mask) | (next[k]&mask);
usr.bin/grdc/grdc.c
195
next[k] = 0;
usr.bin/grdc/grdc.c
256
next[i] |= ((disp[t]>>(4-i)*3)&07)<<n;
usr.bin/grdc/grdc.c
257
mask |= (next[i]^old[i])&m;
usr.bin/grdc/grdc.c
38
static long old[6], next[6], new[6], mask;
usr.bin/hexdump/display.c
257
if (!length || (ateof && !next((char **)NULL))) {
usr.bin/hexdump/hexdump.c
78
(void)next(argv);
usr.bin/hexdump/hexdump.h
98
int next(char **);
usr.bin/ktrdump/ktrdump.c
296
next: if ((c = *p++) == '\0')
usr.bin/ktrdump/ktrdump.c
308
goto next;
usr.bin/last/last.c
428
for (step = arglist; step; step = step->next)
usr.bin/last/last.c
462
cur->next = arglist;
usr.bin/last/last.c
66
struct arg *next; /* linked list pointer */
usr.bin/m4/gnum4.c
131
for (pe = first; pe; pe = pe->next) {
usr.bin/m4/gnum4.c
66
struct path_entry *next;
usr.bin/m4/gnum4.c
82
n->next = 0;
usr.bin/m4/gnum4.c
94
last->next = n;
usr.bin/m4/look.c
165
n->d->next = NULL;
usr.bin/m4/look.c
178
d->next = n->d;
usr.bin/m4/look.c
192
r2 = r->next;
usr.bin/m4/look.c
209
n->d = r->next;
usr.bin/m4/look.c
247
n->d->next = NULL;
usr.bin/m4/mdef.h
136
struct macro_definition *next;
usr.bin/mail/cmdtab.c
45
{ "next", next, NDMLIST, 0, MMNDEL },
usr.bin/mail/extern.h
175
int next(void *);
usr.bin/mkimg/ebr.c
102
next->block - nsecs);
usr.bin/mkimg/ebr.c
105
next->block + size - 1);
usr.bin/mkimg/ebr.c
106
le32enc(&dp->dp_start, next->block - nsecs);
usr.bin/mkimg/ebr.c
74
struct part *part, *next;
usr.bin/mkimg/ebr.c
97
next = TAILQ_NEXT(part, link);
usr.bin/mkimg/ebr.c
98
if (next != NULL) {
usr.bin/mkimg/ebr.c
99
size = round_track(next->size);
usr.bin/mkimg/format.c
44
return ((f == NULL) ? first : f->next);
usr.bin/mkimg/format.c
51
f->next = first;
usr.bin/mkimg/format.h
33
struct mkimg_format *next;
usr.bin/mkimg/scheme.c
90
return ((s == NULL) ? first : s->next);
usr.bin/mkimg/scheme.c
96
s->next = first;
usr.bin/mkimg/scheme.h
68
struct mkimg_scheme *next;
usr.bin/mkuzip/mkuz_blockcache.c
109
for (bcep = &blkcache.first[h]; bcep != NULL; bcep = bcep->next) {
usr.bin/mkuzip/mkuz_blockcache.c
141
bcep->next = blkcache.first[h].next;
usr.bin/mkuzip/mkuz_blockcache.c
142
blkcache.first[h].next = bcep;
usr.bin/mkuzip/mkuz_blockcache.c
44
struct mkuz_blkcache_itm *next;
usr.bin/msgs/msgs.c
137
static int next(char *);
usr.bin/msgs/msgs.c
562
msg = next(in);
usr.bin/netstat/mroute6.c
196
rtep = rte.next;
usr.bin/netstat/netgraph.c
66
struct ngpcb *this, *next;
usr.bin/netstat/netgraph.c
85
for (; this != NULL; this = next) {
usr.bin/netstat/netgraph.c
93
next = LIST_NEXT(&ngpcb, socks);
usr.bin/netstat/nhgrp.c
197
char *buf, *next, *lim;
usr.bin/netstat/nhgrp.c
226
for (next = buf; next < lim; next += rtm->rtm_msglen) {
usr.bin/netstat/nhgrp.c
227
rtm = (struct rt_msghdr *)next;
usr.bin/netstat/nhops.c
341
char *buf, *next, *lim;
usr.bin/netstat/nhops.c
370
for (next = buf; next < lim; next += rtm->rtm_msglen) {
usr.bin/netstat/nhops.c
371
rtm = (struct rt_msghdr *)next;
usr.bin/netstat/route.c
247
char *buf, *next, *lim;
usr.bin/netstat/route.c
272
for (next = buf; next < lim; next += rtm->rtm_msglen) {
usr.bin/netstat/route.c
273
rtm = (struct rt_msghdr *)next;
usr.bin/procstat/procstat_advlock.c
62
STAILQ_FOREACH(a, advl, next) {
usr.bin/procstat/procstat_files.c
317
STAILQ_FOREACH(fst, head, next) {
usr.bin/procstat/procstat_files.c
343
STAILQ_FOREACH(fst, head, next) {
usr.bin/procstat/procstat_kqueue.c
311
STAILQ_FOREACH(f, fl, next) {
usr.bin/procstat/procstat_pwdx.c
58
STAILQ_FOREACH(fst, head, next) {
usr.bin/quota/quota.c
282
for (qup = quplist; qup; qup = qup->next) {
usr.bin/quota/quota.c
532
quptail->next = qup;
usr.bin/quota/quota.c
534
quptail->next = 0;
usr.bin/quota/quota.c
69
struct quotause *next;
usr.bin/random/randomize_fd.c
214
for (j = 0, prev = n = rand_root; n != NULL; j++, prev = n, n = n->next) {
usr.bin/random/randomize_fd.c
227
rand_root = n->next;
usr.bin/random/randomize_fd.c
231
prev->next = n->next;
usr.bin/random/randomize_fd.c
56
n->next = NULL;
usr.bin/random/randomize_fd.c
75
if (n->next != NULL)
usr.bin/random/randomize_fd.c
76
rand_node_free_rec(n->next);
usr.bin/random/randomize_fd.c
88
rand_tail->next = n;
usr.bin/random/randomize_fd.h
38
struct rand_node *next;
usr.bin/rpcgen/rpc_clntout.c
136
for (l = proc->args.decls; l != NULL; l = l->next) {
usr.bin/rpcgen/rpc_clntout.c
216
for (l = proc->args.decls; l != NULL; l = l->next) {
usr.bin/rpcgen/rpc_clntout.c
60
for (l = defined; l != NULL; l = l->next) {
usr.bin/rpcgen/rpc_clntout.c
74
for (vp = def->def.pr.versions; vp != NULL; vp = vp->next) {
usr.bin/rpcgen/rpc_clntout.c
75
for (proc = vp->procs; proc != NULL; proc = proc->next) {
usr.bin/rpcgen/rpc_cout.c
292
for (vlist = def->def.pr.versions; vlist != NULL; vlist = vlist->next)
usr.bin/rpcgen/rpc_cout.c
293
for (plist = vlist->procs; plist != NULL; plist = plist->next) {
usr.bin/rpcgen/rpc_cout.c
298
dl = dl->next)
usr.bin/rpcgen/rpc_cout.c
317
for (cl = def->def.un.cases; cl != NULL; cl = cl->next) {
usr.bin/rpcgen/rpc_cout.c
390
for (dl = def->def.st.decls; dl != NULL; dl = dl->next) { /* xxx */
usr.bin/rpcgen/rpc_cout.c
438
cur = cur->next;
usr.bin/rpcgen/rpc_cout.c
465
cur = cur->next;
usr.bin/rpcgen/rpc_cout.c
473
cur = cur->next;
usr.bin/rpcgen/rpc_cout.c
493
cur = cur->next;
usr.bin/rpcgen/rpc_cout.c
514
cur = cur->next;
usr.bin/rpcgen/rpc_cout.c
521
cur = cur->next;
usr.bin/rpcgen/rpc_cout.c
538
for (dl = def->def.st.decls; dl != NULL; dl = dl->next)
usr.bin/rpcgen/rpc_cout.c
543
for (dl = def->def.st.decls; dl != NULL; dl = dl->next)
usr.bin/rpcgen/rpc_cout.c
555
for (dl = def->def.st.decls; dl != NULL; dl = dl->next)
usr.bin/rpcgen/rpc_cout.c
577
for (dl = def->def.st.decls; dl != NULL; dl = dl->next)
usr.bin/rpcgen/rpc_cout.c
593
for (dl = def->def.st.decls; dl != NULL; dl = dl->next)
usr.bin/rpcgen/rpc_hout.c
119
xdrptr->next = NULL;
usr.bin/rpcgen/rpc_hout.c
125
xdrfunc_tail->next = xdrptr;
usr.bin/rpcgen/rpc_hout.c
158
for (vers = def->def.pr.versions; vers != NULL; vers = vers->next) {
usr.bin/rpcgen/rpc_hout.c
160
plist = plist->next) {
usr.bin/rpcgen/rpc_hout.c
168
l != NULL; l = l->next) {
usr.bin/rpcgen/rpc_hout.c
189
for (l = def->def.st.decls; l != NULL; l = l->next) {
usr.bin/rpcgen/rpc_hout.c
211
for (l = def->def.un.cases; l != NULL; l = l->next) {
usr.bin/rpcgen/rpc_hout.c
242
for (vers = start; vers != NULL; vers = vers->next) {
usr.bin/rpcgen/rpc_hout.c
243
for (proc = vers->procs; proc != NULL; proc = proc->next) {
usr.bin/rpcgen/rpc_hout.c
282
for (vers = def->def.pr.versions; vers != NULL; vers = vers->next) {
usr.bin/rpcgen/rpc_hout.c
299
for (proc = vers->procs; proc != NULL; proc = proc->next) {
usr.bin/rpcgen/rpc_hout.c
346
for (dl = proc->args.decls; dl != NULL; dl = dl->next) {
usr.bin/rpcgen/rpc_hout.c
373
for (l = def->def.en.vals; l != NULL; l = l->next) {
usr.bin/rpcgen/rpc_hout.c
386
if (l->next)
usr.bin/rpcgen/rpc_hout.c
502
for (l = defined; l != NULL; l = l->next) {
usr.bin/rpcgen/rpc_main.c
615
for (l = defined; l != NULL; l = l->next) {
usr.bin/rpcgen/rpc_main.c
633
xdrfuncp = xdrfuncp->next;
usr.bin/rpcgen/rpc_parse.c
121
tailp = &decls->next;
usr.bin/rpcgen/rpc_parse.c
180
tailp = &decls->next;
usr.bin/rpcgen/rpc_parse.c
191
tailp = &decls->next;
usr.bin/rpcgen/rpc_parse.c
208
ptailp = &plist->next;
usr.bin/rpcgen/rpc_parse.c
213
vtailp = &vlist->next;
usr.bin/rpcgen/rpc_parse.c
220
plist = plist->next) {
usr.bin/rpcgen/rpc_parse.c
259
tailp = &elist->next;
usr.bin/rpcgen/rpc_parse.c
308
tailp = &cases->next;
usr.bin/rpcgen/rpc_parse.c
319
tailp = &cases->next;
usr.bin/rpcgen/rpc_parse.h
115
struct decl_list *next;
usr.bin/rpcgen/rpc_parse.h
128
struct case_list *next;
usr.bin/rpcgen/rpc_parse.h
153
struct proc_list *next;
usr.bin/rpcgen/rpc_parse.h
161
struct version_list *next;
usr.bin/rpcgen/rpc_parse.h
192
struct bas_type *next;
usr.bin/rpcgen/rpc_parse.h
95
struct enumval_list *next;
usr.bin/rpcgen/rpc_sample.c
110
for (l = proc->args.decls; l != NULL; l = l->next) {
usr.bin/rpcgen/rpc_sample.c
132
for (proc = vp->procs; proc != NULL; proc = proc->next) {
usr.bin/rpcgen/rpc_sample.c
159
for (l = proc->args.decls; l != NULL; l = l->next) {
usr.bin/rpcgen/rpc_sample.c
192
for (vp = def->def.pr.versions; vp != NULL; vp = vp->next) {
usr.bin/rpcgen/rpc_sample.c
193
for (proc = vp->procs; proc != NULL; proc = proc->next) {
usr.bin/rpcgen/rpc_sample.c
277
for (l = defined; l != NULL; l = l->next) {
usr.bin/rpcgen/rpc_sample.c
282
for (vp = def->def.pr.versions; vp != NULL; vp = vp->next) {
usr.bin/rpcgen/rpc_sample.c
67
for (vp = def->def.pr.versions; vp != NULL; vp = vp->next) {
usr.bin/rpcgen/rpc_sample.c
88
for (proc = vp->procs; proc != NULL; proc = proc->next) {
usr.bin/rpcgen/rpc_svcout.c
206
for (l = defined; l != NULL; l = l->next) {
usr.bin/rpcgen/rpc_svcout.c
211
for (vp = def->def.pr.versions; vp != NULL; vp = vp->next) {
usr.bin/rpcgen/rpc_svcout.c
241
for (l = defined; l != NULL; l = l->next) {
usr.bin/rpcgen/rpc_svcout.c
246
for (vp = def->def.pr.versions; vp != NULL; vp = vp->next) {
usr.bin/rpcgen/rpc_svcout.c
298
for (l = defined; l != NULL; l = l->next) {
usr.bin/rpcgen/rpc_svcout.c
306
for (l = defined; l != NULL; l = l->next) {
usr.bin/rpcgen/rpc_svcout.c
330
for (vp = def->def.pr.versions; vp != NULL; vp = vp->next) {
usr.bin/rpcgen/rpc_svcout.c
331
for (proc = vp->procs; proc != NULL; proc = proc->next) {
usr.bin/rpcgen/rpc_svcout.c
365
l = l->next)
usr.bin/rpcgen/rpc_svcout.c
383
for (vp = def->def.pr.versions; vp != NULL; vp = vp->next) {
usr.bin/rpcgen/rpc_svcout.c
397
for (proc = vp->procs; proc != NULL; proc = proc->next) {
usr.bin/rpcgen/rpc_svcout.c
425
for (proc = vp->procs; proc != NULL; proc = proc->next) {
usr.bin/rpcgen/rpc_svcout.c
470
for (proc = vp->procs; proc != NULL; proc = proc->next) {
usr.bin/rpcgen/rpc_svcout.c
567
for (; proc != NULL; proc = proc->next) {
usr.bin/rpcgen/rpc_svcout.c
627
for (l = defined; l != NULL; l = l->next) {
usr.bin/rpcgen/rpc_svcout.c
631
vp = vp->next) {
usr.bin/rpcgen/rpc_svcout.c
844
for (l = defined; l != NULL; l = l->next) {
usr.bin/rpcgen/rpc_svcout.c
849
for (vp = def->def.pr.versions; vp != NULL; vp = vp->next) {
usr.bin/rpcgen/rpc_svcout.c
991
for (l = defined; l != NULL; l = l->next) {
usr.bin/rpcgen/rpc_svcout.c
996
for (vp = def->def.pr.versions; vp != NULL; vp = vp->next) {
usr.bin/rpcgen/rpc_tblout.c
67
for (l = defined; l != NULL; l = l->next) {
usr.bin/rpcgen/rpc_tblout.c
85
for (vp = def->def.pr.versions; vp != NULL; vp = vp->next) {
usr.bin/rpcgen/rpc_tblout.c
98
for (proc = vp->procs; proc != NULL; proc = proc->next) {
usr.bin/rpcgen/rpc_util.c
106
for (l = lstp; *l != NULL; l = (list **) & (*l)->next);
usr.bin/rpcgen/rpc_util.c
109
lst->next = NULL;
usr.bin/rpcgen/rpc_util.c
436
ptr->next = NULL;
usr.bin/rpcgen/rpc_util.c
445
typ_list_t->next = ptr;
usr.bin/rpcgen/rpc_util.c
462
ptr = ptr->next;
usr.bin/rpcgen/rpc_util.c
89
for (; lst != NULL; lst = lst->next) {
usr.bin/rpcgen/rpc_util.h
73
struct list *next;
usr.bin/rpcgen/rpc_util.h
80
struct xdrfunc *next;
usr.bin/rpcinfo/rpcinfo.c
102
struct netidlist *next;
usr.bin/rpcinfo/rpcinfo.c
1039
pa = pa->next)
usr.bin/rpcinfo/rpcinfo.c
1046
pr = pr->next)
usr.bin/rpcinfo/rpcinfo.c
107
struct verslist *next;
usr.bin/rpcinfo/rpcinfo.c
1096
pa = pa->next)
usr.bin/rpcinfo/rpcinfo.c
1103
pr = pr->next)
usr.bin/rpcinfo/rpcinfo.c
114
struct rpcbdump_short *next;
usr.bin/rpcinfo/rpcinfo.c
1155
pa = pa->next)
usr.bin/rpcinfo/rpcinfo.c
1163
pr = pr->next)
usr.bin/rpcinfo/rpcinfo.c
1642
for (pr = infp->rmtinfo; pr; pr = pr->next) {
usr.bin/rpcinfo/rpcinfo.c
1663
for (al = infp->addrinfo; al; al = al->next) {
usr.bin/rpcinfo/rpcinfo.c
637
for (vl = rs->vlist; vl; vl = vl->next)
usr.bin/rpcinfo/rpcinfo.c
646
vl->next = rs->vlist;
usr.bin/rpcinfo/rpcinfo.c
656
for (nl = rs->nlist; nl; nl = nl->next)
usr.bin/rpcinfo/rpcinfo.c
665
nl->next = rs->nlist;
usr.bin/rpcinfo/rpcinfo.c
808
for (rs = rs_head; rs; rs = rs->next)
usr.bin/rpcinfo/rpcinfo.c
816
rs->next = NULL;
usr.bin/rpcinfo/rpcinfo.c
821
rs_tail->next = rs;
usr.bin/rpcinfo/rpcinfo.c
836
for (rs = rs_head; rs; rs = rs->next) {
usr.bin/rpcinfo/rpcinfo.c
840
for (vl = rs->vlist; vl; vl = vl->next) {
usr.bin/rpcinfo/rpcinfo.c
844
"%d%s", vl->vers, vl->next ? "," : "");
usr.bin/rpcinfo/rpcinfo.c
849
for (nl = rs->nlist; nl; nl = nl->next) {
usr.bin/rpcinfo/rpcinfo.c
851
if (nl->next)
usr.bin/rup/rup.c
61
struct host_list *next;
usr.bin/rup/rup.c
73
for (hp = hosts; hp != NULL; hp = hp->next) {
usr.bin/rup/rup.c
88
hp->next = hosts;
usr.bin/rusers/rusers.c
62
struct host_list *next;
usr.bin/rusers/rusers.c
74
for (hp = hosts; hp != NULL; hp = hp->next) {
usr.bin/rusers/rusers.c
89
hp->next = hosts;
usr.bin/sed/compile.c
1000
fixuplabel(cp->u.c, cp->next);
usr.bin/sed/compile.c
1059
struct labhash *lh, *next;
usr.bin/sed/compile.c
1063
for (lh = labels[i]; lh != NULL; lh = next) {
usr.bin/sed/compile.c
1064
next = lh->lh_next;
usr.bin/sed/compile.c
181
link = &cmd->next;
usr.bin/sed/compile.c
230
cmd->next = stack;
usr.bin/sed/compile.c
245
stack = cmd2->next;
usr.bin/sed/compile.c
246
cmd2->next = cmd;
usr.bin/sed/compile.c
253
link = &cmd->next;
usr.bin/sed/compile.c
343
link = &cmd->next;
usr.bin/sed/compile.c
353
link = &cmd->next;
usr.bin/sed/compile.c
981
for (; cp != end; cp = cp->next)
usr.bin/sed/defs.h
92
struct s_command *next; /* Pointer to next command */
usr.bin/sed/main.c
263
script = script->next;
usr.bin/sed/main.c
283
script = script->next;
usr.bin/sed/main.c
286
script = script->next;
usr.bin/sed/main.c
385
files = files->next;
usr.bin/sed/main.c
478
cu->next = NULL;
usr.bin/sed/main.c
480
cu_nextp = &cu->next;
usr.bin/sed/main.c
493
fp->next = NULL;
usr.bin/sed/main.c
496
fl_nextp = &fp->next;
usr.bin/sed/main.c
507
while ((file = file->next) != NULL) {
usr.bin/sed/main.c
62
struct s_compunit *next;
usr.bin/sed/main.c
78
struct s_flist *next;
usr.bin/sed/process.c
111
cp = cp->next;
usr.bin/sed/process.c
273
cp = cp->next;
usr.bin/sed/process.c
364
for (cp = prog; cp; cp = cp->code == '{' ? cp->u.c : cp->next)
usr.bin/sed/process.c
768
for (; cp != end; cp = cp->next)
usr.bin/sed/process.c
781
cfclose(cp->u.c, cp->next);
usr.bin/showmount/showmount.c
303
goto next;
usr.bin/showmount/showmount.c
311
goto next;
usr.bin/showmount/showmount.c
318
goto next;
usr.bin/showmount/showmount.c
332
next:
usr.bin/sockstat/main.c
1001
for (addr = s->laddr; addr != NULL; addr = addr->next) {
usr.bin/sockstat/main.c
1009
for (addr = s->faddr; addr != NULL; addr = addr->next) {
usr.bin/sockstat/main.c
1317
laddr = laddr->next;
usr.bin/sockstat/main.c
1319
faddr = faddr->next;
usr.bin/sockstat/main.c
1567
laddr = laddr->next;
usr.bin/sockstat/main.c
1569
faddr = faddr->next;
usr.bin/sockstat/main.c
182
struct addr *next;
usr.bin/sockstat/main.c
343
struct addr *cur, *next;
usr.bin/sockstat/main.c
347
next = cur->next;
usr.bin/sockstat/main.c
349
cur = next;
usr.bin/sockstat/main.c
353
next = cur->next;
usr.bin/sockstat/main.c
355
cur = next;
usr.bin/sockstat/main.c
451
laddr->next = NULL;
usr.bin/sockstat/main.c
455
prev_laddr->next = laddr;
usr.bin/sockstat/main.c
555
laddr->next = NULL;
usr.bin/sockstat/main.c
559
prev_laddr->next = laddr;
usr.bin/sockstat/main.c
602
faddr->next = NULL;
usr.bin/sockstat/main.c
606
prev_faddr->next = faddr;
usr.bin/sockstat/main.c
744
laddr->next = NULL;
usr.bin/sockstat/main.c
745
faddr->next = NULL;
usr.bin/sockstat/main.c
837
laddr->next = NULL;
usr.bin/sockstat/main.c
838
faddr->next = NULL;
usr.bin/sort/radixsort.c
134
ls->next = g_ls;
usr.bin/sort/radixsort.c
173
g_ls = g_ls->next;
usr.bin/sort/radixsort.c
198
g_ls = g_ls->next;
usr.bin/sort/radixsort.c
78
struct level_stack *next;
usr.bin/systat/proc.c
152
swobj[nswobj].next = kvo[i].kvo_backing_obj;
usr.bin/systat/proc.c
201
vmobj = vm->next;
usr.bin/systat/proc.c
49
uint64_t next;
usr.bin/tip/tip/remote.c
201
static char *next;
usr.bin/tip/tip/remote.c
210
next = DV;
usr.bin/tip/tip/remote.c
217
if (next == NOSTR)
usr.bin/tip/tip/remote.c
219
if ((cp = strchr(next, ',')) == NULL) {
usr.bin/tip/tip/remote.c
220
DV = next;
usr.bin/tip/tip/remote.c
221
next = NOSTR;
usr.bin/tip/tip/remote.c
224
DV = next;
usr.bin/tip/tip/remote.c
225
next = cp;
usr.bin/tip/tip/tip.c
488
goto next;
usr.bin/tip/tip/tip.c
496
next:
usr.bin/tr/extern.h
49
wint_t next(STR *);
usr.bin/tr/str.c
105
return (next(s));
usr.bin/tr/str.c
115
return (next(s));
usr.bin/tr/str.c
122
return (next(s));
usr.bin/tr/str.c
78
return (next(s));
usr.bin/tr/str.c
93
return (next(s));
usr.bin/tr/str.c
98
return (next(s));
usr.bin/tr/tr.c
199
if (!next(&s2))
usr.bin/tr/tr.c
209
while (next(&s1)) {
usr.bin/tr/tr.c
219
if (!next(&s1))
usr.bin/tr/tr.c
224
if (!next(&s2))
usr.bin/tr/tr.c
236
if (!next(&s1))
usr.bin/tr/tr.c
241
if (!next(&s2))
usr.bin/tr/tr.c
253
if (!next(&s1))
usr.bin/tr/tr.c
258
if (!next(&s2))
usr.bin/tr/tr.c
270
if (!next(&s1))
usr.bin/tr/tr.c
275
if (!next(&s2))
usr.bin/tr/tr.c
284
(void)next(&s2);
usr.bin/tr/tr.c
305
if (next(&s2)) {
usr.bin/tr/tr.c
331
(void)next(&s2);
usr.bin/tr/tr.c
375
while (next(str))
usr.bin/tsort/tsort.c
291
NODE *n, *next;
usr.bin/tsort/tsort.c
301
for (cnt = 0, n = graph; n != NULL; n = next) {
usr.bin/tsort/tsort.c
302
next = n->n_next;
usr.bin/usbhidaction/usbhidaction.c
201
for (cmd = commands; cmd; cmd = cmd->next) {
usr.bin/usbhidaction/usbhidaction.c
220
goto next;
usr.bin/usbhidaction/usbhidaction.c
225
goto next;
usr.bin/usbhidaction/usbhidaction.c
232
goto next;
usr.bin/usbhidaction/usbhidaction.c
234
next:
usr.bin/usbhidaction/usbhidaction.c
328
cmd->next = cmds;
usr.bin/usbhidaction/usbhidaction.c
512
struct command *next;
usr.bin/usbhidaction/usbhidaction.c
515
next = cmd->next;
usr.bin/usbhidaction/usbhidaction.c
517
cmd = next;
usr.bin/usbhidaction/usbhidaction.c
56
struct command *next;
usr.bin/usbhidctl/usbhid.c
111
pnext = &var->next;
usr.bin/usbhidctl/usbhid.c
132
pnext = &var->next;
usr.bin/usbhidctl/usbhid.c
319
for (var = vars; var; var = var->next) {
usr.bin/usbhidctl/usbhid.c
358
for (var = vars; var; var = var->next) {
usr.bin/usbhidctl/usbhid.c
389
for (var = vars; var; var = var->next) {
usr.bin/usbhidctl/usbhid.c
421
for (var = vars; var; var = var->next) {
usr.bin/usbhidctl/usbhid.c
51
struct variable *next;
usr.bin/w/w.c
233
nextp = &ep->next;
usr.bin/w/w.c
350
for (ep = ehead; ep != NULL; ep = ep->next) {
usr.bin/w/w.c
386
for (ep = ehead; ep != NULL; ep = ep->next) {
usr.bin/w/w.c
405
nextp = &(*nextp)->next)
usr.bin/w/w.c
408
from = from->next;
usr.bin/w/w.c
409
save->next = *nextp;
usr.bin/w/w.c
417
for (ep = ehead; ep != NULL; ep = ep->next) {
usr.bin/w/w.c
98
struct entry *next;
usr.bin/wall/wall.c
107
g->next = grouplist;
usr.bin/wall/wall.c
121
for (g = grouplist; g; g = g->next) {
usr.bin/wall/wall.c
144
for (g = grouplist; g && ingroup == 0; g = g->next) {
usr.bin/wall/wall.c
63
struct wallgroup *next;
usr.bin/ypwhich/ypwhich.c
265
y = ypml->next;
usr.sbin/ac/ac.c
123
SLIST_INSERT_HEAD(&Ttys, tp, next);
usr.sbin/ac/ac.c
135
SLIST_FOREACH(tp, &Ttys, next) {
usr.sbin/ac/ac.c
158
SLIST_FOREACH(up, &CurUtmpx, next)
usr.sbin/ac/ac.c
177
SLIST_FOREACH(up, &Users, next) {
usr.sbin/ac/ac.c
196
SLIST_INSERT_HEAD(&Users, up, next);
usr.sbin/ac/ac.c
198
SLIST_INSERT_AFTER(aup, up, next);
usr.sbin/ac/ac.c
272
SLIST_FOREACH(lp, &Users, next)
usr.sbin/ac/ac.c
295
SLIST_FOREACH(lp, &CurUtmpx, next) {
usr.sbin/ac/ac.c
301
SLIST_FOREACH(up, &Users, next) {
usr.sbin/ac/ac.c
331
lp = SLIST_NEXT(lp, next);
usr.sbin/ac/ac.c
333
SLIST_REMOVE_HEAD(&CurUtmpx, next);
usr.sbin/ac/ac.c
335
SLIST_REMOVE_AFTER(lp2, next);
usr.sbin/ac/ac.c
339
lp = SLIST_NEXT(lp, next);
usr.sbin/ac/ac.c
393
SLIST_INSERT_HEAD(&CurUtmpx, lp, next);
usr.sbin/ac/ac.c
451
SLIST_FOREACH(lp, &CurUtmpx, next)
usr.sbin/ac/ac.c
50
SLIST_ENTRY(utmpx_entry) next;
usr.sbin/ac/ac.c
63
SLIST_ENTRY(user_entry) next;
usr.sbin/ac/ac.c
72
SLIST_ENTRY(tty_entry) next;
usr.sbin/apmd/apmd.c
143
newone->evcmd.next = NULL;
usr.sbin/apmd/apmd.c
192
for ( ;p; p = p->next) {
usr.sbin/apmd/apmd.c
194
if ((q->next = p->op->clone(p)) == NULL)
usr.sbin/apmd/apmd.c
196
q = q->next;
usr.sbin/apmd/apmd.c
198
q->next = NULL;
usr.sbin/apmd/apmd.c
199
return dummy.next;
usr.sbin/apmd/apmd.c
206
q = p->next;
usr.sbin/apmd/apmd.c
235
we->next = battery_watch_list; /* starts at NULL */
usr.sbin/apmd/apmd.c
266
while (p->next != NULL)
usr.sbin/apmd/apmd.c
267
p = p->next;
usr.sbin/apmd/apmd.c
268
p->next = q;
usr.sbin/apmd/apmd.c
286
for (; p; p = p->next) {
usr.sbin/apmd/apmd.c
360
for ( ; p ; p = p->next) {
usr.sbin/apmd/apmd.c
369
for (q = battery_watch_list ; q != NULL ; q = q -> next) {
usr.sbin/apmd/apmd.c
376
for ( p = q -> cmdlist; p ; p = p->next) {
usr.sbin/apmd/apmd.c
409
for( ; battery_watch_list; battery_watch_list = battery_watch_list -> next) {
usr.sbin/apmd/apmd.c
411
q = battery_watch_list->next;
usr.sbin/apmd/apmd.c
551
for (p = battery_watch_list ; p!=NULL ; p = p -> next)
usr.sbin/apmd/apmd.c
554
for (p = battery_watch_list ; p != NULL ; p = p -> next)
usr.sbin/apmd/apmd.c
95
newone->next = NULL;
usr.sbin/apmd/apmd.h
62
struct event_cmd * next;
usr.sbin/apmd/apmd.h
82
struct battery_watch_event *next;
usr.sbin/apmd/apmdparse.y
153
while (p->next != NULL)
usr.sbin/apmd/apmdparse.y
154
p = p->next;
usr.sbin/apmd/apmdparse.y
155
p->next = $2;
usr.sbin/apmd/apmdparse.y
173
cmd->evcmd.next = NULL;
usr.sbin/apmd/apmdparse.y
187
cmd->evcmd.next = NULL;
usr.sbin/arp/arp.c
540
char *lim, *buf, *next;
usr.sbin/arp/arp.c
573
for (next = buf; next < lim; next += rtm->rtm_msglen) {
usr.sbin/arp/arp.c
574
rtm = (struct rt_msghdr *)next;
usr.sbin/autofs/popen.c
124
SLIST_FOREACH(p, &pidlist, next)
usr.sbin/autofs/popen.c
140
SLIST_INSERT_HEAD(&pidlist, cur, next);
usr.sbin/autofs/popen.c
155
SLIST_FOREACH(cur, &pidlist, next) {
usr.sbin/autofs/popen.c
164
SLIST_REMOVE_HEAD(&pidlist, next);
usr.sbin/autofs/popen.c
166
SLIST_REMOVE_AFTER(last, next);
usr.sbin/autofs/popen.c
59
SLIST_ENTRY(pid) next;
usr.sbin/bhyve/amd64/ps2kbd.c
443
char *buf, *next, *line;
usr.sbin/bhyve/amd64/ps2kbd.c
470
next = buf;
usr.sbin/bhyve/amd64/ps2kbd.c
471
while ((line = strsep(&next, "\n")) != NULL) {
usr.sbin/bhyve/pci_ahci.c
2399
char *next, *next2, *str, *tofree;
usr.sbin/bhyve/pci_ahci.c
2408
for (p = 0; p < MAX_PORTS && str != NULL; p++, str = next) {
usr.sbin/bhyve/pci_ahci.c
2420
next = strstr(str, ",hd:");
usr.sbin/bhyve/pci_ahci.c
2422
if (next == NULL || (next2 != NULL && next2 < next))
usr.sbin/bhyve/pci_ahci.c
2423
next = next2;
usr.sbin/bhyve/pci_ahci.c
2424
if (next != NULL) {
usr.sbin/bhyve/pci_ahci.c
2425
next[0] = 0;
usr.sbin/bhyve/pci_ahci.c
2426
next++;
usr.sbin/bhyve/pci_xhci.c
606
struct xhci_trb *next;
usr.sbin/bhyve/pci_xhci.c
614
next = XHCI_GADDR(sc, curtrb->qwTrb0 & ~0xFUL);
usr.sbin/bhyve/pci_xhci.c
619
next = curtrb + 1;
usr.sbin/bhyve/pci_xhci.c
622
return (next);
usr.sbin/bhyve/virtio.c
275
u_int idx, next;
usr.sbin/bhyve/virtio.c
320
req.idx = next = vq->vq_avail->ring[idx & (vq->vq_qsize - 1)];
usr.sbin/bhyve/virtio.c
322
for (i = 0; i < VQ_MAX_DESCRIPTORS; next = vdir->next) {
usr.sbin/bhyve/virtio.c
323
if (next >= vq->vq_qsize) {
usr.sbin/bhyve/virtio.c
327
name, next);
usr.sbin/bhyve/virtio.c
330
vdir = &vq->vq_desc[next];
usr.sbin/bhyve/virtio.c
359
next = 0;
usr.sbin/bhyve/virtio.c
361
vp = &vindir[next];
usr.sbin/bhyve/virtio.c
374
next = vp->next;
usr.sbin/bhyve/virtio.c
375
if (next >= n_indir) {
usr.sbin/bhyve/virtio.c
379
name, (u_int)next, n_indir);
usr.sbin/bhyveload/bhyveload.c
569
SLIST_ENTRY(env) next;
usr.sbin/bhyveload/bhyveload.c
585
SLIST_INSERT_HEAD(&envhead, env, next);
usr.sbin/bhyveload/bhyveload.c
595
SLIST_FOREACH(env, &envhead, next) {
usr.sbin/bluetooth/bthidd/bthid_config.h
61
LIST_ENTRY(hid_device) next; /* link to the next */
usr.sbin/bluetooth/bthidd/bthidd.h
78
LIST_ENTRY(bthid_session) next; /* link to next */
usr.sbin/bluetooth/bthidd/parser.y
122
LIST_INSERT_HEAD(&hid_devices,hid_device,next);
usr.sbin/bluetooth/bthidd/parser.y
316
LIST_REMOVE(d, next);
usr.sbin/bluetooth/bthidd/parser.y
327
LIST_FOREACH(d, &hid_devices, next)
usr.sbin/bluetooth/bthidd/parser.y
338
return ((d == NULL)? LIST_FIRST(&hid_devices) : LIST_NEXT(d, next));
usr.sbin/bluetooth/bthidd/parser.y
550
LIST_FOREACH(d, &hid_devices, next)
usr.sbin/bluetooth/bthidd/session.c
166
LIST_FOREACH(s, &srv->sessions, next)
usr.sbin/bluetooth/bthidd/session.c
185
LIST_FOREACH(s, &srv->sessions, next)
usr.sbin/bluetooth/bthidd/session.c
203
LIST_REMOVE(s, next);
usr.sbin/bluetooth/bthidd/session.c
91
LIST_INSERT_HEAD(&srv->sessions, s, next);
usr.sbin/bluetooth/btpand/bnep.c
219
STAILQ_INSERT_TAIL(&pkt->extlist, eh, next);
usr.sbin/bluetooth/btpand/bnep.c
680
STAILQ_FOREACH(eh, &pkt->extlist, next) {
usr.sbin/bluetooth/btpand/btpand.h
113
LIST_ENTRY(channel) next;
usr.sbin/bluetooth/btpand/btpand.h
143
STAILQ_ENTRY(exthdr) next;
usr.sbin/bluetooth/btpand/btpand.h
150
STAILQ_ENTRY(pkthdr) next;
usr.sbin/bluetooth/btpand/channel.c
134
STAILQ_REMOVE_HEAD(&chan->pktlist, next);
usr.sbin/bluetooth/btpand/channel.c
157
LIST_REMOVE(chan, next);
usr.sbin/bluetooth/btpand/channel.c
191
STAILQ_REMOVE_HEAD(&chan->pktlist, next);
usr.sbin/bluetooth/btpand/channel.c
246
LIST_FOREACH(chan, &channel_list, next) {
usr.sbin/bluetooth/btpand/channel.c
262
LIST_FOREACH(chan, &channel_list, next) {
usr.sbin/bluetooth/btpand/channel.c
286
STAILQ_INSERT_TAIL(&chan->pktlist, ph, next);
usr.sbin/bluetooth/btpand/channel.c
316
channel_t *chan, *next;
usr.sbin/bluetooth/btpand/channel.c
322
next = LIST_FIRST(&channel_list);
usr.sbin/bluetooth/btpand/channel.c
323
while ((chan = next) != NULL) {
usr.sbin/bluetooth/btpand/channel.c
324
next = LIST_NEXT(chan, next);
usr.sbin/bluetooth/btpand/channel.c
72
LIST_INSERT_HEAD(&channel_list, chan, next);
usr.sbin/bluetooth/btpand/event.c
245
TAILQ_REMOVE(&pending, ev, next);
usr.sbin/bluetooth/btpand/event.c
257
TAILQ_INSERT_TAIL(&current, ev, next);
usr.sbin/bluetooth/btpand/event.c
266
TAILQ_REMOVE(&current, ev, next);
usr.sbin/bluetooth/btpand/event.c
54
TAILQ_INSERT_TAIL(&pending, ev, next); \
usr.sbin/bluetooth/btpand/event.h
63
TAILQ_ENTRY(event) next;
usr.sbin/bluetooth/btpand/packet.c
67
STAILQ_REMOVE_HEAD(&pkt->extlist, next);
usr.sbin/bluetooth/hcsecd/hcsecd.h
47
LIST_ENTRY(link_key) next; /* link to the next */
usr.sbin/bluetooth/hcsecd/parser.y
234
LIST_REMOVE(key, next);
usr.sbin/bluetooth/hcsecd/parser.y
245
LIST_FOREACH(key, &link_keys, next) {
usr.sbin/bluetooth/hcsecd/parser.y
266
LIST_FOREACH(key, &link_keys, next) {
usr.sbin/bluetooth/hcsecd/parser.y
367
LIST_FOREACH(key, &link_keys, next) {
usr.sbin/bluetooth/hcsecd/parser.y
94
LIST_INSERT_HEAD(&link_keys, key, next);
usr.sbin/bluetooth/rtlbtfw/rtlbt_fw.c
449
SLIST_INSERT_HEAD(patch_list, entry, next);
usr.sbin/bluetooth/rtlbtfw/rtlbt_fw.c
537
rtlbt_patch_entry_cmp, rtlbt_patch_entry, next);
usr.sbin/bluetooth/rtlbtfw/rtlbt_fw.c
544
SLIST_REMOVE_HEAD(&patch_list, next);
usr.sbin/bluetooth/rtlbtfw/rtlbt_fw.h
77
SLIST_ENTRY(rtlbt_patch_entry) next;
usr.sbin/bsnmpd/modules/snmp_lm75/snmp_lm75.c
153
sysctlgetnext(int *oid, int nlen, int *next, size_t *nextlen)
usr.sbin/bsnmpd/modules/snmp_lm75/snmp_lm75.c
164
if (sysctl(mib, nlen + 2, next, nextlen, 0, 0) == -1)
usr.sbin/bsnmpd/modules/snmp_lm75/snmp_lm75.c
247
int i, root[5], *next, *oid;
usr.sbin/bsnmpd/modules/snmp_lm75/snmp_lm75.c
284
next = (int *)malloc(nextlen);
usr.sbin/bsnmpd/modules/snmp_lm75/snmp_lm75.c
285
if (next == NULL) {
usr.sbin/bsnmpd/modules/snmp_lm75/snmp_lm75.c
292
if (sysctlgetnext(oid, len, next, &nextlen) == -1) {
usr.sbin/bsnmpd/modules/snmp_lm75/snmp_lm75.c
294
free(next);
usr.sbin/bsnmpd/modules/snmp_lm75/snmp_lm75.c
300
if (next[i] != root[i]) {
usr.sbin/bsnmpd/modules/snmp_lm75/snmp_lm75.c
301
free(next);
usr.sbin/bsnmpd/modules/snmp_lm75/snmp_lm75.c
309
free(next);
usr.sbin/bsnmpd/modules/snmp_lm75/snmp_lm75.c
312
memcpy(oid, next, nextlen);
usr.sbin/bsnmpd/modules/snmp_lm75/snmp_lm75.c
313
free(next);
usr.sbin/cdcontrol/cdcontrol.c
1015
int block, next, len;
usr.sbin/cdcontrol/cdcontrol.c
1038
next = msf2lba (e[1].addr.msf.minute, e[1].addr.msf.second,
usr.sbin/cdcontrol/cdcontrol.c
1041
next = ntohl(e[1].addr.lba);
usr.sbin/cdcontrol/cdcontrol.c
1042
len = next - block;
usr.sbin/config/mkmakefile.cc
408
next:
usr.sbin/config/mkmakefile.cc
425
goto next;
usr.sbin/config/mkmakefile.cc
430
goto next;
usr.sbin/config/mkmakefile.cc
441
goto next;
usr.sbin/config/mkmakefile.cc
611
goto next;
usr.sbin/cpucontrol/cpucontrol.c
461
SLIST_FOREACH(dir, &datadirs, next) {
usr.sbin/cpucontrol/cpucontrol.c
509
SLIST_INSERT_HEAD(&datadirs, newdir, next);
usr.sbin/cpucontrol/cpucontrol.c
587
SLIST_REMOVE_HEAD(&datadirs, next);
usr.sbin/cpucontrol/cpucontrol.c
82
SLIST_ENTRY(datadir) next;
usr.sbin/cron/cron/cron.c
193
for (u = db->head; u != NULL; u = u->next) {
usr.sbin/cron/cron/cron.c
194
for (e = u->crontab; e != NULL; e = e->next) {
usr.sbin/cron/cron/cron.c
243
for (u = db->head; u != NULL; u = u->next) {
usr.sbin/cron/cron/cron.c
244
for (e = u->crontab; e != NULL; e = e->next) {
usr.sbin/cron/cron/cron.c
258
for (u = db->head; u != NULL; u = u->next) {
usr.sbin/cron/cron/cron.c
259
for (e = u->crontab; e != NULL; e = e->next) {
usr.sbin/cron/cron/cron.c
273
for (u = db->head; u != NULL; u = u->next) {
usr.sbin/cron/cron/cron.c
274
for (e = u->crontab; e != NULL; e = e->next) {
usr.sbin/cron/cron/cron.c
300
for (u = db->head; u != NULL; u = u->next) {
usr.sbin/cron/cron/cron.c
301
for (e = u->crontab; e != NULL; e = e->next) {
usr.sbin/cron/cron/cron.c
457
for (u = db->head; u != NULL; u = u->next) {
usr.sbin/cron/cron/cron.c
458
for (e = u->crontab; e != NULL; e = e->next) {
usr.sbin/cron/cron/cron.c
544
for (u = db->head; u != NULL; u = u->next) {
usr.sbin/cron/cron/cron.c
545
for (e = u->crontab; e != NULL; e = e->next) {
usr.sbin/cron/cron/cron.c
559
for (u = database.head; u != NULL; u = u->next) {
usr.sbin/cron/cron/cron.c
560
for (e = u->crontab; e != NULL; e = e->next) {
usr.sbin/cron/cron/database.c
190
nu = u->next;
usr.sbin/cron/cron/database.c
207
db->tail->next = u;
usr.sbin/cron/cron/database.c
209
u->next = NULL;
usr.sbin/cron/cron/database.c
217
db->head = u->next;
usr.sbin/cron/cron/database.c
219
u->prev->next = u->next;
usr.sbin/cron/cron/database.c
221
if (u->next == NULL)
usr.sbin/cron/cron/database.c
224
u->next->prev = u->prev;
usr.sbin/cron/cron/database.c
232
for (u = db->head; u != NULL; u = u->next)
usr.sbin/cron/cron/database.c
305
for (e = u->crontab; e != NULL; e = e->next) {
usr.sbin/cron/cron/job.c
28
struct _job *next;
usr.sbin/cron/cron/job.c
43
for (j = jhead; j != NULL; j = j->next)
usr.sbin/cron/cron/job.c
50
j->next = (job*) NULL;
usr.sbin/cron/cron/job.c
58
jtail->next = j;
usr.sbin/cron/cron/job.c
71
jn = j->next;
usr.sbin/cron/cron/structs.h
23
struct _entry *next;
usr.sbin/cron/cron/structs.h
67
struct _user *next, *prev; /* links */
usr.sbin/cron/cron/user.c
102
e->next = u->crontab;
usr.sbin/cron/cron/user.c
37
ne = e->next;
usr.sbin/crunch/crunchgen/crunchgen.c
1021
for (p = progs; p != NULL; p = p->next)
usr.sbin/crunch/crunchgen/crunchgen.c
1026
for (p = progs; p != NULL; p = p->next)
usr.sbin/crunch/crunchgen/crunchgen.c
1029
for (p = progs; p != NULL; p = p->next)
usr.sbin/crunch/crunchgen/crunchgen.c
1070
for (lst = p->objs; lst != NULL; lst = lst->next) {
usr.sbin/crunch/crunchgen/crunchgen.c
1135
for (lst = p->keeplist; lst != NULL; lst = lst->next)
usr.sbin/crunch/crunchgen/crunchgen.c
1143
for (; lst != NULL; lst = lst->next)
usr.sbin/crunch/crunchgen/crunchgen.c
1190
for (p1 = NULL, p2 = *listp; p2 != NULL; p1 = p2, p2 = p2->next)
usr.sbin/crunch/crunchgen/crunchgen.c
1196
p2->next = NULL;
usr.sbin/crunch/crunchgen/crunchgen.c
1205
p1->next = p2;
usr.sbin/crunch/crunchgen/crunchgen.c
1213
for (p1 = *listb; p1 != NULL; p1 = p1->next)
usr.sbin/crunch/crunchgen/crunchgen.c
1226
for (p1 = *listp; p1 != NULL; p1 = p1->next)
usr.sbin/crunch/crunchgen/crunchgen.c
413
for (p1 = NULL, p2 = progs; p2 != NULL; p1 = p2, p2 = p2->next)
usr.sbin/crunch/crunchgen/crunchgen.c
425
p2->next = NULL;
usr.sbin/crunch/crunchgen/crunchgen.c
429
p1->next = p2;
usr.sbin/crunch/crunchgen/crunchgen.c
583
for (p = progs; p != NULL; p = p->next)
usr.sbin/crunch/crunchgen/crunchgen.c
59
struct strlst *next;
usr.sbin/crunch/crunchgen/crunchgen.c
618
for (p = progs; p != NULL; p = p->next)
usr.sbin/crunch/crunchgen/crunchgen.c
66
struct prog *next; /* link field */
usr.sbin/crunch/crunchgen/crunchgen.c
757
for (s = p->buildopts; s != NULL; s = s->next)
usr.sbin/crunch/crunchgen/crunchgen.c
810
p1 = p2, p2 = p2->next;
usr.sbin/crunch/crunchgen/crunchgen.c
816
p1->next = p2->next;
usr.sbin/crunch/crunchgen/crunchgen.c
818
progs = p2->next;
usr.sbin/crunch/crunchgen/crunchgen.c
819
p2 = p2->next;
usr.sbin/crunch/crunchgen/crunchgen.c
844
for (p = progs; p != NULL; p = p->next) {
usr.sbin/crunch/crunchgen/crunchgen.c
888
for (p = progs; p != NULL; p = p->next)
usr.sbin/crunch/crunchgen/crunchgen.c
922
for (p = progs; p != NULL; p = p->next)
usr.sbin/crunch/crunchgen/crunchgen.c
929
for (p = progs; p != NULL; p = p->next) {
usr.sbin/crunch/crunchgen/crunchgen.c
933
for (s = p->links; s != NULL; s = s->next) {
usr.sbin/crunch/crunchgen/crunchgen.c
978
for (dir = srcdirs; dir != NULL; dir = dir->next) {
usr.sbin/crunch/crunchide/crunchide.c
137
struct keep *next;
usr.sbin/crunch/crunchide/crunchide.c
149
for(curp = keep_list, prevp = NULL; curp; prevp = curp, curp = curp->next)
usr.sbin/crunch/crunchide/crunchide.c
162
newp->next = curp;
usr.sbin/crunch/crunchide/crunchide.c
163
if(prevp) prevp->next = newp;
usr.sbin/crunch/crunchide/crunchide.c
175
for(curp = keep_list; curp; curp = curp->next)
usr.sbin/cxgbetool/cxgbetool.c
3364
char *settings, *s, *next;
usr.sbin/cxgbetool/cxgbetool.c
3384
next = settings = strdup(settings_ro);
usr.sbin/cxgbetool/cxgbetool.c
3393
while ((s = strsep(&next, ws)) != NULL) {
usr.sbin/cxgbetool/cxgbetool.c
3397
rc = parse_offload_settings_word(s, &next, ws, &neg, os);
usr.sbin/dumpcis/printcis.c
69
for (tl = tlist; tl; tl = tl->next)
usr.sbin/dumpcis/printcis.c
70
for (tp = tl->tuples; tp; tp = tp->next) {
usr.sbin/dumpcis/readcis.c
127
tlist = tl->next;
usr.sbin/dumpcis/readcis.c
129
tl->tuples = tp->next;
usr.sbin/dumpcis/readcis.c
224
last_tl->next = tl;
usr.sbin/dumpcis/readcis.c
239
tlist->next = read_one_tuplelist(fd, 0, 0);
usr.sbin/dumpcis/readcis.c
257
for (tl = tlist; tl; tl = tl->next)
usr.sbin/dumpcis/readcis.c
319
last_tp->next = tp;
usr.sbin/dumpcis/readcis.c
322
tp->next = NULL;
usr.sbin/dumpcis/readcis.c
363
for (tp = tl->tuples; tp; tp = tp->next)
usr.sbin/dumpcis/readcis.h
30
struct tuple *next;
usr.sbin/dumpcis/readcis.h
37
struct tuple_list *next;
usr.sbin/edquota/edquota.c
208
curprivs->next = qup;
usr.sbin/edquota/edquota.c
227
for (qup = protoprivs; qup; qup = qup->next) {
usr.sbin/edquota/edquota.c
260
for (qup = protoprivs; qup; qup = qup->next) {
usr.sbin/edquota/edquota.c
390
quptail->next = qup;
usr.sbin/edquota/edquota.c
392
qup->next = 0;
usr.sbin/edquota/edquota.c
409
for (qup = quplist; qup; qup = qup->next)
usr.sbin/edquota/edquota.c
472
for (qup = quplist; qup; qup = qup->next) {
usr.sbin/edquota/edquota.c
620
for (qup = quplist; qup; qup = qup->next) {
usr.sbin/edquota/edquota.c
659
for (qup = quplist; qup; qup = qup->next) {
usr.sbin/edquota/edquota.c
688
for (qup = quplist; qup; qup = qup->next) {
usr.sbin/edquota/edquota.c
741
for (qup = quplist; qup; qup = qup->next) {
usr.sbin/edquota/edquota.c
755
for (qup = quplist; qup; qup = qup->next) {
usr.sbin/edquota/edquota.c
77
struct quotause *next;
usr.sbin/edquota/edquota.c
928
nextqup = qup->next;
usr.sbin/efibootmgr/efibootmgr.c
379
char *next, *cp;
usr.sbin/efibootmgr/efibootmgr.c
394
while ((next = strsep(&cp, ",")) != NULL) {
usr.sbin/efibootmgr/efibootmgr.c
395
new_data[i] = strtoul(next, NULL, 16);
usr.sbin/efibootmgr/efibootmgr.c
397
warnx("can't parse %s as a numb", next);
usr.sbin/flowctl/flowctl.c
336
char src[INET_ADDRSTRLEN], dst[INET_ADDRSTRLEN], next[INET_ADDRSTRLEN];
usr.sbin/flowctl/flowctl.c
350
inet_ntop(AF_INET, &fle->next_hop, next, sizeof(next));
usr.sbin/flowctl/flowctl.c
366
next,
usr.sbin/fwcontrol/fwdv.c
182
goto next;
usr.sbin/fwcontrol/fwdv.c
239
next:
usr.sbin/fwcontrol/fwdv.c
337
next:
usr.sbin/fwcontrol/fwdv.c
395
goto next;
usr.sbin/fwcontrol/fwmpegts.c
223
goto next;
usr.sbin/fwcontrol/fwmpegts.c
256
next:
usr.sbin/kbdcontrol/kbdcontrol.c
141
STAILQ_ENTRY(pathent) next;
usr.sbin/kbdcontrol/kbdcontrol.c
812
STAILQ_INSERT_TAIL(&pathlist, pe, next);
usr.sbin/kbdcontrol/kbdcontrol.c
863
STAILQ_FOREACH(pe, &pathlist, next) {
usr.sbin/kldxref/kldxref.c
227
TAILQ_ENTRY(pnp_elt) next; /* Link */
usr.sbin/kldxref/kldxref.c
319
TAILQ_INSERT_TAIL(list, elt, next);
usr.sbin/kldxref/kldxref.c
422
TAILQ_FOREACH_SAFE(elt, list, next, elt_tmp) {
usr.sbin/kldxref/kldxref.c
423
TAILQ_REMOVE(list, elt, next);
usr.sbin/kldxref/kldxref.c
557
TAILQ_FOREACH(elt, &list, next) {
usr.sbin/lpr/chkprintcap/chkprintcap.c
128
goto next;
usr.sbin/lpr/chkprintcap/chkprintcap.c
148
next:
usr.sbin/lpr/chkprintcap/chkprintcap.c
151
goto next;
usr.sbin/lpr/lpd/lpd.c
587
goto next;
usr.sbin/lpr/lpd/lpd.c
603
next:
usr.sbin/makefs/cd9660.c
1009
if ((next = TAILQ_NEXT(end_of_range, cn_next_child)) != NULL)
usr.sbin/makefs/cd9660.c
1010
end_of_range = next;
usr.sbin/makefs/cd9660.c
1173
cd9660node *cn, *next;
usr.sbin/makefs/cd9660.c
1177
if ((next = TAILQ_NEXT(cn, cn_next_child)) == NULL)
usr.sbin/makefs/cd9660.c
1179
else if (strcmp(next->isoDirRecord->name,
usr.sbin/makefs/cd9660.c
1182
TAILQ_REMOVE(&node->cn_children, next, cn_next_child);
usr.sbin/makefs/cd9660.c
1183
TAILQ_INSERT_BEFORE(cn, next, cn_next_child);
usr.sbin/makefs/cd9660.c
1193
cd9660node *iter, *next;
usr.sbin/makefs/cd9660.c
1196
(next = TAILQ_NEXT(iter, cn_next_child)) != NULL;
usr.sbin/makefs/cd9660.c
1197
iter = next) {
usr.sbin/makefs/cd9660.c
1199
next->isoDirRecord->name) == 0)
usr.sbin/makefs/cd9660.c
1205
if ((next = TAILQ_NEXT(iter, cn_next_child)) != NULL) {
usr.sbin/makefs/cd9660.c
1208
next->isoDirRecord->name);
usr.sbin/makefs/cd9660.c
1211
return cd9660_recurse_on_collision(next, count);
usr.sbin/makefs/cd9660.c
1336
root = root->next;
usr.sbin/makefs/cd9660.c
1434
if (iterator->next != NULL) {
usr.sbin/makefs/cd9660.c
1440
iterator = iterator->next;
usr.sbin/makefs/cd9660.c
758
temp->next = t;
usr.sbin/makefs/cd9660.c
770
temp->next = t;
usr.sbin/makefs/cd9660.c
772
t->next = NULL;
usr.sbin/makefs/cd9660.c
985
cd9660node *iter, *next, *prev;
usr.sbin/makefs/cd9660.c
994
iter != NULL && (next = TAILQ_NEXT(iter, cn_next_child)) != NULL;) {
usr.sbin/makefs/cd9660.c
996
next->isoDirRecord->name) != 0) {
usr.sbin/makefs/cd9660.h
204
struct _volume_descriptor *next;
usr.sbin/makefs/cd9660/cd9660_debug.c
172
tmp = tmp->next;
usr.sbin/makefs/cd9660/cd9660_eltorito.c
373
*valid_entry, *default_entry, *temp, *head, **headp, *next;
usr.sbin/makefs/cd9660/cd9660_eltorito.c
510
while ((next = LIST_NEXT(head, ll_struct)) != NULL &&
usr.sbin/makefs/cd9660/cd9660_eltorito.c
511
next->entry_type == ET_ENTRY_SE)
usr.sbin/makefs/cd9660/cd9660_eltorito.c
512
head = next;
usr.sbin/makefs/cd9660/cd9660_eltorito.c
519
LIST_FOREACH(next, &diskStructure->boot_entries, ll_struct) {
usr.sbin/makefs/cd9660/cd9660_eltorito.c
520
if (next->entry_type == ET_ENTRY_SH)
usr.sbin/makefs/cd9660/cd9660_eltorito.c
521
head = next;
usr.sbin/makefs/cd9660/cd9660_write.c
150
vd_temp = vd_temp->next;
usr.sbin/makefs/ffs.c
696
for (node = root; node != NULL; node = node->next) {
usr.sbin/makefs/ffs.c
862
for (cur = root; cur != NULL; cur = cur->next) {
usr.sbin/makefs/ffs.c
896
for (cur = root; cur != NULL; cur = cur->next) {
usr.sbin/makefs/ffs.c
942
for (cur = root; cur != NULL; cur = cur->next) {
usr.sbin/makefs/makefs.h
108
struct _fsnode *next; /* next */
usr.sbin/makefs/msdos.c
223
for (cur = root->next; cur != NULL; cur = cur->next) {
usr.sbin/makefs/mtree.c
101
SLIST_INSERT_HEAD(&mtree_fileinfo, fi, next);
usr.sbin/makefs/mtree.c
65
SLIST_ENTRY(mtree_fileinfo) next;
usr.sbin/makefs/mtree.c
928
node = last->next;
usr.sbin/makefs/mtree.c
948
last->next = node;
usr.sbin/makefs/mtree.c
957
last->next = NULL;
usr.sbin/makefs/walk.c
100
array[i]->next = i == nitems - 1 ? NULL : array[i + 1];
usr.sbin/makefs/walk.c
140
while (cur->next != NULL)
usr.sbin/makefs/walk.c
141
cur = cur->next;
usr.sbin/makefs/walk.c
177
cur = join->next;
usr.sbin/makefs/walk.c
181
cur = cur->next;
usr.sbin/makefs/walk.c
201
cur->next = first;
usr.sbin/makefs/walk.c
264
fsnode *cur, *next;
usr.sbin/makefs/walk.c
279
for (cur = node->first; cur->next; cur = cur->next) {
usr.sbin/makefs/walk.c
280
if (cur->next == node) {
usr.sbin/makefs/walk.c
281
cur->next = node->next;
usr.sbin/makefs/walk.c
282
node->next = NULL;
usr.sbin/makefs/walk.c
288
for (cur = node; cur != NULL; cur = next) {
usr.sbin/makefs/walk.c
289
next = cur->next;
usr.sbin/makefs/walk.c
373
fsnode *next;
usr.sbin/makefs/walk.c
375
for (curfsnode = dirnode->next; curfsnode != NULL; curfsnode = next) {
usr.sbin/makefs/walk.c
376
next = curfsnode->next;
usr.sbin/makefs/walk.c
378
curnode = curnode->next) {
usr.sbin/makefs/walk.c
393
curnode = curnode->next) {
usr.sbin/makefs/walk.c
397
for (curfsnode = dirnode->next; curfsnode != NULL;
usr.sbin/makefs/walk.c
398
curfsnode = curfsnode->next) {
usr.sbin/makefs/walk.c
454
curfsnode->next = dirnode->next;
usr.sbin/makefs/walk.c
455
dirnode->next = curfsnode;
usr.sbin/makefs/walk.c
571
for (cur = root; cur != NULL; cur = cur->next) {
usr.sbin/makefs/walk.c
88
for (cur = list; cur != NULL; cur = cur->next)
usr.sbin/makefs/walk.c
95
for (i = 0, cur = list; cur != NULL; i++, cur = cur->next)
usr.sbin/makefs/zfs.c
133
STAILQ_INSERT_TAIL(&zfs->datasetdescs, dsdesc, next);
usr.sbin/makefs/zfs.c
259
STAILQ_FOREACH_SAFE(d, &zfs->datasetdescs, next, tmp) {
usr.sbin/makefs/zfs/dsl.c
284
STAILQ_FOREACH(d, &zfs->datasetdescs, next) {
usr.sbin/makefs/zfs/dsl.c
285
char *dsname, *next, *params, *param, *nextparam;
usr.sbin/makefs/zfs/dsl.c
301
(next = strchr(dsname, '/')) == NULL ||
usr.sbin/makefs/zfs/dsl.c
302
(size_t)(next - dsname) != strlen(zfs->poolname)) {
usr.sbin/makefs/zfs/dsl.c
353
STAILQ_FOREACH(cdsldir, &dsldir->children, next) {
usr.sbin/makefs/zfs/dsl.c
433
STAILQ_INSERT_HEAD(&l, zfs->rootdsldir, next);
usr.sbin/makefs/zfs/dsl.c
441
STAILQ_FOREACH(parent, lp, next) {
usr.sbin/makefs/zfs/dsl.c
454
STAILQ_INSERT_TAIL(lp, dir, next);
usr.sbin/makefs/zfs/dsl.c
565
STAILQ_FOREACH(cdir, &dir->children, next) {
usr.sbin/makefs/zfs/dsl.c
66
STAILQ_ENTRY(zfs_dsl_dir) next;
usr.sbin/makefs/zfs/fs.c
152
SLIST_ENTRY(fs_populate_dir) next;
usr.sbin/makefs/zfs/fs.c
196
for (fsnode *cur = root; cur != NULL; cur = cur->next) {
usr.sbin/makefs/zfs/fs.c
395
fsnode_isroot(cur) ? cur->next : cur->child;
usr.sbin/makefs/zfs/fs.c
396
c != NULL; c = c->next) {
usr.sbin/makefs/zfs/fs.c
659
SLIST_INSERT_HEAD(&arg->dirs, dir, next);
usr.sbin/makefs/zfs/fs.c
686
for (cur = cur->next; cur != NULL; cur = cur->next) {
usr.sbin/makefs/zfs/fs.c
729
SLIST_REMOVE_HEAD(&arg->dirs, next);
usr.sbin/makefs/zfs/fs.c
849
char *mountpoint, *origmountpoint, *name, *next;
usr.sbin/makefs/zfs/fs.c
889
for (next = name = mountpoint; next != NULL;) {
usr.sbin/makefs/zfs/fs.c
890
for (; *next == '/'; next++)
usr.sbin/makefs/zfs/fs.c
892
name = strsep(&next, "/");
usr.sbin/makefs/zfs/fs.c
895
cur = cur->next)
usr.sbin/makefs/zfs/fs.c
898
if (next == NULL)
usr.sbin/makefs/zfs/fs.c
908
if (next != NULL)
usr.sbin/makefs/zfs/objset.c
122
STAILQ_FOREACH_SAFE(chunk, &os->dnodechunks, next, tmp) {
usr.sbin/makefs/zfs/objset.c
204
chunk = STAILQ_LAST(&os->dnodechunks, objset_dnode_chunk, next);
usr.sbin/makefs/zfs/objset.c
207
STAILQ_INSERT_TAIL(&os->dnodechunks, chunk, next);
usr.sbin/makefs/zfs/objset.c
234
STAILQ_FOREACH(chunk, &os->dnodechunks, next) {
usr.sbin/makefs/zfs/objset.c
45
STAILQ_ENTRY(objset_dnode_chunk) next;
usr.sbin/makefs/zfs/objset.c
94
STAILQ_INSERT_HEAD(&os->dnodechunks, chunk, next);
usr.sbin/makefs/zfs/zap.c
157
STAILQ_INSERT_TAIL(&zap->kvps, ent, next);
usr.sbin/makefs/zfs/zap.c
190
STAILQ_FOREACH(ent, &zap->kvps, next) {
usr.sbin/makefs/zfs/zap.c
221
STAILQ_FOREACH(ent, &zap->kvps, next) {
usr.sbin/makefs/zfs/zap.c
287
STAILQ_FOREACH(ent, &zap->kvps, next) {
usr.sbin/makefs/zfs/zap.c
422
STAILQ_FOREACH(ent, &zap->kvps, next) {
usr.sbin/makefs/zfs/zap.c
560
STAILQ_REMOVE_HEAD(&zap->kvps, next);
usr.sbin/makefs/zfs/zap.c
57
STAILQ_ENTRY(zfs_zap_entry) next;
usr.sbin/makefs/zfs/zfs.h
67
STAILQ_ENTRY(dataset_desc) next;
usr.sbin/mixer/mixer.c
165
goto next;
usr.sbin/mixer/mixer.c
171
goto next;
usr.sbin/mixer/mixer.c
182
goto next;
usr.sbin/mixer/mixer.c
187
goto next;
usr.sbin/mixer/mixer.c
193
goto next;
usr.sbin/mixer/mixer.c
198
next:
usr.sbin/mountd/mountd.c
1442
SLIST_FOREACH(mlp, &mlhead, next) {
usr.sbin/mountd/mountd.c
3776
SLIST_INSERT_HEAD(&mlhead, mlp, next);
usr.sbin/mountd/mountd.c
3788
SLIST_FOREACH_SAFE(mlp, &mlhead, next, mlp2) {
usr.sbin/mountd/mountd.c
3792
SLIST_REMOVE(&mlhead, mlp, mountlist, next);
usr.sbin/mountd/mountd.c
3801
SLIST_FOREACH(mlp, &mlhead, next) {
usr.sbin/mountd/mountd.c
3814
SLIST_FOREACH(mlp, &mlhead, next) {
usr.sbin/mountd/mountd.c
3826
SLIST_INSERT_HEAD(&mlhead, mlp, next);
usr.sbin/mountd/mountd.c
89
SLIST_ENTRY(mountlist) next;
usr.sbin/moused/moused/moused.c
2017
SLIST_INSERT_HEAD(&rodents, r, next);
usr.sbin/moused/moused/moused.c
2059
SLIST_REMOVE(&rodents, r, rodent, next);
usr.sbin/moused/moused/moused.c
423
SLIST_ENTRY(rodent) next;
usr.sbin/moused/moused/moused.c
805
SLIST_FOREACH(r, &rodents, next) {
usr.sbin/moused/moused/util-list.c
36
list->next = list;
usr.sbin/moused/moused/util-list.c
42
assert((list->next != NULL && list->prev != NULL) ||
usr.sbin/moused/moused/util-list.c
44
assert(((elm->next == NULL && elm->prev == NULL) || list_empty(elm)) ||
usr.sbin/moused/moused/util-list.c
48
elm->next = list->next;
usr.sbin/moused/moused/util-list.c
49
list->next = elm;
usr.sbin/moused/moused/util-list.c
50
elm->next->prev = elm;
usr.sbin/moused/moused/util-list.c
56
assert((list->next != NULL && list->prev != NULL) ||
usr.sbin/moused/moused/util-list.c
58
assert(((elm->next == NULL && elm->prev == NULL) || list_empty(elm)) ||
usr.sbin/moused/moused/util-list.c
61
elm->next = list;
usr.sbin/moused/moused/util-list.c
64
elm->prev->next = elm;
usr.sbin/moused/moused/util-list.c
70
assert((elm->next != NULL && elm->prev != NULL) ||
usr.sbin/moused/moused/util-list.c
73
elm->prev->next = elm->next;
usr.sbin/moused/moused/util-list.c
74
elm->next->prev = elm->prev;
usr.sbin/moused/moused/util-list.c
75
elm->next = NULL;
usr.sbin/moused/moused/util-list.c
82
assert((list->next != NULL && list->prev != NULL) ||
usr.sbin/moused/moused/util-list.c
85
return list->next == list;
usr.sbin/moused/moused/util-list.h
137
container_of((head)->next, __typeof__(*pointer_of_type), member)
usr.sbin/moused/moused/util-list.h
157
container_of((head)->next, container_type, member)
usr.sbin/moused/moused/util-list.h
61
struct list *next;
usr.sbin/moused/moused/util.c
60
const char *next = *state;
usr.sbin/moused/moused/util.c
63
if (!*next)
usr.sbin/moused/moused/util.c
66
next += strspn(next, separators);
usr.sbin/moused/moused/util.c
67
if (!*next) {
usr.sbin/moused/moused/util.c
68
*state = next;
usr.sbin/moused/moused/util.c
72
l = strcspn(next, separators);
usr.sbin/moused/moused/util.c
73
*state = next + l;
usr.sbin/moused/moused/util.c
76
return next;
usr.sbin/ndp/ndp.c
619
char *lim, *buf, *next;
usr.sbin/ndp/ndp.c
669
for (next = buf; next && next < lim; next += rtm->rtm_msglen) {
usr.sbin/ndp/ndp.c
672
rtm = (struct rt_msghdr *)next;
usr.sbin/nvram/nvram.c
143
for (;dl != NULL; dl = dl->next) {
usr.sbin/nvram/nvram.c
48
struct deletelist *next;
usr.sbin/nvram/nvram.c
81
dl->last->next = malloc(sizeof(*dl));
usr.sbin/nvram/nvram.c
82
if (dl->last->next == NULL)
usr.sbin/nvram/nvram.c
84
dl->last = dl->last->next;
usr.sbin/pkg/config.c
278
next);
usr.sbin/pkg/config.c
366
STAILQ_FOREACH(repo, &repositories, next) {
usr.sbin/pkg/config.c
410
STAILQ_REMOVE(&repositories, repo, repository, next);
usr.sbin/pkg/config.c
429
STAILQ_REMOVE(&repositories, repo, repository, next);
usr.sbin/pkg/config.c
440
STAILQ_INSERT_TAIL(&repositories, repo, next);
usr.sbin/pkg/config.c
48
STAILQ_ENTRY(config_value) next;
usr.sbin/pkg/config.c
595
next);
usr.sbin/pkg/config.c
619
STAILQ_INSERT_TAIL(c[REPOS_DIR].list, cv, next);
usr.sbin/pkg/config.c
623
STAILQ_INSERT_TAIL(c[REPOS_DIR].list, cv, next);
usr.sbin/pkg/config.c
626
STAILQ_FOREACH(cv, c[REPOS_DIR].list, next)
usr.sbin/pkg/config.c
698
STAILQ_INSERT_TAIL(&repositories, r, next);
usr.sbin/pkg/config.h
80
STAILQ_ENTRY(repository) next;
usr.sbin/pkg/dns_utils.c
194
res[n]->next = NULL;
usr.sbin/pkg/dns_utils.c
217
res[i]->next = res[i + 1];
usr.sbin/pkg/dns_utils.h
40
struct dns_srvinfo *next;
usr.sbin/pkg/pkg.c
1251
STAILQ_FOREACH(repo, repositories, next) {
usr.sbin/pkg/pkg.c
305
current = current->next;
usr.sbin/pkg/pkg.c
340
mirrors = mirrors->next;
usr.sbin/pkg/pkg.c
397
STAILQ_FOREACH_SAFE(fingerprint, list, next, tmp) {
usr.sbin/pkg/pkg.c
464
STAILQ_INSERT_TAIL(fingerprints, finger, next);
usr.sbin/pkg/pkg.c
791
STAILQ_FOREACH(fingerprint, revoked, next) {
usr.sbin/pkg/pkg.c
801
STAILQ_FOREACH(fingerprint, trusted, next) {
usr.sbin/pkg/pkg.c
91
STAILQ_ENTRY(fingerprint) next;
usr.sbin/pmcstudy/eval_expr.c
108
if (exp->next == NULL) {
usr.sbin/pmcstudy/eval_expr.c
112
if ((exp->next->type == TYPE_OP_PLUS) ||
usr.sbin/pmcstudy/eval_expr.c
113
(exp->next->type == TYPE_OP_MINUS) ||
usr.sbin/pmcstudy/eval_expr.c
114
(exp->next->type == TYPE_OP_DIVIDE) ||
usr.sbin/pmcstudy/eval_expr.c
115
(exp->next->type == TYPE_OP_MULT)) {
usr.sbin/pmcstudy/eval_expr.c
130
if (validate_expr(exp->next, 0, 0, 0, op_cnt) == 0) {
usr.sbin/pmcstudy/eval_expr.c
136
return(validate_expr(exp->next, 0, 0, 0, op_cnt));
usr.sbin/pmcstudy/eval_expr.c
165
return(validate_expr(exp->next, val1, op, val2, op_cnt));
usr.sbin/pmcstudy/eval_expr.c
204
print_exp(exp->next);
usr.sbin/pmcstudy/eval_expr.c
225
ex->next = at;
usr.sbin/pmcstudy/eval_expr.c
234
ex->prev->next = ex;
usr.sbin/pmcstudy/eval_expr.c
235
ex->next = at;
usr.sbin/pmcstudy/eval_expr.c
281
at = frm->next;
usr.sbin/pmcstudy/eval_expr.c
286
ex->next = at->next;
usr.sbin/pmcstudy/eval_expr.c
288
at->next = ex;
usr.sbin/pmcstudy/eval_expr.c
292
at = at->next;
usr.sbin/pmcstudy/eval_expr.c
302
at = at->next;
usr.sbin/pmcstudy/eval_expr.c
340
at = newone->next;
usr.sbin/pmcstudy/eval_expr.c
344
at = at->next;
usr.sbin/pmcstudy/eval_expr.c
374
set_math_precidence(beg, at->next, &end);
usr.sbin/pmcstudy/eval_expr.c
384
at = at->next;
usr.sbin/pmcstudy/eval_expr.c
55
at->next = ex;
usr.sbin/pmcstudy/eval_expr.c
559
lastproc = gather_exp_to_paren_close(exp->next, &val);
usr.sbin/pmcstudy/eval_expr.c
583
op = gather_exp_to_paren_close(exp->next, &val1);
usr.sbin/pmcstudy/eval_expr.c
586
op = exp->next;
usr.sbin/pmcstudy/eval_expr.c
589
op = exp->next;
usr.sbin/pmcstudy/eval_expr.c
598
other_half = op->next;
usr.sbin/pmcstudy/eval_expr.c
600
rest = gather_exp_to_paren_close(other_half->next, &val2);
usr.sbin/pmcstudy/eval_expr.c
603
rest = other_half->next;
usr.sbin/pmcstudy/eval_expr.c
606
rest = other_half->next;
usr.sbin/pmcstudy/eval_expr.c
643
*lastone = rest->next;
usr.sbin/pmcstudy/eval_expr.c
676
for(at = exp; at != NULL; at = at->next) {
usr.sbin/pmcstudy/eval_expr.c
682
for(at = exp; at != NULL; at = at->next) {
usr.sbin/pmcstudy/eval_expr.h
44
struct expression *next; /* Next in expression. */
usr.sbin/pmcstudy/pmcstudy.c
2689
at = at->next;
usr.sbin/pmcstudy/pmcstudy.c
2709
at = at->next;
usr.sbin/pmcstudy/pmcstudy.c
2756
at = at->next;
usr.sbin/ppp/bundle.c
1009
for (dl = bundle->links; dl; dl = dl->next)
usr.sbin/ppp/bundle.c
1012
} else if (bundle->links && !bundle->links->next)
usr.sbin/ppp/bundle.c
1026
for (dl = arg->bundle->links; dl; dl = dl->next) {
usr.sbin/ppp/bundle.c
1273
for (dlp = &bundle->links; *dlp; dlp = &(*dlp)->next)
usr.sbin/ppp/bundle.c
1275
*dlp = dl->next;
usr.sbin/ppp/bundle.c
1276
dl->next = NULL;
usr.sbin/ppp/bundle.c
1290
dlp = &(*dlp)->next;
usr.sbin/ppp/bundle.c
1293
dl->next = NULL;
usr.sbin/ppp/bundle.c
1312
dlp = &(*dlp)->next;
usr.sbin/ppp/bundle.c
1673
for (dl = bundle->links; dl; dl = dl->next)
usr.sbin/ppp/bundle.c
1775
for (dl = bundle->links; dl; dl = dl->next)
usr.sbin/ppp/bundle.c
1787
for (dl = bundle->links; dl; dl = dl->next)
usr.sbin/ppp/bundle.c
1835
for (dl = bundle->links; dl; dl = dl->next)
usr.sbin/ppp/bundle.c
1847
for (dl = bundle->links; dl; dl = dl->next)
usr.sbin/ppp/bundle.c
1887
for (dl = bundle->links; dl; dl = dl->next) {
usr.sbin/ppp/bundle.c
1942
for (dl = bundle->links; dl; dl = dl->next)
usr.sbin/ppp/bundle.c
1985
for (autolink = opened = 0, dl = bundle->links; dl; dl = dl->next)
usr.sbin/ppp/bundle.c
220
for (dl = bundle->links; dl; dl = dl->next)
usr.sbin/ppp/bundle.c
250
for (dl = bundle->links; dl; dl = dl->next)
usr.sbin/ppp/bundle.c
337
for (dl = bundle->links; dl; dl = dl->next) {
usr.sbin/ppp/bundle.c
377
for (dl = bundle->links; dl; dl = dl->next)
usr.sbin/ppp/bundle.c
401
for (dl = bundle->links; dl; dl = dl->next) {
usr.sbin/ppp/bundle.c
433
for (dl = bundle->links; dl; dl = dl->next)
usr.sbin/ppp/bundle.c
446
for (dl = bundle->links; dl; dl = dl->next)
usr.sbin/ppp/bundle.c
462
for (nlinks = 0, dl = bundle->links; dl; dl = dl->next)
usr.sbin/ppp/bundle.c
497
for (dl = bundle->links; dl; dl = dl->next)
usr.sbin/ppp/bundle.c
516
for (dl = bundle->links; dl; dl = dl->next)
usr.sbin/ppp/bundle.c
542
for (dl = bundle->links; dl; dl = dl->next)
usr.sbin/ppp/bundle.c
655
for (dl = bundle->links; dl; dl = dl->next)
usr.sbin/ppp/bundle.c
960
for (odl = bundle->links; odl; odl = odl->next)
usr.sbin/ppp/bundle.c
986
for (dl = bundle->links; dl; dl = dl->next)
usr.sbin/ppp/cbcp.c
260
char list[sizeof cbcp->fsm.phone], *next;
usr.sbin/ppp/cbcp.c
282
for (next = strtok(list, ","); next; next = strtok(NULL, ",")) {
usr.sbin/ppp/cbcp.c
283
len = strlen(next);
usr.sbin/ppp/cbcp.c
287
strncpy(addr->addr, next, sizeof addr->addr - 1);
usr.sbin/ppp/cbcp.c
292
next);
usr.sbin/ppp/cbcp.c
427
char list[sizeof cbcp->fsm.phone], *next;
usr.sbin/ppp/cbcp.c
431
for (next = strtok(list, ","); next; next = strtok(NULL, ","))
usr.sbin/ppp/cbcp.c
432
if (!strcmp(next, addr->addr)) {
usr.sbin/ppp/cbcp.c
434
strcpy(cbcp->fsm.phone, next);
usr.sbin/ppp/cbcp.c
448
char list[sizeof cbcp->fsm.phone], *next, *end;
usr.sbin/ppp/cbcp.c
457
for (next = strtok(list, ","); next; next = strtok(NULL, ","))
usr.sbin/ppp/cbcp.c
458
if (!strcmp(next, addr->addr)) {
usr.sbin/ppp/cbcp.c
460
strcpy(cbcp->fsm.phone, next);
usr.sbin/ppp/cbcp.c
554
char list[sizeof cbcp->fsm.phone], *next;
usr.sbin/ppp/cbcp.c
558
for (next = strtok(list, ","); next; next = strtok(NULL, ","))
usr.sbin/ppp/cbcp.c
559
if (!strcmp(addr->addr, next)) {
usr.sbin/ppp/cbcp.c
560
strcpy(cbcp->fsm.phone, next);
usr.sbin/ppp/ccp.c
187
o = &(*o)->next;
usr.sbin/ppp/ccp.c
364
for (o = &ccp->out.opt; *o != NULL; o = &(*o)->next)
usr.sbin/ppp/ccp.c
376
(*o)->next = NULL;
usr.sbin/ppp/ccp.c
392
o = &(*o)->next;
usr.sbin/ppp/ccp.c
447
struct ccp_opt *next;
usr.sbin/ppp/ccp.c
463
next = ccp->out.opt->next;
usr.sbin/ppp/ccp.c
465
ccp->out.opt = next;
usr.sbin/ppp/ccp.c
475
struct ccp_opt *next;
usr.sbin/ppp/ccp.c
484
next = ccp->out.opt->next;
usr.sbin/ppp/ccp.c
486
ccp->out.opt = next;
usr.sbin/ppp/ccp.c
541
o = &(*o)->next;
usr.sbin/ppp/ccp.c
626
for (o = ccp->out.opt; o != NULL; o = o->next)
usr.sbin/ppp/ccp.h
86
struct ccp_opt *next;
usr.sbin/ppp/command.c
2012
cx->phone.alt = cx->phone.next = NULL;
usr.sbin/ppp/command.c
2706
dl = cx->next;
usr.sbin/ppp/command.c
2709
for (cx = arg->bundle->links; cx; cx = cx->next)
usr.sbin/ppp/datalink.c
1311
for (cdl = bundle->links; cdl; cdl = cdl->next)
usr.sbin/ppp/datalink.c
134
dl->phone.alt = dl->phone.next = NULL;
usr.sbin/ppp/datalink.c
1342
dl->phone.next = NULL;
usr.sbin/ppp/datalink.c
1347
dl->next = NULL;
usr.sbin/ppp/datalink.c
179
if (dl->phone.next == NULL)
usr.sbin/ppp/datalink.c
194
if (dl->phone.next == NULL) {
usr.sbin/ppp/datalink.c
199
dl->phone.next = dl->phone.list;
usr.sbin/ppp/datalink.c
201
dl->phone.alt = strsep(&dl->phone.next, ":");
usr.sbin/ppp/datalink.c
814
dl->phone.next = NULL;
usr.sbin/ppp/datalink.c
823
dl->next = NULL;
usr.sbin/ppp/datalink.c
891
dl->phone.next = NULL;
usr.sbin/ppp/datalink.c
895
dl->next = NULL;
usr.sbin/ppp/datalink.c
954
result = dl->next;
usr.sbin/ppp/datalink.h
122
struct datalink *next; /* Next in the list */
usr.sbin/ppp/datalink.h
94
char *next; /* Next phone from the list */
usr.sbin/ppp/lcp.c
604
char list[sizeof cb->msg], *next;
usr.sbin/ppp/lcp.c
612
for (next = strtok(list, ","); next; next = strtok(NULL, ",")) {
usr.sbin/ppp/lcp.c
613
len = strlen(next);
usr.sbin/ppp/link.c
278
struct mbuf *bp, *lbp[LAYER_MAX], *next;
usr.sbin/ppp/link.c
318
next = bp->m_nextpkt;
usr.sbin/ppp/link.c
322
bp = next;
usr.sbin/ppp/log.c
111
for (p = promptlist; p; p = p->next)
usr.sbin/ppp/log.c
130
for (p = &promptlist; *p; p = &(*p)->next)
usr.sbin/ppp/log.c
132
*p = prompt->next;
usr.sbin/ppp/log.c
133
prompt->next = NULL;
usr.sbin/ppp/log.c
149
pn = p->next;
usr.sbin/ppp/log.c
152
pl->next = p->next;
usr.sbin/ppp/log.c
154
promptlist = p->next;
usr.sbin/ppp/log.c
155
p->next = NULL;
usr.sbin/ppp/log.c
168
for (p = promptlist; p; p = p->next)
usr.sbin/ppp/log.c
179
for (p = promptlist; p; p = p->next)
usr.sbin/ppp/log.c
190
for (p = promptlist; p; p = p->next)
usr.sbin/ppp/log.c
338
else for (prompt = promptlist; prompt; prompt = prompt->next)
usr.sbin/ppp/log.c
522
for (p = promptlist; p; p = p->next) {
usr.sbin/ppp/log.c
92
prompt->next = promptlist;
usr.sbin/ppp/mbuf.c
128
*mb = (*mb)->u.f.next;
usr.sbin/ppp/mbuf.c
132
(*mb)->u.f.next = NULL;
usr.sbin/ppp/mbuf.c
148
(*mb)->u.f.next = NULL;
usr.sbin/ppp/mbuf.c
176
f->u.f.next = *mb;
usr.sbin/ppp/mbuf.c
54
struct mbucket *next;
usr.sbin/ppp/mp.c
384
struct mbuf *next;
usr.sbin/ppp/mp.c
397
next = mp->inbufs->m_nextpkt;
usr.sbin/ppp/mp.c
399
mp->inbufs = next;
usr.sbin/ppp/mp.c
446
for (dl = mp->bundle->links; dl; dl = dl->next)
usr.sbin/ppp/mp.c
491
struct mbuf *next;
usr.sbin/ppp/mp.c
496
next = mp->inbufs->m_nextpkt;
usr.sbin/ppp/mp.c
498
mp->inbufs = next;
usr.sbin/ppp/mp.c
513
next = mp->inbufs->m_nextpkt;
usr.sbin/ppp/mp.c
516
mp->inbufs = next;
usr.sbin/ppp/mp.c
677
for (fdl = NULL, dl = bundle->links; dl; dl = dl->next) {
usr.sbin/ppp/mp.c
698
for (dl = fdl; nlinks > 0; dl = dl->next, nlinks--, thislink++) {
usr.sbin/ppp/mp.c
788
dl = dl->next;
usr.sbin/ppp/ncp.c
323
for (total = 0, dl = bundle->links; dl; dl = dl->next)
usr.sbin/ppp/prompt.h
58
struct prompt *next; /* Maintained in log.c */
usr.sbin/ppp/route.c
548
for (; r; r = r->next) {
usr.sbin/ppp/route.c
609
*rp = r->next;
usr.sbin/ppp/route.c
611
rp = &(*rp)->next;
usr.sbin/ppp/route.c
622
r->next = NULL;
usr.sbin/ppp/route.c
634
for (; *rp; rp = &(*rp)->next) {
usr.sbin/ppp/route.c
638
*rp = r->next;
usr.sbin/ppp/route.c
651
rn = r->next;
usr.sbin/ppp/route.c
668
for (; r; r = r->next) {
usr.sbin/ppp/route.h
49
struct sticky_route *next; /* next in list */
usr.sbin/ppp/server.c
186
for (p = log_PromptList(); p; p = p->next)
usr.sbin/ppp/server.c
66
for (p = log_PromptList(); p; p = p->next)
usr.sbin/ppp/server.c
81
for (p = log_PromptList(); p; p = p->next)
usr.sbin/ppp/timer.c
105
for (t = TimerList; t; t = t->next) {
usr.sbin/ppp/timer.c
122
tp->next = t;
usr.sbin/ppp/timer.c
124
pt->next = tp;
usr.sbin/ppp/timer.c
151
for (t = TimerList; t != tp && t != NULL; t = t->next)
usr.sbin/ppp/timer.c
156
pt->next = t->next;
usr.sbin/ppp/timer.c
158
TimerList = t->next;
usr.sbin/ppp/timer.c
162
if (t->next) {
usr.sbin/ppp/timer.c
164
t->next->rest += RESTVAL(itimer); /* t (tp) was the first in the list */
usr.sbin/ppp/timer.c
166
t->next->rest += t->rest;
usr.sbin/ppp/timer.c
167
if (!pt && t->next->rest > 0) /* t->next is now the first in the list */
usr.sbin/ppp/timer.c
185
tp->next = tp->enext = NULL;
usr.sbin/ppp/timer.c
192
struct pppTimer *tp, *exp, *next;
usr.sbin/ppp/timer.c
211
next = tp->next;
usr.sbin/ppp/timer.c
214
tp = next;
usr.sbin/ppp/timer.c
263
for (pt = TimerList; pt; pt = pt->next) {
usr.sbin/ppp/timer.h
41
struct pppTimer *next; /* Link to next timer */
usr.sbin/pppctl/pppctl.c
375
char *DoneWord = "x", *next, *start;
usr.sbin/pppctl/pppctl.c
644
next = strchr(start, ';');
usr.sbin/pppctl/pppctl.c
647
if (next)
usr.sbin/pppctl/pppctl.c
648
*next = '\0';
usr.sbin/pppctl/pppctl.c
659
if (next)
usr.sbin/pppctl/pppctl.c
660
start = ++next;
usr.sbin/pppctl/pppctl.c
661
} while (next && *next);
usr.sbin/prometheus_sysctl_exporter/prometheus_sysctl_exporter.c
100
next->len = nextsize / sizeof(next->id[0]);
usr.sbin/prometheus_sysctl_exporter/prometheus_sysctl_exporter.c
86
oid_get_next(const struct oid *cur, struct oid *next)
usr.sbin/prometheus_sysctl_exporter/prometheus_sysctl_exporter.c
94
nextsize = sizeof(next->id);
usr.sbin/prometheus_sysctl_exporter/prometheus_sysctl_exporter.c
95
if (sysctl(lookup, 2 + cur->len, &next->id, &nextsize, 0, 0) != 0) {
usr.sbin/pw/pw_group.c
103
gid_t next = gr_gidpolicy(cnf, -1);
usr.sbin/pw/pw_group.c
106
return (next);
usr.sbin/pw/pw_group.c
107
printf("%ju\n", (uintmax_t)next);
usr.sbin/pw/pw_user.c
720
uid_t next;
usr.sbin/pw/pw_user.c
744
next = pw_uidpolicy(cnf, -1);
usr.sbin/pw/pw_user.c
746
printf("%ju:", (uintmax_t)next);
usr.sbin/route6d/route6d.c
2219
goto next;
usr.sbin/route6d/route6d.c
2250
next:
usr.sbin/rpc.statd/procs.c
203
lp->next = hp->monList;
usr.sbin/rpc.statd/procs.c
225
MonList *lp, *next;
usr.sbin/rpc.statd/procs.c
237
next = lp->next;
usr.sbin/rpc.statd/procs.c
238
if (last) last->next = next;
usr.sbin/rpc.statd/procs.c
239
else hp->monList = next;
usr.sbin/rpc.statd/procs.c
241
lp = next;
usr.sbin/rpc.statd/procs.c
247
lp = lp->next;
usr.sbin/rpc.statd/procs.c
433
lp = lp->next;
usr.sbin/rpc.statd/statd.h
66
struct MonList_s *next; /* Next in list or NULL */
usr.sbin/rpc.tlsclntd/rpc.tlsclntd.c
290
LIST_INSERT_HEAD(&rpctls_ssllist, newslp, next);
usr.sbin/rpc.tlsclntd/rpc.tlsclntd.c
302
LIST_FOREACH(slp, &rpctls_ssllist, next)
usr.sbin/rpc.tlsclntd/rpc.tlsclntd.c
339
LIST_FOREACH(slp, &rpctls_ssllist, next)
usr.sbin/rpc.tlsclntd/rpc.tlsclntd.c
346
LIST_REMOVE(slp, next);
usr.sbin/rpc.tlsservd/rpc.tlscommon.c
191
LIST_FOREACH(slp, &rpctls_ssllist, next) {
usr.sbin/rpc.tlsservd/rpc.tlscommon.h
48
LIST_ENTRY(ssl_entry) next;
usr.sbin/rpc.tlsservd/rpc.tlsservd.c
454
LIST_INSERT_HEAD(&rpctls_ssllist, newslp, next);
usr.sbin/rpc.tlsservd/rpc.tlsservd.c
483
LIST_FOREACH(slp, &rpctls_ssllist, next)
usr.sbin/rpc.tlsservd/rpc.tlsservd.c
522
LIST_FOREACH(slp, &rpctls_ssllist, next)
usr.sbin/rpc.tlsservd/rpc.tlsservd.c
524
LIST_REMOVE(slp, next);
usr.sbin/rpc.tlsservd/rpc.tlsservd.c
573
LIST_FOREACH(slp, &rpctls_ssllist, next)
usr.sbin/rpcbind/check_bound.c
122
fdl->next = NULL;
usr.sbin/rpcbind/check_bound.c
127
fdtail->next = fdl;
usr.sbin/rpcbind/check_bound.c
141
for (fdl = fdhead; fdl; fdl = fdl->next)
usr.sbin/rpcbind/check_bound.c
161
for (fdl = fdhead; fdl; fdl = fdl->next)
usr.sbin/rpcbind/check_bound.c
229
for (fdl = fdhead; fdl; fdl = fdl->next)
usr.sbin/rpcbind/check_bound.c
61
struct fdlist *next;
usr.sbin/rpcbind/rpcb_stat.c
110
for (al = inf[rtype].addrinfo; al; al = al->next) {
usr.sbin/rpcbind/rpcb_stat.c
141
al->next = inf[rtype].addrinfo;
usr.sbin/rpcbind/rpcb_stat.c
154
for (rl = inf[rtype].rmtinfo; rl; rl = rl->next) {
usr.sbin/rpcbind/rpcb_stat.c
193
rl->next = inf[rtype].rmtinfo;
usr.sbin/rpcbind/rpcb_svc_com.c
515
rmt->next = NULL;
usr.sbin/rpcbind/rpcb_svc_com.c
520
rmttail->next = rmt;
usr.sbin/rpcbind/rpcb_svc_com.c
535
for (rmt = rmthead; rmt != NULL; rmt = rmt->next) {
usr.sbin/rpcbind/rpcb_svc_com.c
548
for (rmt = rmthead; rmt != NULL; rmt = rmt->next) {
usr.sbin/rpcbind/rpcb_svc_com.c
74
struct rmtcallfd_list *next;
usr.sbin/rtadvd/rrenum.c
341
goto next;
usr.sbin/rtadvd/rrenum.c
344
next:
usr.sbin/rtadvd/rtadvd.c
469
char msg[2048], *next, *lim;
usr.sbin/rtadvd/rtadvd.c
506
for (next = msg; next < lim; next += len) {
usr.sbin/rtadvd/rtadvd.c
509
next = get_next_msg(next, lim, 0, &len,
usr.sbin/rtadvd/rtadvd.c
518
type = ((struct rt_msghdr *)next)->rtm_type;
usr.sbin/rtadvd/rtadvd.c
522
ifindex = get_rtm_ifindex(next);
usr.sbin/rtadvd/rtadvd.c
526
ifindex = (int)((struct ifa_msghdr *)next)->ifam_index;
usr.sbin/rtadvd/rtadvd.c
529
ifindex = (int)((struct if_msghdr *)next)->ifm_index;
usr.sbin/rtadvd/rtadvd.c
532
ifan = (struct if_announcemsghdr *)next;
usr.sbin/rtsold/if.c
295
char *buf, *next, *lim;
usr.sbin/rtsold/if.c
311
for (next = buf; next < lim; next += ifm->ifm_msglen) {
usr.sbin/rtsold/if.c
312
ifm = (struct if_msghdr *)(void *)next;
usr.sbin/rtsold/if.c
330
if (next >= lim) {
usr.sbin/rtsold/rtsock.c
108
for (next = msg; next < lim; next += len) {
usr.sbin/rtsold/rtsock.c
109
rtm = (struct rt_msghdr *)(void *)next;
usr.sbin/rtsold/rtsock.c
110
if (lim - next < lenlim)
usr.sbin/rtsold/rtsock.c
97
char *lim, *next;
usr.sbin/rwhod/rwhod.c
583
char *buf, *lim, *next;
usr.sbin/rwhod/rwhod.c
629
for (next = buf; next < lim; next += ifm->ifm_msglen) {
usr.sbin/rwhod/rwhod.c
630
ifm = (struct if_msghdr *)next;
usr.sbin/sa/pdb.c
202
goto next;
usr.sbin/sa/pdb.c
208
goto next;
usr.sbin/sa/pdb.c
214
next: rv = DB_SEQ(pacct_db, &key, &data, R_NEXT);
usr.sbin/sndctl/sndctl.c
1037
goto next;
usr.sbin/sndctl/sndctl.c
1059
TAILQ_FOREACH(ch, &dp->chans, next) {
usr.sbin/sndctl/sndctl.c
1071
next:
usr.sbin/sndctl/sndctl.c
633
TAILQ_INSERT_TAIL(&dp->chans, ch, next);
usr.sbin/sndctl/sndctl.c
663
TAILQ_REMOVE(&dp->chans, ch, next);
usr.sbin/sndctl/sndctl.c
778
TAILQ_FOREACH(ch, &dp->chans, next) {
usr.sbin/sndctl/sndctl.c
86
TAILQ_ENTRY(snd_chan) next;
usr.sbin/syslogd/syslogd.c
1425
char prev, next;
usr.sbin/syslogd/syslogd.c
1448
next = *(s + strlen (name));
usr.sbin/syslogd/syslogd.c
1450
if (prev == ',' && (next == '\0' || next == ','))
usr.sbin/syslogd/syslogd.c
1602
STAILQ_FOREACH(f, &fhead, next) {
usr.sbin/syslogd/syslogd.c
164
STAILQ_ENTRY(peer) next;
usr.sbin/syslogd/syslogd.c
1698
STAILQ_FOREACH(f, &fhead, next) {
usr.sbin/syslogd/syslogd.c
1761
STAILQ_FOREACH(f, &fhead, next) {
usr.sbin/syslogd/syslogd.c
180
STAILQ_ENTRY(socklist) next;
usr.sbin/syslogd/syslogd.c
1954
STAILQ_FOREACH(f_in_list, &fhead, next) {
usr.sbin/syslogd/syslogd.c
2320
STAILQ_FOREACH(f, &fhead, next) {
usr.sbin/syslogd/syslogd.c
2331
STAILQ_FOREACH(sl, &shead, next) {
usr.sbin/syslogd/syslogd.c
243
STAILQ_ENTRY(allowedpeer) next;
usr.sbin/syslogd/syslogd.c
2540
STAILQ_INSERT_TAIL(&fhead, f, next);
usr.sbin/syslogd/syslogd.c
2555
STAILQ_REMOVE_HEAD(&fhead, next);
usr.sbin/syslogd/syslogd.c
2698
STAILQ_FOREACH(f, &fhead, next) {
usr.sbin/syslogd/syslogd.c
3130
STAILQ_FOREACH(boundsock, &shead, next) {
usr.sbin/syslogd/syslogd.c
3156
STAILQ_FOREACH(boundsock, &shead, next) {
usr.sbin/syslogd/syslogd.c
3393
STAILQ_FOREACH(f, &fhead, next) {
usr.sbin/syslogd/syslogd.c
3634
STAILQ_INSERT_TAIL(&aphead, ap, next);
usr.sbin/syslogd/syslogd.c
3706
STAILQ_FOREACH(ap, &aphead, next) {
usr.sbin/syslogd/syslogd.c
399
STAILQ_INSERT_TAIL(&pqueue, pe, next);
usr.sbin/syslogd/syslogd.c
469
STAILQ_INSERT_TAIL(&shead, sl, next);
usr.sbin/syslogd/syslogd.c
482
STAILQ_INSERT_TAIL(&shead, sl, next);
usr.sbin/syslogd/syslogd.c
672
STAILQ_REMOVE_HEAD(&pqueue, next);
usr.sbin/syslogd/syslogd.c
718
STAILQ_FOREACH(sl, &shead, next) {
usr.sbin/syslogd/syslogd.h
183
STAILQ_ENTRY(filed) next; /* next in linked list */
usr.sbin/syslogd/syslogd_cap.h
59
SLIST_ENTRY(cap_filed) next;
usr.sbin/syslogd/syslogd_cap_config.c
306
SLIST_REMOVE_HEAD(&cfiled_head, next);
usr.sbin/syslogd/syslogd_cap_config.c
324
SLIST_INSERT_HEAD(&cfiled_head, cfiled, next);
usr.sbin/syslogd/syslogd_cap_log.c
74
SLIST_FOREACH(cfiled, &cfiled_head, next) {
usr.sbin/traceroute6/traceroute6.c
1796
u_int8_t next;
usr.sbin/traceroute6/traceroute6.c
1806
pseudo_hdr.next = IPPROTO_UDP;
usr.sbin/traceroute6/traceroute6.c
1823
u_int8_t next;
usr.sbin/traceroute6/traceroute6.c
1833
pseudo_hdr.next = IPPROTO_TCP;
usr.sbin/uhsoctl/uhsoctl.c
183
TAILQ_ENTRY(timer_entry) next;
usr.sbin/uhsoctl/uhsoctl.c
208
te2 = TAILQ_NEXT(te, next);
usr.sbin/uhsoctl/uhsoctl.c
209
TAILQ_REMOVE(&tmrs->head, te, next);
usr.sbin/uhsoctl/uhsoctl.c
235
TAILQ_INSERT_HEAD(&tmrs->head, te, next);
usr.sbin/uhsoctl/uhsoctl.c
238
TAILQ_INSERT_HEAD(&tmrs->head, te, next);
usr.sbin/uhsoctl/uhsoctl.c
242
te3 = TAILQ_NEXT(te2, next);
usr.sbin/uhsoctl/uhsoctl.c
247
TAILQ_INSERT_AFTER(&tmrs->head, te2, te, next);
usr.sbin/usbdump/usbdump.c
584
uint8_t *next;
usr.sbin/usbdump/usbdump.c
588
for (ptr = data; ptr < (data + datalen); ptr = next) {
usr.sbin/usbdump/usbdump.c
612
next = ptr + BPF_WORDALIGN(hdrlen + caplen);
usr.sbin/usbdump/usbdump.c
614
if (next <= ptr)
usr.sbin/usbdump/usbdump.c
624
uint8_t *next;
usr.sbin/usbdump/usbdump.c
626
for (ptr = data; ptr < (data + datalen); ptr = next) {
usr.sbin/usbdump/usbdump.c
639
next = ptr + roundup2(temp.hdrlen + temp.caplen, temp.align);
usr.sbin/usbdump/usbdump.c
641
if (next <= ptr)
usr.sbin/ypbind/ypbind.c
392
struct _dom_binding *ypdb, *next;
usr.sbin/ypbind/ypbind.c
499
for (ypdb = ypbindlist; ypdb; ypdb = next) {
usr.sbin/ypbind/ypbind.c
500
next = ypdb->dom_pnext;
usr.sbin/ypldap/ber.c
1069
struct ber_element *next;
usr.sbin/ypldap/ber.c
1164
next = elm->be_sub;
usr.sbin/ypldap/ber.c
1166
r = ber_read_element(ber, next);
usr.sbin/ypldap/ber.c
1170
if (len > 0 && next->be_next == NULL) {
usr.sbin/ypldap/ber.c
1171
if ((next->be_next = ber_get_element(0)) ==
usr.sbin/ypldap/ber.c
1175
next = next->be_next;
usr.sbin/ypldap/ber.c
118
struct ber_element *ber, *next;
usr.sbin/ypldap/ber.c
121
next = ber_unlink_elements(ber);
usr.sbin/ypldap/ber.c
122
ber_link_elements(new, next);
usr.sbin/ypldap/ldapclient.c
101
TAILQ_FOREACH(h, &idm->idm_addr, next) {
usr.sbin/ypldap/ldapclient.c
131
TAILQ_REMOVE(&idm->idm_addr, h, next);
usr.sbin/ypldap/ldapclient.c
214
TAILQ_INSERT_HEAD(&idm->idm_addr, h, next);
usr.sbin/ypldap/ldapclient.c
70
TAILQ_FOREACH(p, addr, next) {
usr.sbin/ypldap/parse.y
424
int c, next;
usr.sbin/ypldap/parse.y
452
next = getc(file->stream);
usr.sbin/ypldap/parse.y
453
if (next != '\n') {
usr.sbin/ypldap/parse.y
454
c = next;
usr.sbin/ypldap/parse.y
513
int quotec, next, c;
usr.sbin/ypldap/parse.y
563
if ((next = lgetc(quotec)) == EOF)
usr.sbin/ypldap/parse.y
565
if (next == quotec || c == ' ' || c == '\t')
usr.sbin/ypldap/parse.y
566
c = next;
usr.sbin/ypldap/parse.y
567
else if (next == '\n') {
usr.sbin/ypldap/parse.y
571
lungetc(next);
usr.sbin/ypldap/parse.y
727
struct sym *sym, *next;
usr.sbin/ypldap/parse.y
753
for (sym = TAILQ_FIRST(&symhead); sym != NULL; sym = next) {
usr.sbin/ypldap/parse.y
754
next = TAILQ_NEXT(sym, entry);
usr.sbin/ypldap/yp.c
625
maps[i].next = res.maps;
usr.sbin/ypldap/ypldap.h
44
TAILQ_ENTRY(ypldap_addr) next;
usr.sbin/ypldap/ypldap_dns.c
181
TAILQ_REMOVE(&hn, h, next);
usr.sbin/ypldap/ypldap_dns.c
245
TAILQ_INSERT_HEAD(hn, h, next);
usr.sbin/yppush/yppush_main.c
119
job = job->next;
usr.sbin/yppush/yppush_main.c
178
jptr = jptr->next;
usr.sbin/yppush/yppush_main.c
204
jptr = jptr->next;
usr.sbin/yppush/yppush_main.c
405
job->next = yppush_joblist;
usr.sbin/yppush/yppush_main.c
499
struct hostlist *next;
usr.sbin/yppush/yppush_main.c
523
tmp->next = yppush_hostlist;
usr.sbin/yppush/yppush_main.c
614
tmp = tmp->next;
usr.sbin/yppush/yppush_main.c
80
struct jobs *next;
usr.sbin/ypserv/yp_access.c
121
tmp = securenets->next;
usr.sbin/ypserv/yp_access.c
133
securenets->next = NULL;
usr.sbin/ypserv/yp_access.c
169
tmp->next = securenets;
usr.sbin/ypserv/yp_access.c
283
tmp = tmp->next;
usr.sbin/ypserv/yp_access.c
91
struct securenet *next;
usr.sbin/ypserv/yp_server.c
667
register struct ypmaplist *next;
usr.sbin/ypserv/yp_server.c
670
next = yp_maplist->next;
usr.sbin/ypserv/yp_server.c
673
yp_maplist = next;
usr.sbin/ypserv/yp_server.c
716
cur->next = yp_maplist;