Searched refs:todrop (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.2-release/sys/netinet/
H A Dtcp_input.c1436 int rstreason, todrop, win; local
1992 todrop = tlen - tp->rcv_wnd;
1993 m_adj(m, -todrop);
1997 TCPSTAT_ADD(tcps_rcvbyteafterwin, todrop);
2177 todrop = tp->rcv_nxt - th->th_seq;
2178 if (todrop > 0) {
2186 todrop--;
2191 if (todrop > tlen
2192 || (todrop == tlen && (thflags & TH_FIN) == 0)) {
2205 todrop
[all...]
/freebsd-10.2-release/contrib/gcclibs/libdecnumber/
H A DdecNumber.c1746 Int todrop = ideal - a->exponent; /* most we can drop */ local
1748 if (todrop < 0)
1754 if (dropped < todrop)
1755 todrop = dropped; /* clamp to those available */
1756 if (todrop > 0)
1758 decShiftToLeast (a->lsu, D2U (a->digits), todrop);
1759 a->exponent += todrop; /* maintain numerical value */
1760 a->digits -= todrop; /* new length */

Completed in 176 milliseconds