Lines Matching refs:BG
45 BG(rand_seed) = (unsigned int) seed; in php_srand()
57 BG(rand_is_seeded) = 1; in php_srand()
67 if (!BG(rand_is_seeded)) { in php_rand()
72 ret = php_rand_r(&BG(rand_seed)); in php_rand()
180 register php_uint32 *state = BG(state); in php_mt_reload()
189 BG(left) = N; in php_mt_reload()
190 BG(next) = state; in php_mt_reload()
199 php_mt_initialize(seed, BG(state)); in php_mt_srand()
203 BG(mt_rand_is_seeded) = 1; in php_mt_srand()
216 if (BG(left) == 0) { in php_mt_rand()
219 --BG(left); in php_mt_rand()
221 s1 = *BG(next)++; in php_mt_rand()
327 if (!BG(mt_rand_is_seeded)) { in PHP_FUNCTION()