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

/external/icu/icu4c/source/i18n/
H A DdecNumber.cpp3107 Int todrop=ideal-a->exponent; /* most that can be dropped */ local
3108 if (todrop<0) status|=DEC_Rounded; /* ideally would add 0s */
3113 if (todrop>maxdrop && set->clamp) { /* apply clamping */
3114 todrop=maxdrop;
3117 if (dropped<todrop) { /* clamp to those available */
3118 todrop=dropped;
3121 if (todrop>0) { /* have some to drop */
3122 decShiftToLeast(a->lsu, D2U(a->digits), todrop);
3123 a->exponent+=todrop; /* maintain numerical value */
3124 a->digits-=todrop; /* ne
[all...]

Completed in 115 milliseconds