Searched refs:h6 (Results 1 - 3 of 3) sorted by relevance

/freebsd-9.3-release/sys/netpfil/ipfw/
H A Dip_fw_dynamic.c810 struct ip6_hdr *h6 = NULL; local
869 h6 = mtod(m, struct ip6_hdr *);
872 h6->ip6_nxt = IPPROTO_TCP;
873 h6->ip6_plen = htons(sizeof(struct tcphdr));
875 h6->ip6_src = id->src_ip6;
876 h6->ip6_dst = id->dst_ip6;
878 h6->ip6_src = id->dst_ip6;
879 h6->ip6_dst = id->src_ip6;
882 th = (struct tcphdr *)(h6 + 1);
931 th->th_sum = in6_cksum(m, IPPROTO_TCP, sizeof(*h6),
[all...]
/freebsd-9.3-release/contrib/llvm/include/llvm/ADT/
H A DHashing.h267 uint64_t h0, h1, h2, h3, h4, h5, h6; member in struct:llvm::hashing::detail::hash_state
277 state.h6 = hash_16_bytes(state.h4, state.h5);
300 h0 ^= h6;
306 h5 = h2 + h6;
307 h6 = h1 + fetch64(s + 16);
308 mix_32_bytes(s + 32, h5, h6);
316 hash_16_bytes(h4, h6) + shift_mix(length) * k1 + h0);
/freebsd-9.3-release/sys/contrib/pf/net/
H A Dpf.c2326 struct ip6_hdr *h6; local
2352 h6 = NULL;
2442 h6 = mtod(m, struct ip6_hdr *);
2445 h6->ip6_nxt = IPPROTO_TCP;
2446 h6->ip6_plen = htons(tlen);
2447 memcpy(&h6->ip6_src, &saddr->v6, sizeof(struct in6_addr));
2448 memcpy(&h6->ip6_dst, &daddr->v6, sizeof(struct in6_addr));
2450 th = (struct tcphdr *)((caddr_t)h6 + sizeof(struct ip6_hdr));
2537 h6->ip6_vfc |= IPV6_VERSION;
2538 h6
3702 struct ip6_hdr *h6; local
[all...]

Completed in 106 milliseconds