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

  /src/external/lgpl3/mpfr/dist/src/
sub1.c 41 int inexact, shift_b, shift_c, add_exp = 0; local
251 shift_c = ((mpfr_uexp_t) diff_exp - cancel) % GMP_NUMB_BITS;
255 shift_c = diff_exp - (cancel % GMP_NUMB_BITS);
256 shift_c = (shift_c + GMP_NUMB_BITS) % GMP_NUMB_BITS;
258 MPFR_ASSERTD (shift_c >= 0 && shift_c < GMP_NUMB_BITS);
260 if (MPFR_UNLIKELY(shift_c == 0))
273 cp[0] = mpn_rshift (cp + 1, MPFR_MANT(c), cn++, shift_c);
277 MPFR_LOG_MSG (("rnd=%s shift_b=%d shift_c=%d diffexp=%" MPFR_EXP_FSPE
    [all...]

Completed in 21 milliseconds