Lines Matching refs:zend_long
165 zend_long bytes; in php_mt_rand()
166 if (php_random_bytes_silent(&bytes, sizeof(zend_long)) == FAILURE) { in php_mt_rand()
188 zend_long seed = 0; in PHP_FUNCTION()
189 zend_long mode = MT_RAND_MT19937; in PHP_FUNCTION()
198 if (php_random_bytes_silent(&seed, sizeof(zend_long)) == FAILURE) { in PHP_FUNCTION()
278 PHPAPI zend_long php_mt_rand_range(zend_long min, zend_long max) in php_mt_rand_range()
284 return (zend_long) (rand_range64(umax) + min); in php_mt_rand_range()
288 return (zend_long) (rand_range32(umax) + min); in php_mt_rand_range()
294 PHPAPI zend_long php_mt_rand_common(zend_long min, zend_long max) in php_mt_rand_common()
314 zend_long min; in PHP_FUNCTION()
315 zend_long max; in PHP_FUNCTION()