Searched refs:sin (Results 1 – 25 of 33) sorted by relevance
12
/PHP-7.1/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 float, 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-7.1/ext/sockets/ |
H A D | sockaddr_conv.c | 85 int php_set_inet_addr(struct sockaddr_in *sin, char *string, php_socket *php_sock) /* {{{ */ 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 | sockaddr_conv.h | 24 int php_set_inet_addr(struct sockaddr_in *sin, char *string, php_socket *php_sock);
|
H A D | sockets.c | 1212 struct sockaddr_in *sin; local 1295 struct sockaddr_in *sin; local 1455 struct sockaddr_in sin = {0}; local 1462 sin.sin_family = AF_INET; 1690 struct sockaddr_in sin; local 1738 slen = sizeof(sin); 1739 memset(&sin, 0, slen); 1740 sin.sin_family = AF_INET; 1816 struct sockaddr_in sin; local 1853 memset(&sin, 0, sizeof(sin)); [all …]
|
/PHP-7.1/Zend/tests/ |
H A D | bug70804.phpt | 9 $foo = +(-sin(0));
|
H A D | bug52355.phpt | 9 $foo = -sin(0);
|
H A D | bug43343.phpt | 11 Parse error: %s error%sexpecting%sT_NS_SEPARATOR%sin %sbug43343.php on line 5
|
H A D | bug75290.phpt | 6 var_dump((new ReflectionFunction('sin'))->getClosure());
|
H A D | bug69599.phpt | 7 sin(...[0]);
|
H A D | bug38779.phpt | 32 Parse error: %s error%sin Loader://qqq.php on line %d
|
H A D | bug38779_1.phpt | 51 Parse error: %s error%sin %s on line %d
|
/PHP-7.1/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-7.1/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-7.1/ext/gd/tests/ |
H A D | bug43073.phpt | 38 $sin_t = sin(deg2rad($delta_t));
|
H A D | bug53504.phpt | 81 $test['y'] - $width * sin(deg2rad($test['angle'])), $blue);
|
/PHP-7.1/ext/standard/ |
H A D | php_math.h | 33 PHP_FUNCTION(sin);
|
/PHP-7.1/ext/mysqli/tests/ |
H A D | 010.phpt | 35 sin(0.6), 1.00000000000001, 888888888888888)");
|
/PHP-7.1/ext/standard/tests/strings/ |
H A D | chunk_split_variation4.phpt | 172 sin
|
/PHP-7.1/ext/gd/libgd/ |
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));
|
/PHP-7.1/ext/date/lib/ |
H A D | astro.c | 45 #define sind(x) sin((x)*DEGRAD)
|
/PHP-7.1/main/ |
H A D | network.c | 995 struct sockaddr_in *sin = (struct sockaddr_in *) addr; local 996 sin->sin_family = AF_INET; 997 sin->sin_port = htons(port); 998 sin->sin_addr.s_addr = htonl(INADDR_ANY);
|
Completed in 36 milliseconds
12