Searched refs:nxt (Results 1 - 25 of 55) sorted by relevance

123

/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dxcoffsolib.c47 for (vp = vp->nxt; vp; vp = vp->nxt)
73 if (vp == NULL || vp->nxt == NULL)
80 vp = vp->nxt;
85 for (; vp != NULL; vp = vp->nxt)
127 for (vp = vp->nxt; vp; vp = vp->nxt)
H A Dxcoffsolib.h35 struct vmap *nxt; /* ptr to next in chain */ member in struct:vmap
H A Dexec.c95 struct vmap *vp, *nxt; local
97 for (nxt = vmap; nxt != NULL;)
99 vp = nxt;
100 nxt = vp->nxt;
414 vp->nxt = 0;
424 for (vpp = &vmap; *vpp; vpp = &(*vpp)->nxt)
581 for (vp = vmap; vp; vp = vp->nxt)
H A Dobjfiles.h572 #define ALL_OBJFILES_SAFE(obj,nxt) \
574 (obj) != NULL? ((nxt)=(obj)->next,1) :0; \
575 (obj) = (nxt))
/openbsd-current/sys/arch/sparc64/sparc64/
H A Din4_cksum.c94 in4_cksum(struct mbuf *m, u_int8_t nxt, int off, int len) argument
106 if (nxt != 0) {
110 sum = ((u_int)nxt << 16) | htons(len);
/openbsd-current/sys/netinet6/
H A Dip6_input.c175 ip6_ours(struct mbuf **mp, int *offp, int nxt, int af, int flags) argument
177 /* ip6_hbhchcheck() may be run before, then off and nxt are set */
179 nxt = ip6_hbhchcheck(mp, offp, NULL, flags);
180 if (nxt == IPPROTO_DONE)
186 return nxt;
188 nxt = ip_deliver(mp, offp, nxt, AF_INET6, 1);
189 if (nxt == IPPROTO_DONE)
207 ion->ion_nxt = nxt;
228 int off, nxt; local
258 int off, nxt; local
357 ip6_input_if(struct mbuf **mp, int *offp, int nxt, int af, struct ifnet *ifp) argument
640 int nxt; local
1122 int nxt = ip6->ip6_nxt, off = sizeof(struct ip6_hdr); local
1222 ip6_pullexthdr(struct mbuf *m, size_t off, int nxt) argument
1290 int len, nlen, nxt; local
1403 int nxt; local
[all...]
H A Din6_cksum.c88 in6_cksum(struct mbuf *m, uint8_t nxt, uint32_t off, uint32_t len) argument
118 /* Skip pseudo-header if nxt == 0. */
119 if (nxt == 0)
130 uph.ph.ph_nxt = nxt;
/openbsd-current/lib/libc/db/btree/
H A Dbt_split.c593 indx_t full, half, nxt, off, skip, top, used; local
608 for (nxt = off = 0, top = NEXTINDEX(h); nxt < top; ++off) {
615 src = bi = GETBINTERNAL(h, nxt);
620 src = bl = GETBLEAF(h, nxt);
625 src = GETRINTERNAL(h, nxt);
630 src = rl = GETRLEAF(h, nxt);
645 nxt == top - 1) {
652 ++nxt;
684 if (c->pg.index < nxt) /* Lef
788 indx_t nxt, top; local
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_lfstack.h53 T *nxt = cur->next;
55 u64 xch = (u64)(uptr)nxt | cnt;
/openbsd-current/usr.sbin/tcpdump/
H A Daddrtoname.c66 struct hnamemem *nxt; member in struct:hnamemem
79 struct h6namemem *nxt; member in struct:h6namemem
191 for (; p->nxt; p = p->nxt) {
196 p->nxt = newhnamemem();
245 for (; p->nxt; p = p->nxt) {
250 p->nxt = newh6namemem();
502 for (tp = &eprototable[i & (HASHNAMESIZE-1)]; tp->nxt; tp = tp->nxt)
[all...]
H A Dprint-atalk.c549 struct hnamemem *nxt; member in struct:hnamemem
561 for (tp = &hnametable[i & (HASHNAMESIZE-1)]; tp->nxt; tp = tp->nxt)
567 for (tp2 = &hnametable[i & (HASHNAMESIZE-1)]; tp2->nxt; tp2 = tp2->nxt)
570 tp->nxt = newhnamemem();
578 tp->nxt = newhnamemem();
H A Dprint-tcp.c100 struct tcp_seq_hash *nxt; member in struct:tcp_seq_hash
353 th->nxt; th = th->nxt)
358 if (!th->nxt || flags & TH_SYN) {
360 if (th->nxt == NULL) {
361 th->nxt = calloc(1, sizeof(*th));
362 if (th->nxt == NULL)
/openbsd-current/sys/arch/m88k/m88k/
H A Din_cksum.c94 in4_cksum(struct mbuf *m, uint8_t nxt, int off, int len) argument
103 if (nxt != 0) {
106 u.ipov.ih_pr = nxt;
/openbsd-current/usr.bin/cdio/
H A Drip.c58 static int _parse_val(char *start, char *nxt, int *val);
59 static int _parse_pair(char *start, char *nxt, int *val1, int *val2);
119 _parse_val(char *start, char *nxt, int *val) argument
124 n = nxt - start;
128 for (p = start; p < nxt; p++) {
143 _parse_pair(char *start, char *nxt, int *val1, int *val2) argument
150 while (p < nxt) {
164 if ((nxt - delim - 1) < 1)
167 error = _parse_val(delim + 1, nxt, val2);
170 error = _parse_val(start, nxt, val
259 char *p, *nxt; local
[all...]
/openbsd-current/sys/netinet/
H A Dip_input.c238 ip_ours(struct mbuf **mp, int *offp, int nxt, int af) argument
240 nxt = ip_fragcheck(mp, offp);
241 if (nxt == IPPROTO_DONE)
246 return nxt;
248 nxt = ip_deliver(mp, offp, nxt, AF_INET, 1);
249 if (nxt == IPPROTO_DONE)
267 ion->ion_nxt = nxt;
288 int off, nxt; local
300 nxt
324 int off, nxt; local
425 ip_input_if(struct mbuf **mp, int *offp, int nxt, int af, struct ifnet *ifp) argument
723 ip_deliver(struct mbuf **mp, int *offp, int nxt, int af, int shared) argument
[all...]
H A Din4_cksum.c89 in4_cksum(struct mbuf *m, u_int8_t nxt, int off, int len) argument
108 if (nxt != 0) {
115 u.ipov.ih_pr = nxt;
H A Dipsec_output.c79 int nxt; local
298 nxt = ip6->ip6_nxt;
305 switch (nxt) {
322 if (nxt == IPPROTO_DSTOPTS && dstopt)
325 if (nxt == IPPROTO_DSTOPTS) {
331 } else if (nxt == IPPROTO_ROUTING) {
345 nxt = ip6e.ip6e_nxt;
348 * we will never see nxt == IPPROTO_AH
/openbsd-current/sys/arch/powerpc/powerpc/
H A Din_cksum.c246 in4_cksum(struct mbuf *m, uint8_t nxt, int off, int len) argument
255 if (nxt != 0) {
258 u.ipov.ih_pr = nxt;
/openbsd-current/usr.bin/lex/
H A Dgen.c238 * The offset is base[nxt[i]] - (base of current state)]. That's
248 * We need to have room in nxt/chk for two more slots: One for the
251 * nxt/chk pair with is EOB, i.e., 0, so we don't have to make sure
262 nxt[tblend + 1] = end_of_buffer_action;
267 nxt[tblend + 2] = 0;
279 nxt[offset - 1] = anum; /* action number */
288 tdata[curr++] = nxt[i];
295 tdata[curr++] = base[nxt[i]] - (i - chk[i]);
302 tdata[curr++] = nxt[tblend + 1];
305 tdata[curr++] = nxt[tblen
[all...]
H A Dtblcmp.c310 nxt = reallocate_integer_array(nxt, current_max_xpairs);
342 * consecutive unused records in the chk and nxt arrays.
350 * nxt and chk.
355 * chk/nxt, which should be 1.
361 * Start searching for table space near the end of chk/nxt
411 * Check to see if all elements in chk (and therefore nxt)
483 nxt[tblend] = end_of_buffer_state;
487 nxt[tblend + i] = 0;
501 /* mkentry - create base/def and nxt/ch
[all...]
/openbsd-current/gnu/usr.bin/binutils/gas/config/
H A Dxtensa-relax.c519 TransitionList *nxt;
531 nxt = prev->next;
532 while (nxt != NULL)
534 prev = nxt;
535 nxt = nxt->next;
549 PreconditionList *nxt;
558 nxt = prev->next;
559 while (nxt != NULL)
561 prev = nxt;
516 TransitionList *nxt; local
546 PreconditionList *nxt; local
605 BuildInstr *nxt; local
629 BuildOp *nxt; local
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/gas/config/
H A Dxtensa-relax.c525 PreconditionList *nxt;
534 nxt = prev->next;
535 while (nxt != NULL)
537 prev = nxt;
538 nxt = nxt->next;
580 BuildInstr *nxt;
588 nxt = prev->next;
589 while (nxt != 0)
591 prev = nxt;
523 PreconditionList *nxt; local
578 BuildInstr *nxt; local
600 BuildOp *nxt; local
[all...]
/openbsd-current/lib/libcurses/tinfo/
H A Dmake_hash.c360 int nxt; local
364 nxt = (int) strlen(name_table[n].ute_name) + 5;
365 if (nxt + len > 72) {
370 len += nxt;
/openbsd-current/sys/arch/alpha/alpha/
H A Din_cksum.c196 in4_cksum(struct mbuf *m, u_int8_t nxt, int off, int len) argument
206 if (nxt != 0) {
216 ipov.ih_pr = nxt;
/openbsd-current/usr.bin/ssh/
H A Dssh-pkcs11-helper.c71 struct pkcs11_keyinfo *ki, *nxt; local
73 for (ki = TAILQ_FIRST(&pkcs11_keylist); ki; ki = nxt) {
74 nxt = TAILQ_NEXT(ki, next);

Completed in 326 milliseconds

123