Lines Matching refs:rbits
197 int rbits; in __gmp_randget_mt() local
207 rbits = nbits % GMP_NUMB_BITS; in __gmp_randget_mt()
239 if (rbits) in __gmp_randget_mt()
242 dest[nlimbs] = (mp_limb_t) (y & ~(ULONG_MAX << rbits)); in __gmp_randget_mt()
255 if (rbits) in __gmp_randget_mt()
257 if (rbits < 32) in __gmp_randget_mt()
260 dest[nlimbs] = (mp_limb_t) (y & ~(ULONG_MAX << rbits)); in __gmp_randget_mt()
266 if (rbits > 32) in __gmp_randget_mt()
270 ((mp_limb_t) (y & ~(ULONG_MAX << (rbits-32)))) << 32; in __gmp_randget_mt()
292 nlimbs2 = nlimbs + (rbits != 0); in __gmp_randget_mt()
300 bits_to_fill = rbits; in __gmp_randget_mt()