Searched refs:bcpowmod (Results 1 – 9 of 9) sorted by relevance
/PHP-5.6/ext/bcmath/tests/ |
H A D | bcpowmod.phpt | 2 bcpowmod() - Raise an arbitrary precision number to another, reduced by a specified modulus 9 echo bcpowmod("5", "2", "7") . "\n"; 10 echo bcpowmod("-2", "5", "7") . "\n"; 11 echo bcpowmod("10", "2147483648", "2047");
|
H A D | bcpowmod_error1.phpt | 2 bcpowmod — Raise an arbitrary precision number to another, reduced by a specified modulus 10 echo bcpowmod('1'); 13 Warning: bcpowmod() expects at least 3 parameters, 1 given in %s.php on line %d
|
H A D | bcpowmod_error2.phpt | 2 bcpowmod — Raise an arbitrary precision number to another, reduced by a specified modulus 10 echo bcpowmod('1', '2'); 13 Warning: bcpowmod() expects at least 3 parameters, 2 given in %s.php on line %d
|
H A D | bcpowmod_error3.phpt | 2 bcpowmod — Raise an arbitrary precision number to another, reduced by a specified modulus 10 echo bcpowmod('1', '2', '3', '4', '5'); 13 Warning: bcpowmod() expects at most 4 parameters, 5 given in %s.php on line %d
|
H A D | bug72093-win32.phpt | 2 Bug 72093: bcpowmod accepts negative scale and corrupts _one_ definition 12 var_dump(bcpowmod(1, "A", 128, -200)); 13 var_dump(bcpowmod(1, 1.2, 1, 1));
|
H A D | bug72093.phpt | 2 Bug 72093: bcpowmod accepts negative scale and corrupts _one_ definition 12 var_dump(bcpowmod(1, "A", 128, -200)); 13 var_dump(bcpowmod(1, 1.2, 1, 1));
|
/PHP-5.6/ext/bcmath/ |
H A D | php_bcmath.h | 42 PHP_FUNCTION(bcpowmod);
|
H A D | bcmath.c | 108 PHP_FE(bcpowmod, arginfo_bcpowmod) 423 PHP_FUNCTION(bcpowmod) in PHP_FUNCTION() argument
|
/PHP-5.6/ |
H A D | NEWS | 726 . Fixed bug #72093 (bcpowmod accepts negative scale and corrupts 8770 - Added missing error check inside bcpowmod(). (Ilia)
|
Completed in 50 milliseconds