Searched refs:divisor (Results 1 – 7 of 7) sorted by relevance
/PHP-8.3/ext/gd/tests/ |
H A D | bug47946.phpt | 28 $divisor = array_sum(array_flatten($matrix)); 29 if ($divisor == 0) { 30 $divisor = .01; 32 return imageconvolution($resource, $matrix, $divisor, $offset);
|
/PHP-8.3/Zend/tests/ |
H A D | bug69957.phpt | 7 $divisor = 0; 8 $result = 1 / $divisor; 17 $divisor = 0; 18 $result = 1 % $divisor;
|
/PHP-8.3/ext/standard/ |
H A D | math.c | 1313 double dividend, divisor; in PHP_FUNCTION() local 1317 Z_PARAM_DOUBLE(divisor) in PHP_FUNCTION() 1320 RETURN_DOUBLE(dividend / divisor); in PHP_FUNCTION() 1327 zend_long dividend, divisor; in PHP_FUNCTION() local 1331 Z_PARAM_LONG(divisor) in PHP_FUNCTION() 1334 if (divisor == 0) { in PHP_FUNCTION() 1337 } else if (divisor == -1 && dividend == ZEND_LONG_MIN) { in PHP_FUNCTION() 1344 RETURN_LONG(dividend / divisor); in PHP_FUNCTION()
|
/PHP-8.3/ext/gd/ |
H A D | gd.stub.php | 757 function imageconvolution(GdImage $image, array $matrix, float $divisor, float $offset): bool {} argument
|
H A D | gd_arginfo.h | 519 ZEND_ARG_TYPE_INFO(0, divisor, IS_DOUBLE, 0)
|
/PHP-8.3/ |
H A D | php.ini-development | 1458 ; https://php.net/session.gc-divisor
|
H A D | php.ini-production | 1460 ; https://php.net/session.gc-divisor
|
Completed in 30 milliseconds