HomeSort by: relevance | last modified time | path
    Searched refs:ovh (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/kern/
subr_extent.c 627 u_long newstart, newend, exend, beststart, bestovh, ovh; local
830 ovh = rp->er_start - newstart - size;
831 if ((flags & EX_FAST) || (ovh == 0))
838 if ((bestovh == 0) || (ovh < bestovh)) {
839 bestovh = ovh;
925 ovh = exend - newstart - (size - 1);
926 if ((flags & EX_FAST) || (ovh == 0))
933 if ((bestovh == 0) || (ovh < bestovh)) {
934 bestovh = ovh;
  /src/sys/netinet/
sctp_usrreq.c 1521 int ovh; local
1561 ovh = SCTP_MED_OVERHEAD;
1563 ovh = SCTP_MED_V4_OVERHEAD;
1565 *segsize = inp->sctp_frag_point - ovh;
2627 int ovh; local
2629 ovh = SCTP_MED_OVERHEAD;
2631 ovh = SCTP_MED_V4_OVERHEAD;
2639 inp->sctp_frag_point = (*segsize+ovh);
sctputil.c 1599 unsigned int eff_mtu, ovh; local
1602 ovh = SCTP_MIN_OVERHEAD;
1604 ovh = SCTP_MIN_V4_OVERHEAD;
1606 eff_mtu = mtu - ovh;
sctp_output.c 4088 int siz, ovh; local
4096 ovh = SCTP_MED_OVERHEAD;
4098 ovh = SCTP_MED_V4_OVERHEAD;
4102 siz = asoc->smallest_mtu - ovh;
4104 siz = (stcb->sctp_ep->sctp_frag_point - ovh);
7550 unsigned int cnt_of_space, i, ovh; local
7576 ovh = SCTP_MIN_OVERHEAD;
7578 ovh = SCTP_MIN_V4_OVERHEAD;
7580 if (cnt_of_space > (asoc->smallest_mtu-ovh)) {
7582 cnt_of_space = asoc->smallest_mtu - ovh;
    [all...]

Completed in 28 milliseconds