Searched refs:divisor (Results 1 – 7 of 7) sorted by relevance
/PHP-8.0/ext/gd/tests/ |
H A D | bug47946.phpt | 27 $divisor = array_sum(array_flatten($matrix)); 28 if ($divisor == 0) { 29 $divisor = .01; 31 return imageconvolution($resource, $matrix, $divisor, $offset);
|
/PHP-8.0/Zend/tests/ |
H A D | bug69957.phpt | 7 $divisor = 0; 8 $result = 1 / $divisor; 17 $divisor = 0; 18 $result = 1 % $divisor;
|
/PHP-8.0/ext/standard/ |
H A D | math.c | 1184 double dividend, divisor; in PHP_FUNCTION() local 1188 Z_PARAM_DOUBLE(divisor) in PHP_FUNCTION() 1191 RETURN_DOUBLE(dividend / divisor); in PHP_FUNCTION() 1198 zend_long dividend, divisor; in PHP_FUNCTION() local 1202 Z_PARAM_LONG(divisor) in PHP_FUNCTION() 1205 if (divisor == 0) { in PHP_FUNCTION() 1208 } else if (divisor == -1 && dividend == ZEND_LONG_MIN) { in PHP_FUNCTION() 1215 RETURN_LONG(dividend / divisor); in PHP_FUNCTION()
|
/PHP-8.0/ext/gd/ |
H A D | gd.stub.php | 233 function imageconvolution(GdImage $image, array $matrix, float $divisor, float $offset): bool {} argument
|
H A D | gd_arginfo.h | 505 ZEND_ARG_TYPE_INFO(0, divisor, IS_DOUBLE, 0)
|
/PHP-8.0/ |
H A D | php.ini-development | 1425 ; http://php.net/session.gc-divisor
|
H A D | php.ini-production | 1427 ; http://php.net/session.gc-divisor
|
Completed in 25 milliseconds