Home
last modified time | relevance | path

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

/dragonfly/contrib/mpfr/src/
HDmulders.c37 #ifdef MPFR_MULHIGH_TAB_SIZE
38 static short mulhigh_ktab[MPFR_MULHIGH_TAB_SIZE];
41 #define MPFR_MULHIGH_TAB_SIZE \ macro
92 MPFR_ASSERTN (MPFR_MULHIGH_TAB_SIZE >= 8); /* so that 3*(n/4) > n/2 */ in mpfr_mulhigh_n()
93 k = MPFR_LIKELY (n < MPFR_MULHIGH_TAB_SIZE) ? mulhigh_ktab[n] : 3*(n/4); in mpfr_mulhigh_n()
125 MPFR_ASSERTN (MPFR_MULHIGH_TAB_SIZE >= 8); /* so that 3*(n/4) > n/2 */ in mpfr_mullow_n()
126 k = MPFR_LIKELY (n < MPFR_MULHIGH_TAB_SIZE) ? mulhigh_ktab[n] : 3*(n/4); in mpfr_mullow_n()
302 MPFR_ASSERTN (MPFR_MULHIGH_TAB_SIZE >= 15); /* so that 2*(n/3) >= (n+4)/2 */ in mpfr_divhigh_n()