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

  /src/sys/kern/
subr_extent.c 623 u_long newstart, newend, exend, beststart, bestovh, ovh; local in function:extent_alloc_subregion1
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;
  /src/sys/netinet/
sctp_usrreq.c 1521 int ovh; local in function:sctp_optsget
1561 ovh = SCTP_MED_OVERHEAD;
1563 ovh = SCTP_MED_V4_OVERHEAD;
1565 *segsize = inp->sctp_frag_point - ovh;
2627 int ovh; local in function:sctp_optsset
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 in function:sctp_mtu_size_reset
1602 ovh = SCTP_MIN_OVERHEAD;
1604 ovh = SCTP_MIN_V4_OVERHEAD;
1606 eff_mtu = mtu - ovh;
sctp_output.c 4088 int siz, ovh; local in function:sctp_get_frag_point
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 in function:send_forward_tsn
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 99 milliseconds