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

  /src/sys/netinet/
tcp_input.c 347 tcp_urp_drop(struct tcphdr *th, int todrop, int *tiflags)
349 if (th->th_urp > todrop) {
350 th->th_urp -= todrop;
992 int todrop; local
997 todrop = vp->rcv_nxt - th->th_seq;
999 if (todrop > 0) {
1004 todrop--;
1006 if (todrop > tlen ||
1007 (todrop == tlen && (tiflags & TH_FIN) == 0)) {
1022 todrop = tlen
1200 int todrop, acked, ourfinisacked, needoutput = 0; local
    [all...]
  /src/external/gpl3/gcc/dist/libdecnumber/
decNumber.c 3073 Int todrop=ideal-a->exponent; /* most that can be dropped */ local
3074 if (todrop<0) status|=DEC_Rounded; /* ideally would add 0s */
3079 if (todrop>maxdrop && set->clamp) { /* apply clamping */
3080 todrop=maxdrop;
3083 if (dropped<todrop) { /* clamp to those available */
3084 todrop=dropped;
3087 if (todrop>0) { /* have some to drop */
3088 decShiftToLeast(a->lsu, D2U(a->digits), todrop);
3089 a->exponent+=todrop; /* maintain numerical value */
3090 a->digits-=todrop; /* new length *
    [all...]
  /src/external/gpl3/gcc.old/dist/libdecnumber/
decNumber.c 3073 Int todrop=ideal-a->exponent; /* most that can be dropped */ local
3074 if (todrop<0) status|=DEC_Rounded; /* ideally would add 0s */
3079 if (todrop>maxdrop && set->clamp) { /* apply clamping */
3080 todrop=maxdrop;
3083 if (dropped<todrop) { /* clamp to those available */
3084 todrop=dropped;
3087 if (todrop>0) { /* have some to drop */
3088 decShiftToLeast(a->lsu, D2U(a->digits), todrop);
3089 a->exponent+=todrop; /* maintain numerical value */
3090 a->digits-=todrop; /* new length *
    [all...]
  /src/external/gpl3/gdb/dist/libdecnumber/
decNumber.c 3073 Int todrop=ideal-a->exponent; /* most that can be dropped */ local
3074 if (todrop<0) status|=DEC_Rounded; /* ideally would add 0s */
3079 if (todrop>maxdrop && set->clamp) { /* apply clamping */
3080 todrop=maxdrop;
3083 if (dropped<todrop) { /* clamp to those available */
3084 todrop=dropped;
3087 if (todrop>0) { /* have some to drop */
3088 decShiftToLeast(a->lsu, D2U(a->digits), todrop);
3089 a->exponent+=todrop; /* maintain numerical value */
3090 a->digits-=todrop; /* new length *
    [all...]
  /src/external/gpl3/gdb.old/dist/libdecnumber/
decNumber.c 3073 Int todrop=ideal-a->exponent; /* most that can be dropped */ local
3074 if (todrop<0) status|=DEC_Rounded; /* ideally would add 0s */
3079 if (todrop>maxdrop && set->clamp) { /* apply clamping */
3080 todrop=maxdrop;
3083 if (dropped<todrop) { /* clamp to those available */
3084 todrop=dropped;
3087 if (todrop>0) { /* have some to drop */
3088 decShiftToLeast(a->lsu, D2U(a->digits), todrop);
3089 a->exponent+=todrop; /* maintain numerical value */
3090 a->digits-=todrop; /* new length *
    [all...]

Completed in 32 milliseconds