Searched refs:bcmul (Results 1 – 12 of 12) sorted by relevance
/PHP-8.2/ext/bcmath/tests/ |
H A D | bcmul.phpt | 2 bcmul() function 9 echo bcmul("1", "2"),"\n"; 10 echo bcmul("-3", "5"),"\n"; 11 echo bcmul("1234567890", "9876543210"),"\n"; 12 echo bcmul("2.5", "1.5", 2),"\n"; 13 echo bcmul("2.555", "1.555", 2),"\n";
|
H A D | bcmul_error.phpt | 2 bcmul() requires well-formed values 9 bcmul('a', '1'); 15 bcmul('1', 'a'); 22 bcmul(): Argument #1 ($num1) is not well-formed 23 bcmul(): Argument #2 ($num2) is not well-formed
|
H A D | scale.phpt | 10 'bcmul: ', bcmul('2', '1', 5), PHP_EOL, 19 bcmul: 2.00000
|
H A D | scale_ini.phpt | 12 'bcmul: ', bcmul('2', '1'), PHP_EOL, 21 bcmul: 2.00000
|
H A D | bug.66364.phpt | 2 Bug #66364 (BCMath bcmul ignores scale parameter) 7 var_dump(bcmul('0.3', '0.2', 4));
|
H A D | bug78238.phpt | 9 $a = bcmul("0.9", "-0.1", 1); 10 $b = bcmul("0.90", "-0.1", 1);
|
H A D | bug78878.phpt | 8 print bcmul("\xB26483605105519922841849335928742092", bcpowmod(2, 65535, -4e-4));
|
H A D | negative_scale.phpt | 20 bcmul('1','2',-1); 63 bcmul(): Argument #3 ($scale) must be between 0 and 2147483647
|
H A D | str2num_formatting.phpt | 4 1 and 2 argument of bcadd/bcsub/bcmul/bcdiv/bcmod/bcpowmod/bcpow/bccomp (last one works different t…
|
/PHP-8.2/ext/bcmath/ |
H A D | bcmath_arginfo.h | 49 ZEND_FUNCTION(bcmul); 62 ZEND_FE(bcmul, arginfo_bcmul)
|
H A D | bcmath.stub.php | 12 function bcmul(string $num1, string $num2, ?int $scale = null): string {} function
|
H A D | bcmath.c | 255 PHP_FUNCTION(bcmul) in PHP_FUNCTION() argument
|
Completed in 23 milliseconds