Lines Matching refs:hlen
162 register uint_t hlen = getip_hl(ip); in vj_compress_tcp() local
182 th = (struct tcphdr *)&((int *)ip)[hlen]; in vj_compress_tcp()
188 thlen = (hlen + getth_off(th)) << 2; in vj_compress_tcp()
274 oth = (struct tcphdr *)&((int *)&cs->cs_ip)[hlen]; in vj_compress_tcp()
277 deltaS = hlen; in vj_compress_tcp()
492 register uint_t hlen; in vj_uncompress_uncomp() local
495 hlen = getip_hl(buf) << 2; in vj_uncompress_uncomp()
498 hlen + sizeof (struct tcphdr) > buflen || in vj_uncompress_uncomp()
499 (hlen += getth_off(buf+hlen) << 2) > buflen || hlen > MAX_HDR) { in vj_uncompress_uncomp()
512 BCOPY(buf, &cs->cs_ip, hlen); in vj_uncompress_uncomp()
514 cs->cs_hlen = hlen & 0xff; in vj_uncompress_uncomp()
536 register uint_t hlen; in vj_uncompress_tcp() local
573 hlen = getip_hl(&cs->cs_ip) << 2; in vj_uncompress_tcp()
575 th = (struct tcphdr *)((uint32_t *)&cs->cs_ip+hlen/sizeof (uint32_t)); in vj_uncompress_tcp()
668 for (changes = 0; hlen > 0; hlen -= 2) { in vj_uncompress_tcp()