Searched refs:divisor (Results 1 – 7 of 7) sorted by relevance
/PHP-8.2/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.2/Zend/tests/ |
H A D | bug69957.phpt | 7 $divisor = 0; 8 $result = 1 / $divisor; 17 $divisor = 0; 18 $result = 1 % $divisor;
|
/PHP-8.2/ext/standard/ |
H A D | math.c | 1187 double dividend, divisor; in PHP_FUNCTION() local 1191 Z_PARAM_DOUBLE(divisor) in PHP_FUNCTION() 1194 RETURN_DOUBLE(dividend / divisor); in PHP_FUNCTION() 1201 zend_long dividend, divisor; in PHP_FUNCTION() local 1205 Z_PARAM_LONG(divisor) in PHP_FUNCTION() 1208 if (divisor == 0) { in PHP_FUNCTION() 1211 } else if (divisor == -1 && dividend == ZEND_LONG_MIN) { in PHP_FUNCTION() 1218 RETURN_LONG(dividend / divisor); in PHP_FUNCTION()
|
/PHP-8.2/ext/gd/ |
H A D | gd.stub.php | 758 function imageconvolution(GdImage $image, array $matrix, float $divisor, float $offset): bool {} argument
|
H A D | gd_arginfo.h | 520 ZEND_ARG_TYPE_INFO(0, divisor, IS_DOUBLE, 0)
|
/PHP-8.2/ |
H A D | php.ini-development | 1448 ; https://php.net/session.gc-divisor
|
H A D | php.ini-production | 1450 ; https://php.net/session.gc-divisor
|
Completed in 20 milliseconds