Searched refs:cos (Results 1 – 18 of 18) sorted by relevance
/PHP-8.0/ext/standard/tests/math/ |
H A D | cos_basic.phpt | 25 echo "cos 30 = "; 34 echo "cos 60 = "; 43 echo "cos 90 = "; 52 echo "cos 180 = "; 61 echo "cos 270 = "; 70 echo "cos 360 = "; 80 cos 30 = float(%f) 82 cos 60 = float(%f) 84 cos 90 = float(%f) 86 cos 180 = float(%f) [all …]
|
H A D | cos_variation.phpt | 2 Test variations in usage of cos() 12 //Test cos with a different input values 29 $res = cos($values[$i]);
|
H A D | cos_basiclong_64bit.phpt | 2 Test cos function : 64bit long tests 26 var_dump(cos($longVal));
|
/PHP-8.0/Zend/tests/ |
H A D | bug42143.phpt | 11 var_dump(cos(-100) == "PHP String"); 14 var_dump(sqrt(cos(M_PI)) == 0.1);
|
H A D | list_keyed_non_literals.phpt | 16 $probablyNotCompileTimeResolvable3 = cos(0) * 3;
|
H A D | get_defined_functions_basic.phpt | 32 if (!in_array("cos", $internal) || !in_array("strlen", $internal)) {
|
/PHP-8.0/ext/standard/tests/general_functions/ |
H A D | get_extension_funcs_basic.phpt | 9 var_dump(in_array("cos", $result));
|
/PHP-8.0/ext/gd/tests/ |
H A D | bug43073.phpt | 37 $cos_t = cos(deg2rad($delta_t));
|
H A D | bug53504.phpt | 80 $test['x'] + $width * cos(deg2rad($test['angle'])),
|
/PHP-8.0/ext/gd/libgd/ |
H A D | gd_matrix.c | 200 const double cos_t = cos (angle * M_PI / 180.0); in gdAffineRotate()
|
H A D | gd_interpolation.c | 308 …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() 309 (-1.0f/sqrt(2.0f)*(sin(x)+cos(x)))); in KernelBessel_Order1() 325 return (0.42f+0.5f*(double)cos(M_PI*x)+0.08f*(double)cos(2.0f*M_PI*x)); in filter_blackman() 530 if ((x >= -1.0) && (x <= 1.0)) return ((cos(x * M_PI) + 1.0)/2.0); in filter_cosine() 587 return(0.5 + 0.5 * cos(M_PI * x)); in filter_hanning() 1620 const gdFixed f_cos = gd_ftofx(cos(-_angle)); in gdImageRotateNearestNeighbour() 1677 const gdFixed f_cos = gd_ftofx(cos(-_angle)); in gdImageRotateGeneric() 1744 const gdFixed f_cos = gd_ftofx(cos(-_angle)); in gdImageRotateBilinear() 1859 const gdFixed f_cos = gd_ftofx(cos(-_angle)); in gdImageRotateBicubicFixed()
|
H A D | gdft.c | 828 double cos_a = cos (angle);
|
H A D | gd.c | 1081 double ac = cos (atan2 (dy, dx)); in gdImageLine()
|
/PHP-8.0/ext/date/lib/ |
H A D | astro.c | 46 #define cosd(x) cos((x)*DEGRAD)
|
/PHP-8.0/ext/standard/ |
H A D | math.c | 329 PHP_FUNCTION(cos) in PHP_FUNCTION() argument 336 RETURN_DOUBLE(cos(num)); in PHP_FUNCTION()
|
H A D | basic_functions.stub.php | 1041 function cos(float $num): float {} function
|
H A D | basic_functions_arginfo.h | 2653 ZEND_FUNCTION(cos); 3293 ZEND_FE(cos, arginfo_cos)
|
/PHP-8.0/build/ |
H A D | libtool.m4 | 2624 AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") 2627 AC_CHECK_LIB(m, cos, LIBM="-lm")
|
Completed in 192 milliseconds