msiz              251 net/if_gre.c   			int msiz;
msiz              289 net/if_gre.c   				msiz = MOB_H_SIZ_S;
msiz              294 net/if_gre.c   				msiz = MOB_H_SIZ_L;
msiz              298 net/if_gre.c   			mob_h.hcrc = gre_in_cksum((u_int16_t *) &mob_h, msiz);
msiz              301 net/if_gre.c   			if ((m->m_data - msiz) < m->m_pktdat) {
msiz              312 net/if_gre.c   				m0->m_len = msiz + (inp->ip_hl << 2);
msiz              314 net/if_gre.c   				m0->m_pkthdr.len = m->m_pkthdr.len + msiz;
msiz              324 net/if_gre.c   				m->m_data -= msiz;
msiz              325 net/if_gre.c   				m->m_len += msiz;
msiz              326 net/if_gre.c   				m->m_pkthdr.len += msiz;
msiz              333 net/if_gre.c   			bcopy(&mob_h, (caddr_t)(inp + 1), (unsigned) msiz);
msiz              334 net/if_gre.c   			inp->ip_len = htons(ntohs(inp->ip_len) + msiz);
msiz              255 netinet/ip_gre.c 	int msiz;
msiz              287 netinet/ip_gre.c 		msiz = MOB_H_SIZ_L;
msiz              290 netinet/ip_gre.c 		msiz = MOB_H_SIZ_S;
msiz              292 netinet/ip_gre.c 	if (m->m_len < (ip->ip_hl << 2) + msiz) {
msiz              293 netinet/ip_gre.c 		m = m_pullup(m, (ip->ip_hl << 2) + msiz);
msiz              303 netinet/ip_gre.c 	if (gre_in_cksum((u_short *) &mip->mh, msiz) != 0) {
msiz              308 netinet/ip_gre.c 	bcopy(ip + (ip->ip_hl << 2) + msiz, ip + (ip->ip_hl << 2),
msiz              309 netinet/ip_gre.c 	      m->m_len - msiz - (ip->ip_hl << 2));
msiz              311 netinet/ip_gre.c 	m->m_len -= msiz;
msiz              312 netinet/ip_gre.c 	ip->ip_len = htons(ntohs(ip->ip_len) - msiz);
msiz              313 netinet/ip_gre.c 	m->m_pkthdr.len -= msiz;