Home | History | Annotate | Download | only in libdecnumber

Lines Matching defs:FASTBASE

4851       #define FASTBASE 1000000000  /* base */
4855 #define FASTBASE 100000000
5028 if (*lp<FASTBASE) continue; /* it fits */
5029 lcarry=*lp/FASTBASE; /* top part [slow divide] */
5034 if (lcarry<FASTBASE) carry=(uInt)lcarry; /* [usual] */
5036 uInt carry2=(uInt)(lcarry/FASTBASE); /* top top part */
5038 *lp-=((uLong)FASTBASE*FASTBASE*carry2); /* [slow] */
5039 carry=(uInt)(lcarry-((uLong)FASTBASE*carry2)); /* [inline] */
5042 *lp-=((uLong)FASTBASE*carry); /* [inline] */