Home
last modified time | relevance | path

Searched refs:CUNIT (Results 1 – 3 of 3) sorted by relevance

/freebsd-9-stable/sys/netipx/
Dspx_reass.c168 cb->s_cwnd = CUNIT; in spx_reass()
173 if (cwnd >= 4 * CUNIT) in spx_reass()
244 incr = CUNIT; in spx_reass()
Dspx_usrreq.c589 win = min(cb->s_swnd, (cb->s_cwnd / CUNIT)); in spx_output()
1118 cb->s_cwnd = sbspace(sb) * CUNIT / cb->s_mtu; in spx_attach()
1120 cb->s_cwmx = sbspace(sb) * CUNIT / (2 * sizeof(struct spx)); in spx_attach()
1525 cb->s_cwnd = (sbspace(sb) * CUNIT) / cb->s_mtu; in spx_template()
1531 cb->s_cwmx = (sbspace(sb) * CUNIT) / (2 * sizeof(struct spx)); in spx_template()
1749 win = min(cb->s_swnd, (cb->s_cwnd/CUNIT)) / 2; in spx_timers()
1752 cb->s_cwnd = CUNIT; in spx_timers()
1753 cb->s_ssthresh = win * CUNIT; in spx_timers()
Dspx.h150 #define CUNIT 1024 /* scaling for ... */ macro