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

123

/netbsd-current/sys/dev/i2c/
H A Dnxt2k.c70 nxt2k_writedata(struct nxt2k *nxt, uint8_t reg, uint8_t *data, size_t len) argument
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) argument
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
108 nxt2k_writereg(struct nxt2k *nxt, uint8_t reg, uint8_t *data, size_t len) argument
138 nxt2k_readreg(struct nxt2k *nxt, uint8_t reg, uint8_t *data, size_t len) argument
166 nxt2k_agc_reset(struct nxt2k *nxt) argument
178 nxt2k_mc_stop(struct nxt2k *nxt) argument
204 nxt2k_mc_start(struct nxt2k *nxt) argument
213 nxt2k4_mc_init(struct nxt2k *nxt) argument
265 nxt2k4_load_firmware(struct nxt2k *nxt) argument
348 nxt2k4_init(struct nxt2k *nxt) argument
498 nxt2k_get_signal(struct nxt2k *nxt) argument
516 nxt2k_get_snr(struct nxt2k *nxt) argument
548 nxt2k_get_dtv_status(struct nxt2k *nxt) argument
564 nxt2k_fe_read_ucblocks(struct nxt2k *nxt, uint32_t *ucblk) argument
575 nxt2k_fe_read_ber(struct nxt2k *nxt, uint32_t *ber) argument
588 nxt2k_fe_set_frontend(struct nxt2k *nxt, fe_modulation_t modulation) argument
762 nxt2k_init(struct nxt2k *nxt) argument
778 struct nxt2k *nxt; local
812 nxt2k_close(struct nxt2k *nxt) argument
818 nxt2k_enable(struct nxt2k *nxt, bool enable) argument
825 nxt2k_set_modulation(struct nxt2k *nxt, fe_modulation_t modulation) argument
[all...]
/netbsd-current/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/
H A Dnxt_30.c217 dns_rdata_nxt_t *nxt = source; local
221 REQUIRE(nxt != NULL);
222 REQUIRE(nxt->common.rdtype == type);
223 REQUIRE(nxt->common.rdclass == rdclass);
224 REQUIRE(nxt->typebits != NULL || nxt->len == 0);
225 if (nxt->typebits != NULL && (nxt->typebits[0] & 0x80) == 0) {
226 REQUIRE(nxt->len <= 16);
227 REQUIRE(nxt
242 dns_rdata_nxt_t *nxt = target; local
278 dns_rdata_nxt_t *nxt = source; local
[all...]
/netbsd-current/external/mpl/bind/dist/lib/dns/rdata/generic/
H A Dnxt_30.c217 dns_rdata_nxt_t *nxt = source; local
221 REQUIRE(nxt != NULL);
222 REQUIRE(nxt->common.rdtype == type);
223 REQUIRE(nxt->common.rdclass == rdclass);
224 REQUIRE(nxt->typebits != NULL || nxt->len == 0);
225 if (nxt->typebits != NULL && (nxt->typebits[0] & 0x80) == 0) {
226 REQUIRE(nxt->len <= 16);
227 REQUIRE(nxt
242 dns_rdata_nxt_t *nxt = target; local
278 dns_rdata_nxt_t *nxt = source; local
[all...]
/netbsd-current/sys/ufs/chfs/
H A Debh_misc.h48 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); \
/netbsd-current/sys/netinet/
H A Din4_cksum.c56 in4_cksum(struct mbuf *m, u_int8_t nxt, int off, int len) argument
65 if (nxt == 0)
77 * ip.ih_pr = nxt;
85 sum = ((len & 0xffff) + nxt) << 8;
87 sum = (len & 0xffff) + nxt;
/netbsd-current/sys/netinet6/
H A Din6_cksum.c47 in6_cksum(struct mbuf *m, u_int8_t nxt, uint32_t off, uint32_t len) argument
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;
H A Dip6_input.c256 int nxt, ours = 0, rh_present = 0, frg_present; local
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
1313 ip6_pullexthdr(struct mbuf *m, size_t off, int nxt) argument
1367 int len, nlen, nxt; local
1481 int nxt; local
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_lfstack.h54 T *nxt = cur->next;
56 u64 xch = (u64)(uptr)nxt | cnt;
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_lfstack.h52 T *nxt = cur->next;
54 u64 xch = (u64)(uptr)nxt | cnt;
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_lfstack.h53 T *nxt = cur->next;
55 u64 xch = (u64)(uptr)nxt | cnt;
/netbsd-current/sys/arch/xen/xen/
H A Dxennet_checksum.c86 uint8_t nxt; local
117 nxt = iph->ip_p;
132 nxt = ip6h->ip6_nxt;
147 switch (nxt) {
183 ifp->if_xname, nxt);
/netbsd-current/external/gpl3/gdb.old/dist/sim/erc32/
H A Dfunc.c862 while ((ev1->nxt != NULL) && (ev1->nxt->time <= delta)) {
863 ev1 = ev1->nxt;
865 if (ev1->nxt == NULL) {
866 ev1->nxt = ebase.freeq;
867 ebase.freeq = ebase.freeq->nxt;
868 ev1->nxt->nxt = NULL;
871 ebase.freeq = ebase.freeq->nxt;
872 evins->nxt
[all...]
/netbsd-current/external/gpl3/gdb/dist/sim/erc32/
H A Dfunc.c838 while ((ev1->nxt != NULL) && (ev1->nxt->time <= delta)) {
839 ev1 = ev1->nxt;
841 if (ev1->nxt == NULL) {
842 ev1->nxt = ebase.freeq;
843 ebase.freeq = ebase.freeq->nxt;
844 ev1->nxt->nxt = NULL;
847 ebase.freeq = ebase.freeq->nxt;
848 evins->nxt
[all...]
/netbsd-current/external/bsd/tcpdump/dist/
H A Daddrtoname.c131 struct hnamemem *nxt; member in struct:hnamemem
184 struct h6namemem *nxt; member in struct:h6namemem
288 for (; p->nxt; p = p->nxt) {
293 p->nxt = newhnamemem(ndo);
355 for (; p->nxt; p = p->nxt) {
360 p->nxt = newh6namemem(ndo);
746 for (tp = &tporttable[i & (HASHNAMESIZE-1)]; tp->nxt; tp = tp->nxt)
[all...]
H A Dprint-tcp.c79 struct tcp_seq_hash *nxt; member in struct:tcp_seq_hash
92 struct tcp_seq_hash6 *nxt; member in struct:tcp_seq_hash6
290 th->nxt; th = th->nxt)
295 if (!th->nxt || (flags & TH_SYN)) {
299 if (th->nxt == NULL) {
300 th->nxt = (struct tcp_seq_hash6 *)
302 if (th->nxt == NULL)
348 th->nxt; th = th->nxt)
905 uint8_t nxt; local
[all...]
H A Dprint-atalk.c587 struct hnamemem *nxt; member in struct:hnamemem
636 tp->nxt; tp = tp->nxt)
639 tp->nxt = newhnamemem(ndo);
654 for (tp = &hnametable[i & (HASHNAMESIZE-1)]; tp->nxt; tp = tp->nxt)
660 for (tp2 = &hnametable[i & (HASHNAMESIZE-1)]; tp2->nxt; tp2 = tp2->nxt)
663 tp->nxt = newhnamemem(ndo);
674 tp->nxt
[all...]
/netbsd-current/lib/libc/db/btree/
H A Dbt_split.c622 indx_t full, half, nxt, off, skip, top, used; local
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;
721 if (c->pg.index < nxt) /* Lef
827 indx_t nxt, top; local
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dtree-ssa-loop.cc535 tree *nxt, *idx; local
537 for (; ; addr_p = nxt)
545 nxt = &TREE_OPERAND (*addr_p, 0);
546 return cbck (*addr_p, nxt, data);
552 nxt = &TREE_OPERAND (*addr_p, 0);
563 nxt = &TREE_OPERAND (*addr_p, 0);
568 nxt = &TREE_OPERAND (*addr_p, 0);
/netbsd-current/sys/arch/powerpc/powerpc/
H A Din_cksum.c247 in4_cksum(struct mbuf *m, uint8_t nxt, int off, int len) argument
256 if (nxt != 0) {
260 u.ipov.ih_pr = nxt;
/netbsd-current/sys/netipsec/
H A Dipsec_input.c454 int protoff, nxt; local
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
555 nxt = prot;
556 while (nxt != IPPROTO_DONE) {
582 if ((inet6sw[ip6_protox[nxt]].pr_flags & PR_LASTHDR) != 0 &&
595 nxt
[all...]
/netbsd-current/external/bsd/flex/dist/src/
H A Dgen.c230 * is. The offset is base[nxt[i]] - (base of current state)]. That's
239 /* We need to have room in nxt/chk for two more slots: One for the
242 * nxt/chk pair with is EOB, i.e., 0, so we don't have to make sure
253 nxt[tblend + 1] = end_of_buffer_action;
258 nxt[tblend + 2] = 0;
269 nxt[offset - 1] = anum; /* action number */
280 tdata[curr++] = nxt[i];
290 tdata[curr++] = base[nxt[i]] - (i - chk[i]);
297 tdata[curr++] = nxt[tblend + 1];
300 tdata[curr++] = nxt[tblen
[all...]
H A Dtblcmp.c302 nxt = reallocate_integer_array (nxt, current_max_xpairs);
331 * consecutive unused records in the chk and nxt arrays.
338 * nxt and chk.
342 * chk/nxt, which should be 1.
348 * chk/nxt arrays.
396 /* Check to see if all elements in chk (and therefore nxt)
464 nxt[tblend] = end_of_buffer_state;
468 nxt[tblend + i] = 0;
482 /* mkentry - create base/def and nxt/ch
[all...]
/netbsd-current/external/apache2/mDNSResponder/dist/mDNSCore/
H A Dnsec.c316 // subdomain of the nsec's nxt field, then the qname is a empty non-terminal. For
329 const domainname *nxt = (const domainname *)&rdb->data; local
338 ret = DNSSECCanonicalOrder(nxt, qname, &subdomain);
356 const domainname *nxt = (const domainname *)&rdb->data; local
360 match2 = CountLabelsMatch(nxt, qname);
365 return SkipLeadingLabels(nxt, CountLabels(nxt) - match2);
379 const domainname *nxt = (const domainname *)&rdb->data; local
443 ret2 = DNSSECCanonicalOrder(name, nxt, &subdomain2);
448 LogDNSSEC("NSECNameExists: name %##s is same as nxt nam
[all...]
/netbsd-current/bin/sh/
H A Dmemalloc.c363 char *str, *nxt; local
387 nxt = str;
396 scopy(arg, nxt);
397 nxt += len;
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dtree-ssa-loop.c588 tree *nxt, *idx; local
590 for (; ; addr_p = nxt)
598 nxt = &TREE_OPERAND (*addr_p, 0);
599 return cbck (*addr_p, nxt, data);
605 nxt = &TREE_OPERAND (*addr_p, 0);
616 nxt = &TREE_OPERAND (*addr_p, 0);
621 nxt = &TREE_OPERAND (*addr_p, 0);

Completed in 255 milliseconds

123