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

/haiku-buildtools/gcc/libdecnumber/
H A DdecNumber.c3073 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; /* ne
[all...]

Completed in 109 milliseconds