HomeSort by: relevance | last modified time | path
    Searched defs:hlen (Results 1 - 25 of 231) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /src/usr.sbin/bootp/common/
hwaddr.h 11 * length of the network hardware address is stored in "hlen".
15 unsigned int hlen; member in struct:hwinfo
30 #define haddrlength(type) ((hwinfolist[(int) (type)]).hlen)
hwaddr.h 11 * length of the network hardware address is stored in "hlen".
15 unsigned int hlen; member in struct:hwinfo
30 #define haddrlength(type) ((hwinfolist[(int) (type)]).hlen)
hwaddr.h 11 * length of the network hardware address is stored in "hlen".
15 unsigned int hlen; member in struct:hwinfo
30 #define haddrlength(type) ((hwinfolist[(int) (type)]).hlen)
dumptab.c 184 int hlen = haddrlength(hp->htype);
188 haddrtoa(hp->haddr, hlen));
183 int hlen = haddrlength(hp->htype); local in function:dump_host
dumptab.c 184 int hlen = haddrlength(hp->htype);
188 haddrtoa(hp->haddr, hlen));
183 int hlen = haddrlength(hp->htype); local in function:dump_host
dumptab.c 184 int hlen = haddrlength(hp->htype);
188 haddrtoa(hp->haddr, hlen));
183 int hlen = haddrlength(hp->htype); local in function:dump_host
  /src/sys/lib/libsa/
ip.c 124 size_t hlen; local in function:readip
153 hlen = ip->ip_hl << 2;
154 if (hlen != sizeof(*ip) || ip_cksum(ip, hlen) != 0) {
157 if (ntohs(ip->ip_len) < hlen) {
167 return (ntohs(ip->ip_len) - hlen);
ip.c 124 size_t hlen; local in function:readip
153 hlen = ip->ip_hl << 2;
154 if (hlen != sizeof(*ip) || ip_cksum(ip, hlen) != 0) {
157 if (ntohs(ip->ip_len) < hlen) {
167 return (ntohs(ip->ip_len) - hlen);
ip.c 124 size_t hlen; local in function:readip
153 hlen = ip->ip_hl << 2;
154 if (hlen != sizeof(*ip) || ip_cksum(ip, hlen) != 0) {
157 if (ntohs(ip->ip_len) < hlen) {
167 return (ntohs(ip->ip_len) - hlen);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/bios/
power_budget.h 18 u8 hlen; member in struct:nvbios_power_budget
vpstate.h 10 u8 hlen; member in struct:nvbios_vpstate_header
power_budget.h 18 u8 hlen; member in struct:nvbios_power_budget
vpstate.h 10 u8 hlen; member in struct:nvbios_vpstate_header
power_budget.h 18 u8 hlen; member in struct:nvbios_power_budget
vpstate.h 10 u8 hlen; member in struct:nvbios_vpstate_header
  /src/sys/net/
rss_config.c 95 int hlen; local in function:rss_toeplitz_hash_from_mbuf_ipv4
104 hlen = ip->ip_hl << 2;
105 if (hlen < sizeof(struct ip))
114 if (m->m_len >= hlen + sizeof(struct tcphdr)) {
117 th = (struct tcphdr *)(mtod(m, char *) + hlen);
124 } else if (m->m_pkthdr.len >= hlen + sizeof(struct tcphdr)) {
128 m_copydata(__UNCONST(m), hlen + offsetof(struct tcphdr, th_sport),
147 if (m->m_len >= hlen + sizeof(struct udphdr)) {
150 uh = (struct udphdr *)(mtod(m, char *) + hlen);
157 } else if (m->m_pkthdr.len >= hlen + sizeof(struct udphdr))
196 int hlen; local in function:rss_toeplitz_hash_from_mbuf_ipv6
    [all...]
rss_config.c 95 int hlen; local in function:rss_toeplitz_hash_from_mbuf_ipv4
104 hlen = ip->ip_hl << 2;
105 if (hlen < sizeof(struct ip))
114 if (m->m_len >= hlen + sizeof(struct tcphdr)) {
117 th = (struct tcphdr *)(mtod(m, char *) + hlen);
124 } else if (m->m_pkthdr.len >= hlen + sizeof(struct tcphdr)) {
128 m_copydata(__UNCONST(m), hlen + offsetof(struct tcphdr, th_sport),
147 if (m->m_len >= hlen + sizeof(struct udphdr)) {
150 uh = (struct udphdr *)(mtod(m, char *) + hlen);
157 } else if (m->m_pkthdr.len >= hlen + sizeof(struct udphdr))
196 int hlen; local in function:rss_toeplitz_hash_from_mbuf_ipv6
    [all...]
rss_config.c 95 int hlen; local in function:rss_toeplitz_hash_from_mbuf_ipv4
104 hlen = ip->ip_hl << 2;
105 if (hlen < sizeof(struct ip))
114 if (m->m_len >= hlen + sizeof(struct tcphdr)) {
117 th = (struct tcphdr *)(mtod(m, char *) + hlen);
124 } else if (m->m_pkthdr.len >= hlen + sizeof(struct tcphdr)) {
128 m_copydata(__UNCONST(m), hlen + offsetof(struct tcphdr, th_sport),
147 if (m->m_len >= hlen + sizeof(struct udphdr)) {
150 uh = (struct udphdr *)(mtod(m, char *) + hlen);
157 } else if (m->m_pkthdr.len >= hlen + sizeof(struct udphdr))
196 int hlen; local in function:rss_toeplitz_hash_from_mbuf_ipv6
    [all...]
  /src/sys/external/isc/libsodium/dist/test/default/
metamorphic.c 15 size_t hlen; local in function:mm_generichash
28 hlen = randombytes_uniform(crypto_generichash_BYTES_MAX -
31 h = (unsigned char *) sodium_malloc(hlen);
32 h2 = (unsigned char *) sodium_malloc(hlen);
37 crypto_generichash_init(&st, k, klen, hlen);
43 crypto_generichash_final(&st, h, hlen);
45 crypto_generichash(h2, hlen, m, mlen, k, klen);
47 assert(memcmp(h, h2, hlen) == 0);
metamorphic.c 15 size_t hlen; local in function:mm_generichash
28 hlen = randombytes_uniform(crypto_generichash_BYTES_MAX -
31 h = (unsigned char *) sodium_malloc(hlen);
32 h2 = (unsigned char *) sodium_malloc(hlen);
37 crypto_generichash_init(&st, k, klen, hlen);
43 crypto_generichash_final(&st, h, hlen);
45 crypto_generichash(h2, hlen, m, mlen, k, klen);
47 assert(memcmp(h, h2, hlen) == 0);
metamorphic.c 15 size_t hlen; local in function:mm_generichash
28 hlen = randombytes_uniform(crypto_generichash_BYTES_MAX -
31 h = (unsigned char *) sodium_malloc(hlen);
32 h2 = (unsigned char *) sodium_malloc(hlen);
37 crypto_generichash_init(&st, k, klen, hlen);
43 crypto_generichash_final(&st, h, hlen);
45 crypto_generichash(h2, hlen, m, mlen, k, klen);
47 assert(memcmp(h, h2, hlen) == 0);
  /src/lib/libedit/
hist.c 105 size_t blen, hlen; local in function:hist_get
134 hlen = wcslen(hp) + 1;
136 if (hlen > blen && !ch_enlargebufs(el, hlen))
139 memcpy(el->el_line.buffer, hp, hlen * sizeof(*hp));
140 el->el_line.lastchar = el->el_line.buffer + hlen - 1;
  /src/sys/netmpls/
mpls_ttl.c 319 int hlen, len; local in function:ip4_check
329 hlen = iph->ip_hl << 2;
330 if (hlen < sizeof(struct ip))
332 if (hlen > m->m_len) {
333 if ((m = m_pullup(m, hlen)) == NULL)
346 in_cksum(m, hlen) != 0)
350 if (len < hlen || m->m_pkthdr.len < len)
  /src/usr.bin/rump_dhcpclient/
main.c 234 size_t hlen; local in function:main
256 hlen = sizeof(ifo->hostname);
257 if (rump_sys___sysctl(mib, __arraycount(mib), ifo->hostname, &hlen,
  /src/usr.bin/systat/
swap.c 78 void showspace(char *header, int hlen, long blocksize);
81 static int hlen, nswap, rnswap; variable in typeref:typename:int
153 header = getbsize(&hlen, &blocksize);
155 "Disk", hlen, header, "Used",
175 mvwprintw(wnd, i + 1, col, "%*d", hlen, sep->se_nblks / blk_div);
177 col += hlen;
190 "Total", hlen, avail / blk_div, used / blk_div);

Completed in 44 milliseconds

1 2 3 4 5 6 7 8 910