Home
last modified time | relevance | path

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

/dragonfly/contrib/mpfr/src/
HDsub1sp.c235 MPFR_ASSERTD(!(ap[0] & MPFR_LIMB_MASK((unsigned int) (-p) in mpfr_sub1sp()
265 MPFR_ASSERTD(!(ap[len]&MPFR_LIMB_MASK((unsigned int) (-p) in mpfr_sub1sp()
320 mask = ~MPFR_LIMB_MASK(sh); in mpfr_sub1sp()
535 if (MPFR_LIKELY( cp[0] & MPFR_LIMB_MASK(sh-1) )) in mpfr_sub1sp()
555 if (tp[kx] & MPFR_LIMB_MASK(sx)) in mpfr_sub1sp()
580 if (tp[kx] & MPFR_LIMB_MASK(sx)) in mpfr_sub1sp()
620 if (MPFR_LIKELY(bbcp==0 || (tp[kx]&MPFR_LIMB_MASK(sx)))) in mpfr_sub1sp()
636 mask = ~MPFR_LIMB_MASK (sh); in mpfr_sub1sp()
HDadd1sp.c130 ap[0] &= ~MPFR_LIMB_MASK(sh); /* Clear LSB bit */ in mpfr_add1sp()
249 if (MPFR_LIKELY(cp[0]&MPFR_LIMB_MASK(sh-1))) in mpfr_add1sp()
269 if (tp[kx] & MPFR_LIMB_MASK(sx)) in mpfr_add1sp()
294 if (tp[kx]&MPFR_LIMB_MASK(sx)) in mpfr_add1sp()
308 mask = ~MPFR_LIMB_MASK(sh); in mpfr_add1sp()
HDround_raw_generic.c110 lomask = MPFR_LIMB_MASK (GMP_NUMB_BITS - rw); in mpfr_round_raw_generic()
246 himask = ~MPFR_LIMB_MASK (GMP_NUMB_BITS - rw); in mpfr_round_raw_generic()
HDcheck.c65 tmp = MPFR_LIMB_MASK (GMP_NUMB_BITS - rw); in mpfr_check()
HDadd1.c173 mask = MPFR_LIMB_MASK (sh); in mpfr_add1()
193 mask = MPFR_LIMB_MASK (sh); in mpfr_add1()
HDround_p.c80 mask = s == GMP_NUMB_BITS ? MP_LIMB_T_MAX : MPFR_LIMB_MASK (s); in mpfr_round_p()
HDset_z_exp.c118 sb &= MPFR_LIMB_MASK (GMP_NUMB_BITS - k); in mpfr_set_z_2exp()
HDsqrt.c148 sticky1 = rp[0] & ((sh < GMP_NUMB_BITS) ? MPFR_LIMB_MASK(sh) in mpfr_sqrt()
HDdiv.c331 q0p[0] &= ~MPFR_LIMB_MASK(sh); /* put to zero low sh bits */ in mpfr_div()
459 sticky3 = qp[0] & MPFR_LIMB_MASK(sh); /* does nothing when sh=0 */ in mpfr_div()
HDdiv_ui.c187 d = *yp & MPFR_LIMB_MASK (sh); in mpfr_div_ui()
HDrec_sqrt.c379 u[0] &= ~MPFR_LIMB_MASK(pl); in mpfr_mpn_rec_sqrt()
HDsub1.c326 carry = ap[0] & MPFR_LIMB_MASK (sh); in mpfr_sub1()
HDvasprintf.c786 pm = MPFR_LIMB_MASK (GMP_NUMB_BITS - nbits); in next_base_power_p()
HDmpfr-impl.h908 #define MPFR_LIMB_MASK(s) ((MPFR_LIMB_ONE<<(s))-MPFR_LIMB_ONE) macro