/php-src/ext/standard/tests/math/ |
H A D | sin_basic.phpt | 25 echo "sin 30 = "; 34 echo "sin 60 = "; 43 echo "sin 90 = "; 52 echo "sin 180 = "; 61 echo "sin 270 = "; 70 echo "sin 360 = "; 80 sin 30 = float(%f) 82 sin 60 = float(%f) 84 sin 90 = float(%f) 86 sin 180 = float(%f) [all …]
|
H A D | sin_variation.phpt | 2 Test variations in usage of sin() 12 //Test sin with a different input values 28 $res = sin($values[$i]);
|
H A D | sin_basiclong_64bit.phpt | 2 Test sin function : 64bit long tests 26 var_dump(sin($longVal));
|
/php-src/Zend/tests/ |
H A D | bug75290.phpt | 6 var_dump((new ReflectionFunction('sin'))->getClosure()); 14 string(3) "sin"
|
H A D | bug70804.phpt | 9 $foo = +(-sin(0));
|
H A D | bug52355.phpt | 9 $foo = -sin(0);
|
H A D | bug69599.phpt | 7 sin(...[0]);
|
H A D | bug38779.phpt | 36 Parse error: %s error%sin Loader://qqq.php on line %d
|
H A D | bug38779_1.phpt | 52 Parse error: %s error%sin %s on line %d
|
/php-src/ext/sockets/ |
H A D | sockaddr_conv.c | 87 int php_set_inet_addr(struct sockaddr_in *sin, char *string, php_socket *php_sock) /* {{{ */ in php_set_inet_addr() argument 93 sin->sin_addr.s_addr = tmp.s_addr; in php_set_inet_addr() 108 memcpy(&(sin->sin_addr.s_addr), host_entry->h_addr_list[0], host_entry->h_length); in php_set_inet_addr()
|
H A D | sockaddr_conv.h | 24 int php_set_inet_addr(struct sockaddr_in *sin, char *string, php_socket *php_sock);
|
H A D | sockets.c | 958 struct sockaddr_in *sin; local 1029 struct sockaddr_in *sin; local 1195 struct sockaddr_in sin = {0}; local 1202 sin.sin_family = AF_INET; 1429 struct sockaddr_in sin; local 1483 slen = sizeof(sin); 1484 memset(&sin, 0, slen); 1485 sin.sin_family = AF_INET; 1552 struct sockaddr_in sin; local 1595 memset(&sin, 0, sizeof(sin)); [all …]
|
/php-src/tests/lang/ |
H A D | bug21820.phpt | 13 Parse error: %s error, %sidentifier%svariable%snumber%sin %sbug21820.php on line %d
|
/php-src/ext/standard/tests/general_functions/ |
H A D | parse_ini_string_002.phpt | 92 Warning: syntax error, unexpected '='%sin Unknown on line 2 96 Warning: syntax error, unexpected '='%sin Unknown on line 2
|
/php-src/ext/mysqli/tests/bind_fetch/ |
H A D | float_types.phpt | 36 … VALUES (3.1415926535,-0.000001, -5, 999999999999, sin(0.6), 1.00000000000001, 888888888888888)");
|
/php-src/ext/gd/tests/ |
H A D | bug43073.phpt | 42 $sin_t = sin(deg2rad($delta_t));
|
H A D | bug53504.phpt | 85 $test['y'] - (int)($width * sin(deg2rad($test['angle']))), $blue);
|
/php-src/ext/gd/libgd/ |
H A D | gd_matrix.c | 199 const double sin_t = sin (angle * M_PI / 180.0); in gdAffineRotate()
|
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() 434 return R * sin(x*M_PI) * sin(x * M_PI/ R) / (x * M_PI * x * M_PI); in filter_lanczos8() 452 return R * sin(x*M_PI) * sin(x * M_PI / R) / (x * M_PI * x * M_PI); in filter_lanczos3() 604 return (sin(M_PI * (double) x) / (M_PI * (double) x)); in filter_sinc() 1640 const gdFixed f_sin = gd_ftofx(sin(-_angle)); in gdImageRotateNearestNeighbour() 1697 const gdFixed f_sin = gd_ftofx(sin(-_angle)); in gdImageRotateGeneric() 1764 const gdFixed f_sin = gd_ftofx(sin(-_angle)); in gdImageRotateBilinear() 1879 const gdFixed f_sin = gd_ftofx(sin(-_angle)); in gdImageRotateBicubicFixed()
|
H A D | gdft.c | 837 double sin_a = sin (angle); 1202 double d1 = sin (angle + 0.78539816339744830962); 1203 double d2 = sin (angle - 0.78539816339744830962);
|
/php-src/ext/standard/tests/strings/ |
H A D | chunk_split_variation4.phpt | 166 sin
|
/php-src/ext/date/lib/ |
H A D | astro.c | 45 #define sind(x) sin((x)*DEGRAD)
|
/php-src/main/ |
H A D | network.c | 973 struct sockaddr_in *sin = (struct sockaddr_in *) addr; local 974 sin->sin_family = AF_INET; 975 sin->sin_port = htons(port); 976 sin->sin_addr.s_addr = htonl(INADDR_ANY);
|
/php-src/ext/ftp/ |
H A D | ftp.c | 800 struct sockaddr_in *sin; in ftp_pasv() local 872 sin = (struct sockaddr_in *) sa; in ftp_pasv() 874 sin->sin_addr = ipbox.ia[0]; in ftp_pasv() 876 sin->sin_port = ipbox.s[2]; in ftp_pasv()
|
/php-src/ext/standard/ |
H A D | math.c | 393 PHP_FUNCTION(sin) in PHP_FUNCTION() argument 400 RETURN_DOUBLE(sin(num)); in PHP_FUNCTION()
|