Home
last modified time | relevance | path

Searched refs:microseconds (Results 1 – 24 of 24) sorted by relevance

/PHP-7.3/ext/standard/tests/general_functions/
H A Dgetrusage_variation1.phpt81 User time used (microseconds) %d
84 User time used (microseconds) %d
87 User time used (microseconds) %d
90 User time used (microseconds) %d
93 User time used (microseconds) %d
96 User time used (microseconds) %d
99 User time used (microseconds) %d
102 User time used (microseconds) %d
105 User time used (microseconds) %d
108 User time used (microseconds) %d
[all …]
H A Dgetrusage_basic.phpt23 echo "User time used (microseconds) " . $dat["ru_utime.tv_usec"] . "\n";
29 User time used (microseconds) %d
H A Dusleep_error.phpt43 Warning: usleep(): Number of microseconds must be greater than or equal to 0 in %s on line %d
H A Duniqid_basic.phpt6 * Description: Gets a prefixed unique identifier based on the current time in microseconds.
H A Duniqid_error.phpt6 * Description: Gets a prefixed unique identifier based on the current time in microseconds.
/PHP-7.3/ext/date/tests/
H A Dbug73837.phpt15 echo ( $n > 700 ) ? "microseconds differ\n" : "microseconds do not differ enough ($n)\n";
19 microseconds differ
H A Ddate_time_fractions.phpt9 echo ($ms = 0) ? "microseconds = false\n" : "microseconds = true\n";
52 microseconds = true
H A Dbug75222.phpt2 Bug #75222 DateInterval microseconds property always 0
H A DDateTime_setTime_error.phpt28 $microseconds = 123123;
29 var_dump( $datetime->setTime($hour, $min, $sec, $microseconds, $extra_arg) );
H A Dbug68078.phpt2 Comparing datetime objects should account for microseconds
H A Dbug64887.phpt17 '+9 microseconds',
H A Dbug68078_negative.phpt2 Comparing datetime objects with negative timestamps should account for microseconds
H A Ddate_time_set_error.phpt27 $microseconds = 123123;
29 var_dump( date_time_set($datetime, $hour, $min, $sec, $microseconds, $extra_arg) );
/PHP-7.3/ext/standard/tests/streams/
H A Dstream_set_timeout_error.phpt5 /* Prototype : proto bool stream_set_timeout(resource stream, int seconds, int microseconds)
28 $microseconds = 10;
30 var_dump( stream_set_timeout($client, $seconds, $microseconds, $extra_arg) );
/PHP-7.3/ext/intl/tests/
H A Dbug74298.phpt2 Bug #74298 (IntlDateFormatter->format() doesn't return microseconds/fractions)
/PHP-7.3/ext/standard/
H A Dstreamsfuncs.c1367 zend_long seconds, microseconds = 0; in PHP_FUNCTION() local
1376 Z_PARAM_LONG(microseconds) in PHP_FUNCTION()
1385 t.tv_usec = (long)(microseconds % 1000000); in PHP_FUNCTION()
1386 t.tv_sec +=(long)(microseconds / 1000000); in PHP_FUNCTION()
1394 t.tv_usec = microseconds % 1000000; in PHP_FUNCTION()
1395 t.tv_sec += microseconds / 1000000; in PHP_FUNCTION()
H A Dbasic_functions.c2114 ZEND_ARG_INFO(0, microseconds)
/PHP-7.3/
H A DUPGRADING136 microseconds). Formerly, the fractional seconds part was simply omitted from
142 microseconds). Formerly, the fractional seconds part was simply omitted from
H A DNEWS1295 . Fixed bug #77264 (curl_getinfo returning microseconds, not seconds).
1476 . Fixed bug #75222 (DateInterval microseconds property always 0). (jhdxr)
1483 . Fixed bug #75642 (Wrap around behaviour for microseconds is not working).
2439 . Fixed bug #75222 (DateInterval microseconds property always 0). (jhdxr)
/PHP-7.3/ext/date/
H A Dphp_date.c275 ZEND_ARG_INFO(0, microseconds)
282 ZEND_ARG_INFO(0, microseconds)
2633 static void php_date_set_time_fraction(timelib_time *time, int microseconds) in php_date_set_time_fraction() argument
2635 time->us = microseconds; in php_date_set_time_fraction()
/PHP-7.3/sapi/fpm/
H A Dwww.conf.in274 ; - %{microseconds}d
/PHP-7.3/ext/sqlite3/libsqlite/
H A Dsqlite3.h1358 int (*xSleep)(sqlite3_vfs*, int microseconds);
H A Dsqlite3.c2397 int (*xSleep)(sqlite3_vfs*, int microseconds);
38982 static int unixSleep(sqlite3_vfs *NotUsed, int microseconds){
38986 sp.tv_sec = microseconds / 1000000;
38987 sp.tv_nsec = (microseconds % 1000000) * 1000;
38990 return microseconds;
38992 usleep(microseconds);
38994 return microseconds;
38996 int seconds = (microseconds+999999)/1000000;
46793 static int memdbSleep(sqlite3_vfs*, int microseconds);
/PHP-7.3/ext/date/lib/
H A Dparse_date.re181 { "microseconds", TIMELIB_MICROSEC, 1 },

Completed in 447 milliseconds