Home
last modified time | relevance | path

Searched refs:divisor (Results 1 – 7 of 7) sorted by relevance

/PHP-8.1/ext/gd/tests/
H A Dbug47946.phpt28 $divisor = array_sum(array_flatten($matrix));
29 if ($divisor == 0) {
30 $divisor = .01;
32 return imageconvolution($resource, $matrix, $divisor, $offset);
/PHP-8.1/Zend/tests/
H A Dbug69957.phpt7 $divisor = 0;
8 $result = 1 / $divisor;
17 $divisor = 0;
18 $result = 1 % $divisor;
/PHP-8.1/ext/standard/
H A Dmath.c1187 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.1/ext/gd/
H A Dgd.stub.php295 function imageconvolution(GdImage $image, array $matrix, float $divisor, float $offset): bool {} argument
H A Dgd_arginfo.h520 ZEND_ARG_TYPE_INFO(0, divisor, IS_DOUBLE, 0)
/PHP-8.1/
H A Dphp.ini-development1439 ; https://php.net/session.gc-divisor
H A Dphp.ini-production1441 ; https://php.net/session.gc-divisor

Completed in 25 milliseconds