/src/sys/dev/i2c/ |
nxt2k.c | 70 nxt2k_writedata(struct nxt2k *nxt, uint8_t reg, uint8_t *data, size_t len) 77 if ((error = iic_acquire_bus(nxt->tag, 0)) != 0) 83 error = iic_exec(nxt->tag, I2C_OP_WRITE_WITH_STOP, nxt->addr, 86 iic_release_bus(nxt->tag, 0); 92 nxt2k_readdata(struct nxt2k *nxt, uint8_t reg, uint8_t *data, size_t len) 96 if ((error = iic_acquire_bus(nxt->tag, 0)) != 0) 99 error = iic_exec(nxt->tag, I2C_OP_READ_WITH_STOP, nxt->addr, 102 iic_release_bus(nxt->tag, 0) 778 struct nxt2k *nxt; local in function:nxt2k_open [all...] |
/src/sys/ufs/chfs/ |
ebh_misc.h | 48 type *var, *nxt; \ 49 for (var = RB_MIN(name, head); var != NULL; var = nxt) { \ 50 nxt = RB_NEXT(name, head, var); \ 59 type *var, *nxt; \ 60 for (var = RB_MIN(name, head); var != NULL; var = nxt) { \ 61 nxt = RB_NEXT(name, head, var); \
|
/src/sys/netinet/ |
in4_cksum.c | 56 in4_cksum(struct mbuf *m, u_int8_t nxt, int off, int len) 65 if (nxt == 0) 77 * ip.ih_pr = nxt; 85 sum = ((len & 0xffff) + nxt) << 8; 87 sum = (len & 0xffff) + nxt;
|
tcp_vtw.h | 177 fatp_word_t nxt : FATP_NXT_WIDTH;/* at most 2^17 fat pointers */ member in struct:fatp_mi 307 return fp->nxt ? fat->base + fp->nxt-1 : 0;
|
tcp_vtw.c | 179 fp->nxt = 0; 195 KASSERT(!fp->nxt); 197 fp->nxt = fatp_index(fat, fat->free); 383 fq->nxt = fatp_index(fat, fp); 573 fq->nxt = fp->nxt; 574 fp->nxt = 0; 579 if (fp->nxt) { 582 fp->nxt = 0; 597 " nxt %x [all...] |
ip_encap.c | 715 int nxt; local in function:encap6_ctlinput 739 nxt = ip6cp->ip6c_nxt; 749 match = encap6_lookup(m, off, nxt, OUTBOUND, 769 nxt = -1; 780 if (ep->proto >= 0 && ep->proto != nxt)
|
/src/sys/netinet6/ |
in6_cksum.c | 47 in6_cksum(struct mbuf *m, u_int8_t nxt, uint32_t off, uint32_t len) 63 if (nxt == 0) 76 * ip6.ip6ph_nxt = nxt; 86 sum = ((len & 0xffff) + ((len >> 16) & 0xffff) + nxt) << 8; 88 sum = (len & 0xffff) + ((len >> 16) & 0xffff) + nxt;
|
ip6_input.c | 256 int nxt, ours = 0, rh_present = 0, frg_present; local in function:ip6_input 606 nxt = hbh->ip6h_nxt; 615 nxt = ip6->ip6_nxt; 712 while (nxt != IPPROTO_DONE) { 731 if (nxt == IPPROTO_ROUTING) { 737 } else if (nxt == IPPROTO_FRAGMENT) { 752 if ((inet6sw[ip6_protox[nxt]].pr_flags 765 nxt = (*inet6sw[ip6_protox[nxt]].pr_input)(&m, &off, nxt); 1175 int nxt = xip6->ip6_nxt, off = sizeof(struct ip6_hdr); local in function:ip6_savecontrol 1367 int len, nlen, nxt; local in function:ip6_get_prevhdr 1481 int nxt; local in function:ip6_lasthdr [all...] |
frag6.c | 174 int offset = *offp, nxt, i, next; local in function:frag6_input 477 nxt = q6->ip6q_nxt; 509 * Restore NXT to the original. 520 *prvnxtp = nxt; 533 return nxt;
|
raw_ip6.c | 275 int nxt; local in function:rip6_ctlinput 298 nxt = ip6cp->ip6c_nxt; 303 nxt = -1; 315 * XXX chase extension headers, or pass final nxt value 336 in6p_ip6(inp).ip6_nxt == nxt) 473 const uint8_t nxt = ip6->ip6_nxt; local in function:rip6_output 495 sum = in6_cksum(m, nxt, sizeof(*ip6), plen);
|
in6.h | 557 * nxt htonl(next-proto-number) 564 u_int32_t len, u_int32_t nxt) 587 sum += (u_int16_t)(nxt >> 16) + (u_int16_t)(nxt /*& 0xffff*/);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_lfstack.h | 54 T *nxt = cur->next; local in function:__sanitizer::LFStack::Pop 56 u64 xch = (u64)(uptr)nxt | cnt;
|
/src/sys/arch/xen/xen/ |
xennet_checksum.c | 86 uint8_t nxt; local in function:xennet_checksum_fill 117 nxt = iph->ip_p; 132 nxt = ip6h->ip6_nxt; 147 switch (nxt) { 183 ifp->if_xname, nxt);
|
/src/lib/libc/db/btree/ |
bt_split.c | 622 indx_t full, half, nxt, off, skip, top, used; local in function:bt_psplit 640 for (nxt = off = 0, top = NEXTINDEX(h); nxt < top; ++off) { 648 src = bi = GETBINTERNAL(h, nxt); 653 src = bl = GETBLEAF(h, nxt); 658 src = GETRINTERNAL(h, nxt); 663 src = rl = GETRLEAF(h, nxt); 678 nxt == top - 1) { 685 ++nxt; 704 * Nxt is the first offset to be placed on the right page 827 indx_t nxt, top; local in function:rec_total [all...] |
/src/sys/arch/powerpc/powerpc/ |
in_cksum.c | 247 in4_cksum(struct mbuf *m, uint8_t nxt, int off, int len) 256 if (nxt != 0) { 260 u.ipov.ih_pr = nxt;
|
/src/sys/netipsec/ |
ipsec_input.c | 454 int protoff, nxt; local in function:ipsec6_common_input 468 nxt = (mtod(*mp, struct ip6_hdr *))->ip6_nxt; 474 if (nxt == IPPROTO_AH) 476 else if (nxt == IPPROTO_FRAGMENT) 482 nxt = ip6e.ip6e_nxt; 513 int nxt; local in function:ipsec6_common_input_cb 555 nxt = prot; 556 while (nxt != IPPROTO_DONE) { 582 if ((inet6sw[ip6_protox[nxt]].pr_flags & PR_LASTHDR) != 0 && 595 nxt = (*inet6sw[ip6_protox[nxt]].pr_input)(&m, &skip, nxt) [all...] |
ipsec_output.c | 649 int nxt; local in function:compute_ipsec_pos 653 nxt = ip6->ip6_nxt; 661 switch (nxt) { 682 if (nxt == IPPROTO_DSTOPTS && dstopt) 685 if (nxt == IPPROTO_DSTOPTS) { 691 } else if (nxt == IPPROTO_ROUTING) { 701 nxt = ip6e.ip6e_nxt;
|
xform_ah.c | 298 int alloc, nxt; local in function:ah_massage_headers 447 nxt = ip6.ip6_nxt & 0xff; /* Next header type. */ 461 switch (nxt) { 495 nxt = ip6e->ip6e_nxt; 534 uint8_t nxt; local in function:ah_input 550 nxt = ah->ah_nxt; 684 tc->tc_nxt = nxt; 737 uint8_t nxt; local in function:ah_input_cb 747 nxt = tc->tc_nxt; 813 ptr[protoff] = nxt; [all...] |
ipsec.c | 869 u_int8_t nxt; local in function:ipsec4_get_ulp 881 nxt = ip->ip_p; 889 nxt = ih.ip_p; 898 switch (nxt) { 900 spidx->ul_proto = nxt; 910 spidx->ul_proto = nxt; 925 nxt = ip6e.ip6e_nxt; 928 spidx->ul_proto = nxt; 939 spidx->ul_proto = nxt; 983 int off, nxt; local in function:ipsec6_get_ulp [all...] |
/src/bin/sh/ |
memalloc.c | 358 char *str, *nxt; local in function:ststrcat 382 nxt = str; 391 scopy(arg, nxt); 392 nxt += len;
|
redir.c | 141 struct shell_fds *nxt; member in struct:shell_fds 775 fp->nxt = sh_fd_list; 791 *fpp = fp->nxt; 795 fpp = &fp->nxt; 805 for (fp = sh_fd_list; fp != NULL; fp = fp->nxt)
|
/src/sys/arch/mips/mips/ |
in_cksum.c | 283 in4_cksum(struct mbuf *m, uint8_t nxt, int off, int len) 287 if (nxt != 0) { 297 u.ipov.ih_pr = nxt;
|
/src/sys/kern/ |
uipc_mbufdebug.c | 675 uint8_t nxt; local in function:m_examine_ip6 695 nxt = ip6.ip6_nxt; 696 (*pr)("IPv6: Next Header = %u(%s)\n", nxt, str_ipproto(nxt)); 702 if (nxt == IPPROTO_HOPOPTS) { 708 nxt = hbh.ip6h_nxt; 712 (*pr)("IPv6: Next Header = %u(%s)\n", nxt, str_ipproto(nxt)); 715 switch (nxt) {
|
/src/sys/dev/usb/ |
vhci.c | 828 vhci_packet_t *pkt, *nxt; local in function:vhci_port_flush 841 TAILQ_FOREACH_SAFE(pkt, pktlist, portlist, nxt) { 852 TAILQ_FOREACH_SAFE(pkt, pktlist, portlist, nxt) { 1037 vhci_packet_t *pkt, *nxt; local in function:vhci_fd_read 1059 TAILQ_FOREACH_SAFE(pkt, pktlist, portlist, nxt) { 1111 vhci_packet_t *pkt, *nxt; local in function:vhci_fd_write 1133 TAILQ_FOREACH_SAFE(pkt, pktlist, portlist, nxt) {
|
/src/sys/arch/sun3/dev/ |
if_ie.c | 1159 uint16_t nxt; local in function:iememinit 1199 nxt = vtop16sw(sc, __UNVOLATILE(sc->rbuffs[0])); 1201 sc->rbuffs[i]->ie_rbd_next = nxt; 1202 nxt = vtop16sw(sc, __UNVOLATILE(sc->rbuffs[i])); 1221 nxt = vtop16sw(sc, __UNVOLATILE(sc->rframes[0])); 1223 sc->rframes[i]->ie_fd_next = nxt; 1224 nxt = vtop16sw(sc, __UNVOLATILE(sc->rframes[i]));
|