Searched refs:MPFR_LIMB_MASK (Results 1 – 14 of 14) sorted by relevance
235 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()
130 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()
110 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()
65 tmp = MPFR_LIMB_MASK (GMP_NUMB_BITS - rw); in mpfr_check()
173 mask = MPFR_LIMB_MASK (sh); in mpfr_add1()193 mask = MPFR_LIMB_MASK (sh); in mpfr_add1()
80 mask = s == GMP_NUMB_BITS ? MP_LIMB_T_MAX : MPFR_LIMB_MASK (s); in mpfr_round_p()
118 sb &= MPFR_LIMB_MASK (GMP_NUMB_BITS - k); in mpfr_set_z_2exp()
148 sticky1 = rp[0] & ((sh < GMP_NUMB_BITS) ? MPFR_LIMB_MASK(sh) in mpfr_sqrt()
331 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()
187 d = *yp & MPFR_LIMB_MASK (sh); in mpfr_div_ui()
379 u[0] &= ~MPFR_LIMB_MASK(pl); in mpfr_mpn_rec_sqrt()
326 carry = ap[0] & MPFR_LIMB_MASK (sh); in mpfr_sub1()
786 pm = MPFR_LIMB_MASK (GMP_NUMB_BITS - nbits); in next_base_power_p()
908 #define MPFR_LIMB_MASK(s) ((MPFR_LIMB_ONE<<(s))-MPFR_LIMB_ONE) macro