Lines Matching defs:hoff
1754 int hoff, struct virtio_net_hdr *hdr)
1779 error = vtnet_rxq_csum_data_valid(rxq, m, etype, hoff, hdr);
1827 uint16_t etype, int hoff, struct virtio_net_hdr *hdr __unused)
1841 if (__predict_false(m->m_len < hoff + sizeof(struct ip)))
1844 struct ip *ip = (struct ip *)(m->m_data + hoff);
1851 if (__predict_false(m->m_len < hoff + sizeof(struct ip6_hdr))
1852 || ip6_lasthdr(m, hoff, IPPROTO_IPV6, &protocol) < 0)
1891 int hoff;
1901 hoff = sizeof(struct ether_vlan_header);
1903 hoff = sizeof(struct ether_header);
1906 return (vtnet_rxq_csum_needs_csum(rxq, m, etype, hoff, hdr));
1908 return (vtnet_rxq_csum_data_valid(rxq, m, etype, hoff, hdr));