Lines Matching refs:decGetDigits
266 static Int decGetDigits(Unit *, Int);
387 dn->digits=decGetDigits(dn->lsu, up-dn->lsu); in uprv_decNumberFromUInt32()
867 res->digits=decGetDigits(res->lsu, uc-res->lsu); in uprv_decNumberAnd()
1254 res->digits=decGetDigits(res->lsu, uc-res->lsu); in uprv_decNumberInvert()
1881 res->digits=decGetDigits(res->lsu, uc-res->lsu); in uprv_decNumberOr()
2587 res->digits=decGetDigits(res->lsu, msumax-res->lsu+1); in uprv_decNumberRotate()
3311 res->digits=decGetDigits(res->lsu, uc-res->lsu); in uprv_decNumberXor()
3995 res->digits=decGetDigits(res->lsu, D2U(res->digits)); in decAddOp()
4116 res->digits=decGetDigits(acc, D2U(res->digits)); in decAddOp()
4135 res->digits=decGetDigits(acc, D2U(res->digits)); in decAddOp()
4151 res->digits=decGetDigits(res->lsu, D2U(res->digits)); in decAddOp()
4672 accdigits=decGetDigits(accnext, accunits); in decDivideOp()
4726 accdigits=decGetDigits(var1, var1units); in decDivideOp()
4798 accdigits=decGetDigits(accnext, accunits); /* count digits exactly */ in decDivideOp()
5153 res->digits=decGetDigits(acc, accunits); /* count digits exactly */ in decMultiplyOp()
7691 dn->digits=decGetDigits(dn->lsu, msu-dn->lsu+1);
7810 static Int decGetDigits(Unit *uar, Int len) { function