Searched refs:acosh (Results 1 – 9 of 9) sorted by relevance
/PHP-5.4/ext/standard/tests/math/ |
H A D | acosh_basic.phpt | 2 Test return type and value for expected input acosh() 8 * proto float acosh(float number) 15 echo "acosh 1.1276259652064= "; 16 var_dump(acosh(1.1276259652064)); 17 if (allowed_rounding_error(acosh(1.1276259652064), 0.5)) 25 echo "acosh 10.067661995778= "; 26 var_dump(acosh(10.067661995778)); 27 if (allowed_rounding_error(acosh(10.067661995778), 3.0)) 38 acosh 1.1276259652064= float(%f) 40 acosh 10.067661995778= float(%f)
|
H A D | acosh_error.phpt | 2 Test wrong number of arguments for acosh() 6 * proto float acosh(float number) 14 var_dump(acosh($arg_0, $extra_arg)); 17 var_dump(acosh()); 23 Warning: acosh() expects exactly 1 parameter, 2 given in %s on line %d 28 Warning: acosh() expects exactly 1 parameter, 0 given in %s on line %d
|
H A D | acosh_variation.phpt | 2 Test variations in usage of acosh() 8 * proto float acosh(float number) 13 //Test acosh with a different input values 32 $res = acosh($values[$i]); 48 Warning: acosh() expects parameter 1 to be double, string given in %s on line %d
|
H A D | acosh_basiclong_64bit.phpt | 2 Test acosh function : 64bit long tests 24 var_dump(acosh($longVal));
|
/PHP-5.4/ext/standard/ |
H A D | php_math.h | 83 PHP_FUNCTION(acosh);
|
H A D | math.c | 232 return(acosh(x)); in php_acosh() 526 PHP_FUNCTION(acosh) in PHP_FUNCTION() argument
|
H A D | config.m4 | 340 AC_CHECK_FUNCS(getcwd getwd asinh acosh atanh log1p hypot glob strfmon nice fpclass isinf isnan mem…
|
H A D | basic_functions.c | 2897 PHP_FE(acosh, arginfo_acosh)
|
/PHP-5.4/ |
H A D | NEWS | 4830 - Added native support for asinh(), acosh(), atanh(), log1p() and expm1().
|
Completed in 50 milliseconds