Searched refs:pow (Results 1 – 25 of 50) sorted by relevance
12
/PHP-8.0/ext/standard/tests/math/ |
H A D | pow.phpt | 2 Various pow() tests 12 0.25 === pow(-2,-2) 13 -0.5 === pow(-2,-1) 14 1 === pow(-2, 0) 15 -2 === pow(-2, 1) 16 4 === pow(-2, 2) 17 1.0 === pow(-1,-2) 18 -1.0 === pow(-1,-1) 19 1 === pow(-1, 0) 20 -1 === pow(-1, 1) [all …]
|
H A D | pow_basic2.phpt | 2 Test pow() - basic function test pow() - with large exponents 11 var_dump(pow(24, $large_exp)); 12 var_dump(pow(0.24, -$large_exp)); 13 var_dump(pow(-0.24, -$large_exp)); 16 var_dump(pow(0.24, $large_exp)); 17 var_dump(pow(-0.24, $large_exp)); 18 var_dump(pow(24, -$large_exp)); 19 var_dump(pow(-24, -$large_exp)); 22 var_dump(pow(-0.24, $large_exp+1)); 25 var_dump(pow(-24, $large_exp+1)); [all …]
|
H A D | pow_variation1_64bit.phpt | 2 Test pow() function : usage variations - different data types as $base argument 11 echo "*** Testing pow() : usage variations ***\n"; 79 // loop through each element of $inputs to check the behaviour of pow() 84 var_dump(pow($input, 3)); 93 *** Testing pow() : usage variations ***
|
H A D | pow_variation2.phpt | 2 Test pow() function : usage variations - different data types as $exp argument 7 echo "*** Testing pow() : usage variations ***\n"; 75 // loop through each element of $inputs to check the behaviour of pow() 80 var_dump(pow(20.3, $input)); 89 *** Testing pow() : usage variations ***
|
H A D | pow_variation1.phpt | 2 Test pow() function : usage variations - different data types as $base argument 11 echo "*** Testing pow() : usage variations ***\n"; 79 // loop through each element of $inputs to check the behaviour of pow() 84 var_dump(pow($input, 3)); 93 *** Testing pow() : usage variations ***
|
H A D | pow-operator.phpt | 2 Various pow() tests
|
H A D | is_finite_basic.phpt | 17 pow(0, -2),
|
H A D | is_infinite_basic.phpt | 17 pow(0, -2),
|
H A D | is_nan_basic.phpt | 17 pow(0, -2),
|
H A D | pow_basic.phpt | 2 Test pow() - basic function test pow() 43 $res = pow($base, $exponent);
|
/PHP-8.0/ext/standard/tests/array/ |
H A D | array_map_variation12.phpt | 14 echo "-- with built-in function 'pow' and two parameters --\n"; 15 var_dump( array_map('pow', $array1, $array2)); 17 echo "-- with built-in function 'pow' and one parameter --\n"; 19 var_dump( array_map('pow', $array1)); 35 -- with built-in function 'pow' and two parameters -- 44 -- with built-in function 'pow' and one parameter -- 45 pow() expects exactly 2 arguments, 1 given
|
H A D | array_walk_recursive_variation8.phpt | 7 * pow function 16 echo "-- With 'pow' built-in function --\n"; 17 var_dump( array_walk_recursive($input, 'pow')); 33 -- With 'pow' built-in function --
|
H A D | array_walk_variation8.phpt | 7 * pow function 16 echo "-- With 'pow' built-in function --\n"; 17 var_dump( array_walk($input, 'pow')); 33 -- With 'pow' built-in function --
|
H A D | range_bug70239_1.phpt | 6 range(pow(2.0, 100000000), pow(2.0, 100000000) + 1);
|
H A D | data.inc | 2 $tmp = pow(2,24);
|
H A D | range_bug70239_0.phpt | 6 range(0, pow(2.0, 100000000));
|
/PHP-8.0/ext/gmp/tests/ |
H A D | gmp_pow2.phpt | 2 Test pow() with gmp object 9 var_dump(pow($n, 10)); 13 pow($n, -10);
|
/PHP-8.0/ext/com_dotnet/tests/ |
H A D | variants.phpt | 126 pow: 160 pow: 1 242 pow: 276 pow: 1 330 pow: 392 pow: 450 pow: 512 pow: 534 pow: 0 548 pow: 0 [all …]
|
H A D | variants_x64.phpt | 129 pow: 163 pow: 1 245 pow: 279 pow: 1 333 pow: 395 pow: 453 pow: 515 pow: 537 pow: 0 551 pow: 0 [all …]
|
/PHP-8.0/ext/standard/tests/ |
H A D | bug49244.phpt | 7 printf("{%f} %1\$f\n", pow(-1.0, 0.3)); 8 printf("{%f} %1\$f\n", pow(-1.0, 0.3));
|
/PHP-8.0/ext/gd/tests/ |
H A D | similarity.inc | 39 pow($red1 - $red2, 2) + pow($green1 - $green2, 2) + pow($blue1 - $blue2, 2)
|
/PHP-8.0/Zend/tests/ast/ |
H A D | zend-pow-assign.phpt | 13 Warning: assert(): assert(false && ($a **= 2)) failed in %s%ezend-pow-assign.php on line %d
|
/PHP-8.0/ext/opcache/tests/jit/ |
H A D | bug81225.phpt | 2 Bug #81225: Wrong result with pow operator with JIT enabled
|
/PHP-8.0/ext/mysqli/tests/ |
H A D | mysqli_insert_packet_overflow.phpt | 11 $max_len = pow(2, 24); 39 $max_len = pow(2, 24); 69 $max_len = pow(2, 24);
|
/PHP-8.0/ext/opcache/tests/ |
H A D | bug77275.phpt | 20 $a = pow(1, 2);
|
Completed in 29 milliseconds
12