Home
last modified time | relevance | path

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

/openbmc/qemu/libdecnumber/
H A DdecNumber.c5003 #define FASTBASE 1000000000 /* base */ in decMultiplyOp() macro
5007 #define FASTBASE 100000000 in decMultiplyOp() macro
5180 if (*lp<FASTBASE) continue; /* it fits */ in decMultiplyOp()
5181 lcarry=*lp/FASTBASE; /* top part [slow divide] */ in decMultiplyOp()
5186 if (lcarry<FASTBASE) carry=(uInt)lcarry; /* [usual] */ in decMultiplyOp()
5188 uInt carry2=(uInt)(lcarry/FASTBASE); /* top top part */ in decMultiplyOp()
5190 *lp-=((uLong)FASTBASE*FASTBASE*carry2); /* [slow] */ in decMultiplyOp()
5191 carry=(uInt)(lcarry-((uLong)FASTBASE*carry2)); /* [inline] */ in decMultiplyOp()
5194 *lp-=((uLong)FASTBASE*carry); /* [inline] */ in decMultiplyOp()