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

  /src/external/lgpl3/mpfr/dist/src/
strtofr.c 460 mpfr_prec_t precx, prec, ysize_bits, pstr_size; local
506 /* pstr_size is the number of bytes we want to read from pstr->mant
508 We must have base^(pstr_size-1) >= (2^(GMP_NUMB_BITS))^ysize
510 i.e., pstr_size >= 1 + ysize*GMP_NUMB_BITS/log2(base)
513 We compute pstr_size = 1 + ceil(ysize_bits * Num / Den)
523 Note: denoting m = pstr_size and n = ysize_bits, assuming we have
539 pstr_size = (ysize_bits / Den) * Num
544 /* Since pstr_size corresponds to at least ysize_bits bits,
550 if (pstr_size > pstr->prec)
551 pstr_size = pstr->prec
    [all...]

Completed in 28 milliseconds