Searched refs:firstlen (Results 1 – 4 of 4) sorted by relevance
/openbsd/sys/netinet/ |
H A D | tcp_output.c | 1210 int firstlen, iphlen, hlen, tlen, off; in tcp_chopper() local 1268 firstlen = MIN(tlen - hlen, mss); in tcp_chopper() 1276 for (off = hlen + firstlen; off < tlen; off += mss) { in tcp_chopper() 1338 if (hlen + firstlen < tlen) { in tcp_chopper() 1339 m_adj(m0, hlen + firstlen - tlen); in tcp_chopper()
|
H A D | ip_output.c | 680 int firstlen, hlen, tlen, len, off; in ip_fragment() local 694 firstlen = len; in ip_fragment() 706 for (off = hlen + firstlen; off < tlen; off += len) { in ip_fragment() 754 if (hlen + firstlen < tlen) { in ip_fragment() 755 m_adj(m0, hlen + firstlen - tlen); in ip_fragment()
|
/openbsd/sys/dev/ic/ |
H A D | atw.c | 3465 int firstlen, hdrlen, lastlen, lastlen0, npkt, overlen, paylen; in atw_compute_duration() local 3494 firstlen = fraglen + overlen; in atw_compute_duration() 3496 firstlen = paylen + overlen; in atw_compute_duration() 3501 __func__, npkt, firstlen, lastlen0, lastlen, fraglen, in atw_compute_duration() 3508 rc = atw_compute_duration1(firstlen + hdrlen, ack, flags, rate, d0); in atw_compute_duration()
|
H A D | rtw.c | 2989 int firstlen, hdrlen, lastlen, lastlen0, npkt, overlen, paylen; in rtw_compute_duration() local 3018 firstlen = fraglen + overlen; in rtw_compute_duration() 3020 firstlen = paylen + overlen; in rtw_compute_duration() 3025 __func__, npkt, firstlen, lastlen0, lastlen, fraglen, in rtw_compute_duration() 3032 rc = rtw_compute_duration1(firstlen + hdrlen, ack, flags, rate, d0); in rtw_compute_duration()
|