Searched refs:ranm (Results 1 - 2 of 2) sorted by relevance

/haiku-buildtools/gcc/gmp/mpn/generic/
H A Drandom2.c42 mp_limb_t ran, ranm; /* buffer for random bits */ local
47 _gmp_rand (&ranm, rstate, BITS_PER_RANDCALL);
48 ran = ranm;
60 mp_limb_t ranm; /* buffer for random bits */ local
70 _gmp_rand (&ranm, rstate, BITS_PER_RANDCALL);
71 cap_chunksize = nbits / (ranm % 4 + 1);
78 _gmp_rand (&ranm, rstate, BITS_PER_RANDCALL);
79 chunksize = 1 + ranm % cap_chunksize;
87 _gmp_rand (&ranm, rstate, BITS_PER_RANDCALL);
88 chunksize = 1 + ranm
[all...]
/haiku-buildtools/gcc/gmp/mpz/
H A Drrandomb.c55 mp_limb_t ranm; /* buffer for random bits */ local
65 _gmp_rand (&ranm, rstate, BITS_PER_RANDCALL);
66 cap_chunksize = nbits / (ranm % 4 + 1);
73 _gmp_rand (&ranm, rstate, BITS_PER_RANDCALL);
74 chunksize = 1 + ranm % cap_chunksize;
82 _gmp_rand (&ranm, rstate, BITS_PER_RANDCALL);
83 chunksize = 1 + ranm % cap_chunksize;

Completed in 47 milliseconds