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

  /src/external/lgpl3/gmp/dist/demos/expr/
exprfa.c 53 int mant_base, exp_base; local
78 exp_base = 10;
80 exp_base = 10;
82 exp_base = base;
124 if (! isasciidigit_in_base (e[i], exp_base))
  /src/external/lgpl3/gmp/dist/mpf/
set_str.c 131 int exp_base; local
157 exp_base = base;
161 exp_base = 10;
297 /* Scan and convert the exponent, in base exp_base. */
305 if (dig >= exp_base)
313 while (dig < exp_base)
315 exp_in_base = exp_in_base * exp_base;
  /src/external/lgpl3/mpfr/dist/src/
strtofr.c 39 mpfr_exp_t exp_base; /* number of digits before the point, + exponent member in struct:parsed_string
336 pstr->exp_base = 0;
357 pstr->exp_base ++;
382 MPFR_ASSERTD (pstr->exp_base >= 0);
405 MPFR_SADD_OVERFLOW (sum, sum, pstr->exp_base,
409 /* Since exp_base was positive, read_exp + exp_base can't
412 pstr->exp_base = sum;
431 if (MPFR_LIKELY (pstr->exp_base != MPFR_EXP_MIN))
432 pstr->exp_base--
    [all...]

Completed in 153 milliseconds