Searched refs:sqrt (Results 1 – 23 of 23) sorted by relevance
/php-src/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-src/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-src/ext/bcmath/tests/number/methods/ |
H A D | sqrt.phpt | 2 BcMath\Number sqrt() 15 $method_ret = (new BcMath\Number($radicant))->sqrt();
|
H A D | sqrt_with_scale.phpt | 2 BcMath\Number sqrt() with scale 26 $method_ret = (new BcMath\Number($radicant))->sqrt($scale);
|
/php-src/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-src/ext/bcmath/ |
H A D | config.w32 | 9 num2long.c recmul.c sqrt.c zero.c doaddsub.c \
|
H A D | config.m4 | 28 libbcmath/src/sqrt.c
|
H A D | bcmath_arginfo.h | 149 ZEND_METHOD(BcMath_Number, sqrt); 186 ZEND_ME(BcMath_Number, sqrt, arginfo_class_BcMath_Number_sqrt, ZEND_ACC_PUBLIC)
|
H A D | bcmath.stub.php | 80 public function sqrt(?int $scale = null): Number {} function in BcMath\\Number
|
H A D | bcmath.c | 1657 PHP_METHOD(BcMath_Number, sqrt) in PHP_METHOD() argument
|
/php-src/ext/gd/tests/ |
H A D | similarity.inc | 38 return sqrt(
|
H A D | bug53504.phpt | 82 $width = sqrt(pow($bboxDrawn[2] - $bboxDrawn[0], 2) + pow($bboxDrawn[3] - $bboxDrawn[1], 2));
|
/php-src/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 | 297 …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() 298 (-1.0f/sqrt(2.0f)*(sin(x)+cos(x)))); in KernelBessel_Order1()
|
H A D | gd.c | 1633 long result = (long) sqrt ((double) n); in lsqrt()
|
/php-src/ext/standard/ |
H A D | math.c | 697 PHP_FUNCTION(sqrt) in PHP_FUNCTION() argument 705 RETURN_DOUBLE(sqrt(num)); in PHP_FUNCTION()
|
H A D | basic_functions.stub.php | 3215 function sqrt(float $num): float {}
|
H A D | basic_functions_arginfo.h | 2741 ZEND_FUNCTION(sqrt);
|
/php-src/ext/opcache/jit/ir/dynasm/ |
H A D | dasm_x86.lua | 1845 for name,n in pairs{ sqrt = 1, add = 8, mul = 9,
|
/php-src/ext/opcache/jit/ir/ |
H A D | ir_x86.dasc | 1837 if (STR_EQUAL(name, name_len, "sqrt")) {
|
Completed in 80 milliseconds