Home | History | Annotate | Download | only in libdecnumber

Lines Matching defs:decGetDigits

151 /*    is found by decGetDigits, which accounts for leading zeros.     */
249 static Int decGetDigits(Unit *, Int);
361 if (uin==0) return dn; /* [or decGetDigits bad call] */
366 dn->digits=decGetDigits(dn->lsu, up-dn->lsu);
846 res->digits=decGetDigits(res->lsu, uc-res->lsu);
1233 res->digits=decGetDigits(res->lsu, uc-res->lsu);
1853 res->digits=decGetDigits(res->lsu, uc-res->lsu);
2559 res->digits=decGetDigits(res->lsu, msumax-res->lsu+1);
3276 res->digits=decGetDigits(res->lsu, uc-res->lsu);
3960 res->digits=decGetDigits(res->lsu, D2U(res->digits));
4079 res->digits=decGetDigits(acc, D2U(res->digits));
4098 res->digits=decGetDigits(acc, D2U(res->digits));
4114 res->digits=decGetDigits(res->lsu, D2U(res->digits));
4635 accdigits=decGetDigits(accnext, accunits);
4689 accdigits=decGetDigits(var1, var1units);
4761 accdigits=decGetDigits(accnext, accunits); /* count digits exactly */
5112 res->digits=decGetDigits(acc, accunits); /* count digits exactly */
7642 dn->digits=decGetDigits(dn->lsu, msu-dn->lsu+1);
7749 /* decGetDigits -- count digits in a Units array */
7761 static Int decGetDigits(Unit *uar, Int len) {
7769 if (len<1) printf("decGetDigits called with len<1 [%ld]\n", (LI)len);
7796 } /* decGetDigits */