Home
last modified time | relevance | path

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

/php-src/ext/gd/tests/
H A Dbug47946.phpt31 $divisor = array_sum(array_flatten($matrix));
32 if ($divisor == 0) {
33 $divisor = .01;
35 return imageconvolution($resource, $matrix, $divisor, $offset);
/php-src/Zend/tests/
H A Dbug69957.phpt7 $divisor = 0;
8 $result = 1 / $divisor;
17 $divisor = 0;
18 $result = 1 % $divisor;
/php-src/ext/standard/
H A Dmath.c1381 double dividend, divisor; in PHP_FUNCTION() local
1385 Z_PARAM_DOUBLE(divisor) in PHP_FUNCTION()
1388 RETURN_DOUBLE(dividend / divisor); in PHP_FUNCTION()
1395 zend_long dividend, divisor; in PHP_FUNCTION() local
1399 Z_PARAM_LONG(divisor) in PHP_FUNCTION()
1402 if (divisor == 0) { in PHP_FUNCTION()
1405 } else if (divisor == -1 && dividend == ZEND_LONG_MIN) { in PHP_FUNCTION()
1412 RETURN_LONG(dividend / divisor); in PHP_FUNCTION()
/php-src/ext/gd/
H A Dgd.stub.php757 function imageconvolution(GdImage $image, array $matrix, float $divisor, float $offset): bool {} argument
H A Dgd_arginfo.h519 ZEND_ARG_TYPE_INFO(0, divisor, IS_DOUBLE, 0)
/php-src/
H A Dphp.ini-development1382 ; https://php.net/session.gc-divisor
H A Dphp.ini-production1384 ; https://php.net/session.gc-divisor

Completed in 30 milliseconds