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

/external/chromium_org/third_party/icu/source/i18n/
H A DdecNumber.c4886 #define FASTBASE 1000000000 /* base */ macro
4890 #define FASTBASE 100000000 macro
5067 if (*lp<FASTBASE) continue; /* it fits */
5068 lcarry=*lp/FASTBASE; /* top part [slow divide] */
5073 if (lcarry<FASTBASE) carry=(uInt)lcarry; /* [usual] */
5075 uInt carry2=(uInt)(lcarry/FASTBASE); /* top top part */
5077 *lp-=((uLong)FASTBASE*FASTBASE*carry2); /* [slow] */
5078 carry=(uInt)(lcarry-((uLong)FASTBASE*carry2)); /* [inline] */
5081 *lp-=((uLong)FASTBASE*carr
[all...]
/external/icu/icu4c/source/i18n/
H A DdecNumber.c4888 #define FASTBASE 1000000000 /* base */ macro
4892 #define FASTBASE 100000000 macro
5069 if (*lp<FASTBASE) continue; /* it fits */
5070 lcarry=*lp/FASTBASE; /* top part [slow divide] */
5075 if (lcarry<FASTBASE) carry=(uInt)lcarry; /* [usual] */
5077 uInt carry2=(uInt)(lcarry/FASTBASE); /* top top part */
5079 *lp-=((uLong)FASTBASE*FASTBASE*carry2); /* [slow] */
5080 carry=(uInt)(lcarry-((uLong)FASTBASE*carry2)); /* [inline] */
5083 *lp-=((uLong)FASTBASE*carr
[all...]

Completed in 341 milliseconds