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

/external/qemu/slirp/
H A Dtcp_input.c243 int todrop, acked, ourfinisacked, needoutput = 0; local
804 todrop = ti->ti_len - tp->rcv_wnd;
805 m_adj(m, -todrop);
809 STAT(tcpstat.tcps_rcvbyteafterwin += todrop);
851 todrop = tp->rcv_nxt - ti->ti_seq;
852 if (todrop > 0) {
860 todrop--;
865 if (todrop > ti->ti_len
866 || (todrop == ti->ti_len && (tiflags & TH_FIN) == 0)) {
879 todrop
[all...]
/external/qemu/slirp-android/
H A Dtcp_input.c243 int todrop, acked, ourfinisacked, needoutput = 0; local
810 todrop = ti->ti_len - tp->rcv_wnd;
811 m_adj(m, -todrop);
815 STAT(tcpstat.tcps_rcvbyteafterwin += todrop);
857 todrop = tp->rcv_nxt - ti->ti_seq;
858 if (todrop > 0) {
866 todrop--;
871 if (todrop > ti->ti_len
872 || (todrop == ti->ti_len && (tiflags & TH_FIN) == 0)) {
885 todrop
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A DdecNumber.c3103 Int todrop=ideal-a->exponent; /* most that can be dropped */ local
3104 if (todrop<0) status|=DEC_Rounded; /* ideally would add 0s */
3109 if (todrop>maxdrop && set->clamp) { /* apply clamping */
3110 todrop=maxdrop;
3113 if (dropped<todrop) { /* clamp to those available */
3114 todrop=dropped;
3117 if (todrop>0) { /* have some to drop */
3118 decShiftToLeast(a->lsu, D2U(a->digits), todrop);
3119 a->exponent+=todrop; /* maintain numerical value */
3120 a->digits-=todrop; /* ne
[all...]
/external/icu/icu4c/source/i18n/
H A DdecNumber.c3105 Int todrop=ideal-a->exponent; /* most that can be dropped */ local
3106 if (todrop<0) status|=DEC_Rounded; /* ideally would add 0s */
3111 if (todrop>maxdrop && set->clamp) { /* apply clamping */
3112 todrop=maxdrop;
3115 if (dropped<todrop) { /* clamp to those available */
3116 todrop=dropped;
3119 if (todrop>0) { /* have some to drop */
3120 decShiftToLeast(a->lsu, D2U(a->digits), todrop);
3121 a->exponent+=todrop; /* maintain numerical value */
3122 a->digits-=todrop; /* ne
[all...]

Completed in 202 milliseconds