Searched refs:ovh (Results 1 - 4 of 4) sorted by relevance

/netbsd-current/sys/kern/
H A Dsubr_extent.c623 u_long newstart, newend, exend, beststart, bestovh, ovh; local
826 ovh = rp->er_start - newstart - size;
827 if ((flags & EX_FAST) || (ovh == 0))
834 if ((bestovh == 0) || (ovh < bestovh)) {
835 bestovh = ovh;
921 ovh = exend - newstart - (size - 1);
922 if ((flags & EX_FAST) || (ovh == 0))
929 if ((bestovh == 0) || (ovh < bestovh)) {
930 bestovh = ovh;
/netbsd-current/sys/netinet/
H A Dsctp_usrreq.c1527 int ovh; local
1567 ovh = SCTP_MED_OVERHEAD;
1569 ovh = SCTP_MED_V4_OVERHEAD;
1571 *segsize = inp->sctp_frag_point - ovh;
2633 int ovh; local
2635 ovh = SCTP_MED_OVERHEAD;
2637 ovh = SCTP_MED_V4_OVERHEAD;
2645 inp->sctp_frag_point = (*segsize+ovh);
H A Dsctputil.c1599 unsigned int eff_mtu, ovh; local
1602 ovh = SCTP_MIN_OVERHEAD;
1604 ovh = SCTP_MIN_V4_OVERHEAD;
1606 eff_mtu = mtu - ovh;
H A Dsctp_output.c4091 int siz, ovh; local
4099 ovh = SCTP_MED_OVERHEAD;
4101 ovh = SCTP_MED_V4_OVERHEAD;
4105 siz = asoc->smallest_mtu - ovh;
4107 siz = (stcb->sctp_ep->sctp_frag_point - ovh);
7564 unsigned int cnt_of_space, i, ovh; local
7590 ovh = SCTP_MIN_OVERHEAD;
7592 ovh = SCTP_MIN_V4_OVERHEAD;
7594 if (cnt_of_space > (asoc->smallest_mtu-ovh)) {
7596 cnt_of_space = asoc->smallest_mtu - ovh;
[all...]

Completed in 305 milliseconds