Searched refs:sqrt (Results 1 – 17 of 17) sorted by relevance
/PHP-8.3/ext/standard/tests/math/ |
H A D | sqrt_variation.phpt | 2 Test variations in usage of sqrt() 12 //Test sqrt with a different input values 13 echo "*** Testing sqrt() : usage variations ***\n"; 29 $res = sqrt($values[$i]); 35 *** Testing sqrt() : usage variations ***
|
H A D | sqrt_basic.phpt | 2 Test return type and value for expected input sqrt() 13 var_dump(sqrt($arg_0));
|
H A D | sqrt_basiclong_64bit.phpt | 2 Test sqrt function : 64bit long tests 24 var_dump(sqrt($longVal));
|
H A D | pow.phpt | 71 var_dump(epsilon_equal( sqrt(2), pow(2,1/2) ));
|
/PHP-8.3/Zend/tests/ |
H A D | bug42143.phpt | 13 var_dump(sqrt(-0.1) == false); 14 var_dump(sqrt(cos(M_PI)) == 0.1); 16 var_dump(is_nan(sqrt(-1.005)) == false);
|
/PHP-8.3/ext/date/lib/ |
H A D | astro.c | 151 y = sqrt(1.0 - e*e) * sind(E); in astro_sunpos() 152 *r = sqrt(x*x + y*y); /* Solar distance */ in astro_sunpos() 180 *dec = atan2d(z, sqrt(x*x + y*y)); in astro_sun_RA_dec()
|
/PHP-8.3/ext/bcmath/ |
H A D | config.w32 | 9 num2long.c output.c recmul.c sqrt.c zero.c debug.c doaddsub.c \
|
H A D | config.m4 | 10 libbcmath/src/sqrt.c libbcmath/src/zero.c libbcmath/src/debug.c libbcmath/src/doaddsub.c libbcmath/…
|
/PHP-8.3/ext/gd/tests/ |
H A D | similarity.inc | 38 return sqrt(
|
H A D | bug53504.phpt | 79 $width = sqrt(pow($bboxDrawn[2] - $bboxDrawn[0], 2) + pow($bboxDrawn[3] - $bboxDrawn[1], 2));
|
/PHP-8.3/ext/gd/libgd/ |
H A D | gd_matrix.c | 291 return sqrt (fabs (src[0] * src[3] - src[1] * src[2])); in gdAffineExpansion()
|
H A D | gd_interpolation.c | 307 …q = (double)sqrt(2.0f/(M_PI*x))*(double)(KernelBessel_P1(x)*(1.0f/sqrt(2.0f)*(sin(x)-cos(x)))-8.0f… in KernelBessel_Order1() 308 (-1.0f/sqrt(2.0f)*(sin(x)+cos(x)))); in KernelBessel_Order1()
|
H A D | gd.c | 1579 long result = (long) sqrt ((double) n); in lsqrt()
|
/PHP-8.3/ext/standard/ |
H A D | math.c | 616 PHP_FUNCTION(sqrt) in PHP_FUNCTION() argument 624 RETURN_DOUBLE(sqrt(num)); in PHP_FUNCTION()
|
H A D | basic_functions.stub.php | 3152 function sqrt(float $num): float {}
|
H A D | basic_functions_arginfo.h | 2673 ZEND_FUNCTION(sqrt); 3314 ZEND_SUPPORTS_COMPILE_TIME_EVAL_FE(sqrt, arginfo_sqrt)
|
/PHP-8.3/ext/opcache/jit/dynasm/ |
H A D | dasm_x86.lua | 1841 for name,n in pairs{ sqrt = 1, add = 8, mul = 9,
|
Completed in 76 milliseconds