/PHP-5.5/ext/standard/tests/math/ |
H A D | sin_basic.phpt | 26 echo "sin 30 = "; 35 echo "sin 60 = "; 44 echo "sin 90 = "; 53 echo "sin 180 = "; 62 echo "sin 270 = "; 71 echo "sin 360 = "; 81 sin 30 = float(%f) 83 sin 60 = float(%f) 85 sin 90 = float(%f) 87 sin 180 = float(%f) [all …]
|
H A D | sin_error.phpt | 2 Test wrong number of arguments for sin() 6 * proto float sin(float number) 14 var_dump(sin($arg_0, $extra_arg)); 17 var_dump(sin()); 23 Warning: sin() expects exactly 1 parameter, 2 given in %s on line %d 28 Warning: sin() expects exactly 1 parameter, 0 given in %s on line %d
|
H A D | sin_variation.phpt | 2 Test variations in usage of sin() 8 * proto float sin(float number) 13 //Test sin with a different input values 32 $res = sin($values[$i]); 48 Warning: sin() expects parameter 1 to be double, string given in %s on line %d
|
H A D | sin_basiclong_64bit.phpt | 2 Test sin function : 64bit long tests 24 var_dump(sin($longVal));
|
/PHP-5.5/ext/sockets/ |
H A D | sockaddr_conv.c | 85 int php_set_inet_addr(struct sockaddr_in *sin, char *string, php_socket *php_sock TSRMLS_DC) /* {{{… in php_set_inet_addr() argument 91 sin->sin_addr.s_addr = tmp.s_addr; in php_set_inet_addr() 106 memcpy(&(sin->sin_addr.s_addr), host_entry->h_addr_list[0], host_entry->h_length); in php_set_inet_addr()
|
H A D | sockets.c | 1183 struct sockaddr_in *sin; local 1260 struct sockaddr_in *sin; local 1415 struct sockaddr_in sin = {0}; local 1422 sin.sin_family = AF_INET; 1642 struct sockaddr_in sin; local 1686 slen = sizeof(sin); 1687 memset(&sin, 0, slen); 1688 sin.sin_family = AF_INET; 1760 struct sockaddr_in sin; local 1789 memset(&sin, 0, sizeof(sin)); [all …]
|
H A D | sockaddr_conv.h | 24 int php_set_inet_addr(struct sockaddr_in *sin, char *string, php_socket *php_sock TSRMLS_DC);
|
/PHP-5.5/ext/standard/tests/assert/ |
H A D | assert02.phpt | 38 Parse error: %s error%sin %sassert02.php(14) : assert code on line 1 45 Parse error: %s error%sin %sassert02.php(19) : assert code on line 1
|
/PHP-5.5/Zend/tests/ |
H A D | bug43343.phpt | 11 Parse error: %s error%sexpecting%sT_NS_SEPARATOR%sin %sbug43343.php on line 5
|
H A D | bug38779.phpt | 32 Parse error: %s error%sin Loader://qqq.php on line %d
|
H A D | bug38779_1.phpt | 43 Parse error: %s error%sin %s on line %d
|
/PHP-5.5/tests/lang/ |
H A D | bug21820.phpt | 13 Parse error: %s error, %s(T_STRING)%s(T_VARIABLE)%s(T_NUM_STRING)%sin %sbug21820.php on line %d
|
/PHP-5.5/ext/standard/tests/general_functions/ |
H A D | parse_ini_string_002.phpt | 100 Warning: syntax error, unexpected '='%sin Unknown on line 2 104 Warning: syntax error, unexpected '='%sin Unknown on line 2
|
/PHP-5.5/ext/gd/tests/ |
H A D | bug43073_1.phpt | 22 $sin_t = sin(deg2rad($delta_t));
|
H A D | bug43073.phpt | 22 $sin_t = sin(deg2rad($delta_t));
|
/PHP-5.5/ext/standard/ |
H A D | php_math.h | 32 PHP_FUNCTION(sin);
|
/PHP-5.5/ext/gd/libgd/ |
H A D | gd_interpolation.c | 297 (-1.0f/sqrt(2.0f)*(sin(x)+cos(x)))); in KernelBessel_Order1() 427 return R * sin(x*M_PI) * sin(x * M_PI/ R) / (x * M_PI * x * M_PI); in filter_lanczos8() 444 return R * sin(x*M_PI) * sin(x * M_PI / R) / (x * M_PI * x * M_PI); in filter_lanczos3() 591 return (sin(M_PI * (double) x) / (M_PI * (double) x)); in filter_sinc() 1706 const gdFixed f_sin = gd_ftofx(sin(-_angle)); in gdImageRotateNearestNeighbour() 1755 const gdFixed f_sin = gd_ftofx(sin(-_angle)); in gdImageRotateGeneric() 1808 unsigned int new_width = abs((int)(src_w*cos(_angle))) + abs((int)(src_h*sin(_angle) + 0.5f)); in gdImageRotateBilinear() 1809 unsigned int new_height = abs((int)(src_w*sin(_angle))) + abs((int)(src_h*cos(_angle) + 0.5f)); in gdImageRotateBilinear() 1814 const gdFixed f_sin = gd_ftofx(sin(-_angle)); in gdImageRotateBilinear() 1923 …const unsigned int new_width = abs((int)(src_w*cos(_angle))) + abs((int)(src_h*sin(_angle) + 0.5f)… in gdImageRotateBicubicFixed() [all …]
|
H A D | gd_matrix.c | 201 const double sin_t = sin (angle * M_PI / 180.0); in gdAffineRotate()
|
H A D | gd_arc_f_buggy.c | 245 s_sin = (long) ((double) 32768 * sin ((double) s * M_PI / (double) 180)); 255 e_sin = (long) ((double) 32768 * sin ((double) e * M_PI / (double) 180)); 610 a_sin = (long) ((double) 32768 * sin ((double) angle * M_PI / (double) 180));
|
H A D | gdft.c | 785 double sin_a = sin (angle); 1123 double d1 = sin (angle + 0.78539816339744830962); 1124 double d2 = sin (angle - 0.78539816339744830962);
|
/PHP-5.5/ext/mysqli/tests/ |
H A D | 010.phpt | 35 sin(0.6), 1.00000000000001, 888888888888888)");
|
/PHP-5.5/ext/standard/tests/strings/ |
H A D | chunk_split_variation4.phpt | 172 sin
|
/PHP-5.5/main/ |
H A D | network.c | 952 struct sockaddr_in *sin = (struct sockaddr_in *) addr; local 953 sin->sin_family = AF_INET; 954 sin->sin_port = htons(port); 955 sin->sin_addr.s_addr = htonl(INADDR_ANY);
|
/PHP-5.5/ext/date/lib/ |
H A D | astro.c | 40 #define sind(x) sin((x)*DEGRAD)
|
/PHP-5.5/ext/ftp/ |
H A D | ftp.c | 709 struct sockaddr_in *sin; in ftp_pasv() local 780 sin = (struct sockaddr_in *) sa; in ftp_pasv() 781 sin->sin_family = AF_INET; in ftp_pasv() 782 sin->sin_addr = ipbox.ia[0]; in ftp_pasv() 783 sin->sin_port = ipbox.s[2]; in ftp_pasv()
|