HomeSort by: relevance | last modified time | path
    Searched defs:FASTBASE (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc/dist/libdecnumber/
decNumber.c 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] *
    [all...]
  /src/external/gpl3/gcc.old/dist/libdecnumber/
decNumber.c 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] *
    [all...]
  /src/external/gpl3/gdb/dist/libdecnumber/
decNumber.c 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] *
    [all...]
  /src/external/gpl3/gdb.old/dist/libdecnumber/
decNumber.c 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] *
    [all...]

Completed in 35 milliseconds