HomeSort by: relevance | last modified time | path
    Searched refs:realprec (Results 1 - 3 of 3) sorted by relevancy

  /src/external/lgpl3/mpfr/dist/src/
gamma.c 117 mpfr_prec_t realprec; local
390 realprec = MPFR_PREC (gamma);
395 if (realprec < w)
396 realprec = w;
398 if (realprec < w)
399 realprec = w;
401 realprec = realprec + MPFR_INT_CEIL_LOG2 (realprec) + 20;
402 MPFR_ASSERTD(realprec >= 5)
    [all...]
exp3.c 167 mpfr_prec_t realprec, Prec; local
203 realprec = MPFR_PREC (y) + MPFR_INT_CEIL_LOG2 (prec_x + MPFR_PREC (y));
204 Prec = realprec + shift + 2 + shift_x;
210 MPFR_ZIV_INIT (ziv_loop, realprec);
290 if (MPFR_CAN_ROUND (shift_x > 0 ? t : tmp, realprec,
326 MPFR_ZIV_NEXT (ziv_loop, realprec);
327 Prec = realprec + shift + 2 + shift_x;
atan.c 292 mpfr_prec_t prec, realprec, est_lost, lost; local
365 realprec = MPFR_PREC (atan) + MPFR_INT_CEIL_LOG2 (MPFR_PREC (atan)) + 4;
366 prec = realprec + GMP_NUMB_BITS;
381 n0 = MPFR_INT_CEIL_LOG2 ((realprec + sup) + 3);
382 /* since realprec >= 4, n0 >= ceil(log2(8)) >= 3, thus 3*n0 > 2 */
383 prec = (realprec + sup) + 1 + MPFR_INT_CEIL_LOG2 (3*n0-2);
506 if (MPFR_LIKELY (MPFR_CAN_ROUND (arctgt, realprec + est_lost - lost,
509 MPFR_ZIV_NEXT (loop, realprec);

Completed in 15 milliseconds