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

  /src/external/lgpl3/mpfr/dist/src/
sum.c 169 minexp - shiftq < maxexp2, as required by the algorithm. */
467 mpfr_prec_t shiftq; local
487 shiftq = cancel - 2 - (mpfr_prec_t) diffexp;
489 MPFR_ASSERTD (shiftq > 0);
490 shifts = shiftq / GMP_NUMB_BITS;
491 shiftc = shiftq % GMP_NUMB_BITS;
492 MPFR_LOG_MSG (("shiftq = %Pd = %Pd * GMP_NUMB_BITS + %d\n",
493 shiftq, (mpfr_prec_t) shifts, shiftc));
499 /* Compute minexp = minexp - shiftq safely. */
500 SAFE_SUB (minexp, minexp, shiftq);
    [all...]

Completed in 24 milliseconds