Home
last modified time | relevance | path

Searched refs:usec (Results 1 – 17 of 17) sorted by relevance

/PHP-8.0/ext/standard/
H A Duniqid.c45 int sec, usec; in PHP_FUNCTION() local
68 usec = (int) (tv.tv_usec % 0x100000); in PHP_FUNCTION()
74 uniqid = strpprintf(0, "%s%08x%05x%.8F", prefix, sec, usec, php_combined_lcg() * 10); in PHP_FUNCTION()
76 uniqid = strpprintf(0, "%s%08x%05x", prefix, sec, usec); in PHP_FUNCTION()
H A Dstreamsfuncs.c758 zend_long sec, usec = 0; in PHP_FUNCTION() local
768 Z_PARAM_LONG(usec) in PHP_FUNCTION()
810 } else if (usec < 0) { in PHP_FUNCTION()
816 tv.tv_sec = (long)(sec + (usec / 1000000)); in PHP_FUNCTION()
817 tv.tv_usec = (long)(usec % 1000000); in PHP_FUNCTION()
/PHP-8.0/ext/sockets/tests/
H A Dsocket_select-wrongparams-4.phpt4 usec > 999999
23 $usec = 2000000;
24 var_dump(socket_select($sockets, $write, $except, $time, $usec));
H A Dsocket_setopt_basic.phpt21 $options = array("sec" => 1, "usec" => 0);
H A Dsocket_set_option_rcvtimeo.phpt28 $options = array("sec" => 1, "usec" => 0);
H A Dsocket_set_option_sndtimeo.phpt28 $options = array("sec" => 1, "usec" => 0);
/PHP-8.0/ext/date/tests/
H A Dgettimeofday_basic.phpt31 ["usec"]=>
41 ["usec"]=>
H A Dbug35143.phpt15 ["usec"]=>
H A Dbug64887.phpt14 '-6 usec',
/PHP-8.0/ext/standard/tests/mail/
H A Dmail_skipif.inc9 socket_set_option($socket, SOL_SOCKET, SO_RCVTIMEO, array('sec' => 10, 'usec' => 10));
/PHP-8.0/ext/sockets/
H A Dsockets.c732 zend_long sec, usec = 0; local
735 …ND_NUM_ARGS(), "a!a!a!l!|l", &r_array, &w_array, &e_array, &sec, &sec_is_null, &usec) == FAILURE) {
774 if (usec > 999999) {
775 tv.tv_sec = sec + (usec / 1000000);
776 tv.tv_usec = usec % 1000000;
779 tv.tv_usec = usec;
1851 zval *sec, *usec; local
1925 if ((usec = zend_hash_str_find(opt_ht, usec_key, sizeof(usec_key) - 1)) == NULL) {
1931 convert_to_long_ex(usec);
1934 tv.tv_usec = Z_LVAL_P(usec);
[all …]
/PHP-8.0/ext/mysqli/
H A Dmysqli_nonapi.c837 zend_long sec = 0, usec = 0; local
841 …eters(ZEND_NUM_ARGS(), "a!a!al|l", &r_array, &e_array, &dont_poll_array, &sec, &usec) == FAILURE) {
848 if (usec < 0) {
873 ret = mysqlnd_poll(new_r_array, new_e_array, &new_dont_poll_array, sec, usec, &desc_num);
/PHP-8.0/ext/mysqlnd/
H A Dmysqlnd_connection.c2576 mysqlnd_poll(MYSQLND **r_array, MYSQLND **e_array, MYSQLND ***dont_poll, long sec, long usec, int *… argument
2586 if (sec < 0 || usec < 0) {
2623 if (usec > 999999) {
2624 tv.tv_sec = sec + (usec / 1000000);
2625 tv.tv_usec = usec % 1000000;
2628 tv.tv_usec = usec;
H A Dmysqlnd.h115 …l(MYSQLND **r_array, MYSQLND **e_array, MYSQLND ***dont_poll, long sec, long usec, int * desc_num);
/PHP-8.0/sapi/cgi/
H A Dcgi_main.c2640 int usec; local
2645 usec = (int)(end.tv_usec - start.tv_usec);
2648 usec = (int)(end.tv_usec + 1000000 - start.tv_usec);
2650 fprintf(stderr, "\nElapsed time: %d.%06d sec\n", sec, usec);
/PHP-8.0/ext/date/
H A Dphp_date.c2226 static void php_date_get_current_time_with_fraction(time_t *sec, suseconds_t *usec) in php_date_get_current_time_with_fraction() argument
2233 *usec = tp.tv_usec; in php_date_get_current_time_with_fraction()
2236 *usec = 0; in php_date_get_current_time_with_fraction()
2249 suseconds_t usec; in php_date_initialize() local
2325 php_date_get_current_time_with_fraction(&sec, &usec); in php_date_initialize()
2327 php_date_set_time_fraction(now, usec); in php_date_initialize()
/PHP-8.0/ext/date/lib/
H A Dparse_date.re176 { "usec", TIMELIB_MICROSEC, 1 },
1028 reltextunit = 'ms' | 'µs' | (('msec'|'millisecond'|'µsec'|'microsecond'|'usec'|'sec'|'second'|'min'…

Completed in 64 milliseconds