Home
last modified time | relevance | path

Searched refs:shift_c (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/lgpl3/mpfr/dist/src/
H A Dsub1.c41 int inexact, shift_b, shift_c, add_exp = 0; in mpfr_sub1() local
251 shift_c = ((mpfr_uexp_t) diff_exp - cancel) % GMP_NUMB_BITS; in mpfr_sub1()
255 shift_c = diff_exp - (cancel % GMP_NUMB_BITS); in mpfr_sub1()
256 shift_c = (shift_c + GMP_NUMB_BITS) % GMP_NUMB_BITS; in mpfr_sub1()
258 MPFR_ASSERTD (shift_c >= 0 && shift_c < GMP_NUMB_BITS); in mpfr_sub1()
260 if (MPFR_UNLIKELY(shift_c == 0)) in mpfr_sub1()
273 cp[0] = mpn_rshift (cp + 1, MPFR_MANT(c), cn++, shift_c); in mpfr_sub1()
278 "d\n", mpfr_print_rnd_mode (rnd_mode), shift_b, shift_c, in mpfr_sub1()