Searched refs:PHP_COMBINED_LCG_MODMULT (Results 1 – 1 of 1) sorted by relevance
/PHP-8.4/ext/random/ |
H A D | random.c | 422 #define PHP_COMBINED_LCG_MODMULT(a, b, c, m, s) q = s / a; s = b * (s - a * q) - c * q; if (s < 0) … macro 427 PHP_COMBINED_LCG_MODMULT(53668, 40014, 12211, 2147483563L, state[0]); 429 PHP_COMBINED_LCG_MODMULT(52774, 40692, 3791, 2147483399L, state[1]);
|
Completed in 8 milliseconds