Home
last modified time | relevance | path

Searched refs:FASTBASE (Results 1 – 1 of 1) sorted by relevance

/external/icu/icu4c/source/i18n/
DdecNumber.c4890 #define FASTBASE 1000000000 /* base */ in decMultiplyOp() macro
4894 #define FASTBASE 100000000 in decMultiplyOp() macro
5071 if (*lp<FASTBASE) continue; /* it fits */ in decMultiplyOp()
5072 lcarry=*lp/FASTBASE; /* top part [slow divide] */ in decMultiplyOp()
5077 if (lcarry<FASTBASE) carry=(uInt)lcarry; /* [usual] */ in decMultiplyOp()
5079 uInt carry2=(uInt)(lcarry/FASTBASE); /* top top part */ in decMultiplyOp()
5081 *lp-=((uLong)FASTBASE*FASTBASE*carry2); /* [slow] */ in decMultiplyOp()
5082 carry=(uInt)(lcarry-((uLong)FASTBASE*carry2)); /* [inline] */ in decMultiplyOp()
5085 *lp-=((uLong)FASTBASE*carry); /* [inline] */ in decMultiplyOp()