Searched refs:bcpow (Results 1 – 11 of 11) sorted by relevance
/PHP-7.3/ext/bcmath/tests/ |
H A D | bcpow.phpt | 2 bcpow() function 9 echo bcpow("1", "2"),"\n"; 10 echo bcpow("-2", "5", 4),"\n"; 11 echo bcpow("2", "64"),"\n"; 12 echo bcpow("-2.555", "5", 2),"\n";
|
H A D | bcpow_error3.phpt | 2 bcpow() incorrect argument count 9 echo bcpow(); 12 Warning: bcpow() expects at least 2 parameters, 0 given in %s on line %d
|
H A D | bcpow_error2.phpt | 2 bcpow() does not support exponents >= 2**63 9 var_dump(bcpow('0', '9223372036854775808', 2)); 13 Warning: bcpow(): exponent too large in %s on line %d
|
H A D | bcpow_error1.phpt | 2 bcpow() does not support non-integral exponents 9 var_dump(bcpow('1', '1.1', 2)); 13 Warning: bcpow(): non-zero scale in exponent in %s on line %d
|
H A D | scale.phpt | 13 'bcpow: ', bcpow('2', '1', 5), PHP_EOL, 23 bcpow: 2.00000
|
H A D | scale_ini.phpt | 15 'bcpow: ', bcpow('2', '1'), PHP_EOL, 25 bcpow: 2.00000
|
H A D | bcpow_variation001.phpt | 2 bcpow() with a negative exponent 9 echo bcpow("2", "-4");
|
/PHP-7.3/ext/bcmath/ |
H A D | php_bcmath.h | 39 PHP_FUNCTION(bcpow);
|
H A D | bcmath.c | 103 PHP_FE(bcpow, arginfo_bcpow) 441 PHP_FUNCTION(bcpow) in PHP_FUNCTION() argument
|
/PHP-7.3/ |
H A D | UPGRADING | 112 . bcmul() and bcpow() now return numbers with the requested scale. Formerly,
|
H A D | NEWS | 1070 . Fixed bug #77742 (bcpow() implementation related to gcc compiler
|
Completed in 19 milliseconds