/src/sys/netinet6/ |
route6.c | 54 struct ip6_rthdr *rh; local in function:route6_input 57 IP6_EXTHDR_GET(rh, struct ip6_rthdr *, m, off, sizeof(*rh)); 58 if (rh == NULL) { 63 switch (rh->ip6r_type) { 70 if (rh->ip6r_segleft == 0) { 71 rhlen = (rh->ip6r_len + 1) << 3; 81 return rh->ip6r_nxt;
|
nd6.h | 130 struct nd_opt_rd_hdr *rh; member in struct:nd_opts::__anonefb13b950108 152 #define nd_opts_rh nd_opt_each.rh
|
ip6_output.c | 141 ip6_handle_rthdr(struct ip6_rthdr *rh, struct ip6_hdr *ip6) 145 switch (rh->ip6r_type) { 427 struct ip6_rthdr *rh; local in function:ip6_output 429 rh = mtod(exthdrs.ip6e_rthdr, struct ip6_rthdr *); 431 error = ip6_handle_rthdr(rh, ip6);
|
/src/lib/libc/net/ |
rthdr.c | 403 const struct ip6_rthdr *rh; local in function:inet6_rth_segments 409 rh = (const struct ip6_rthdr *)bp; 411 switch (rh->ip6r_type) { 432 const struct ip6_rthdr *rh; local in function:inet6_rth_getaddr 438 rh = (const struct ip6_rthdr *)bp; 440 switch (rh->ip6r_type) {
|
/src/sys/dev/usb/ |
uthum.c | 344 int temp, rh; local in function:uthum_refresh 363 rh = uthum_sht1x_rh(humidity_tick, temp); 365 sc->sc_sensor[UTHUM_HUMIDITY].value_cur = rh / 1000; 413 /* return %RH * 1000 */ 417 int rh_l, rh; local in function:uthum_sht1x_rh 420 rh = ((temp - 2500) * (1 + (ticks >> 7)) + rh_l) / 10; 421 return rh;
|
/src/sys/dev/i2o/ |
dpti.c | 452 struct i2o_reply rh; local in function:dpti_passthrough 525 if ((rv = copyin((char *)data + msgsize, &rh, sizeof(rh))) != 0) { 531 repsize = (rh.msgflags >> 14) & ~3; 532 if (repsize < sizeof(rh) || repsize >= IOP_MAX_MSG_SIZE) {
|
/src/sys/dev/marvell/ |
mvsdio.c | 331 uint16_t rh[MVSDIO_NRH + 1]; local in function:mvsdio_intr 336 rh[i + 1] = bus_space_read_4(sc->sc_iot, 338 rh[0] = 0; 341 rh[i - 1] << 30 | 342 rh[i + 0] << 14 | 343 rh[i + 1] >> 2; 348 rh[i] = bus_space_read_4(sc->sc_iot, 351 ((rh[0] & 0x03ff) << 22) | 352 ((rh[1] ) << 6) | 353 ((rh[2] & 0x003f) << 0) [all...] |
/src/tests/lib/libc/db/ |
h_db.c | 617 static RECNOINFO rh; local in function:setinfo 677 rh.flags = atoi(eq); 678 return &rh; 681 rh.cachesize = atoi(eq); 682 return &rh; 685 rh.lorder = atoi(eq); 686 return &rh; 689 rh.reclen = atoi(eq); 690 return &rh; 693 rh.bval = atoi(eq) [all...] |
/src/usr.sbin/rtadvd/ |
rtadvd.c | 111 struct nd_opt_rd_hdr *rh; member in struct:nd_opts::__anon63a4f0fa0108 119 #define nd_opts_rh nd_opt_each.rh
|
/src/sbin/ping6/ |
ping6.c | 1659 struct ip6_rthdr *rh = (struct ip6_rthdr *)extbuf; local in function:pr_rthdr 1663 printf("nxt %u, len %u (%d bytes), type %u, ", rh->ip6r_nxt, 1664 rh->ip6r_len, (rh->ip6r_len + 1) << 3, rh->ip6r_type); 1669 printf("%d left\n", rh->ip6r_segleft);
|