Home | History | Annotate | Download | only in mpz

Lines Matching refs:b_low

39   mp_limb_t  b_low;
62 b_low = b_ptr[0];
65 if (! (b_low & 1))
73 Establish shifted b_low with valid bit1 for the RECIP below. Zero
74 limbs stripped are accounted for, but zero bits on b_low are not
78 JACOBI_STRIP_LOW_ZEROS (result_bit1, a, b_ptr, b_abs_size, b_low);
79 if (! (b_low & 1))
81 if (UNLIKELY (b_low == GMP_NUMB_HIGHBIT))
83 /* need b_ptr[1] to get bit1 in b_low */
98 b_low = b_ptr[1] << 1;
102 count_trailing_zeros (twos, b_low);
103 b_low >>= twos;
110 return (b_abs_size == 1 && b_low == 1);
118 result_bit1 = JACOBI_TWOS_U_BIT1 (twos, b_low);
127 result_bit1 ^= JACOBI_RECIP_UU_BIT1 (a, b_low);