Searched refs:microseconds (Results 1 – 24 of 24) sorted by relevance
/PHP-7.3/ext/standard/tests/general_functions/ |
H A D | getrusage_variation1.phpt | 81 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 D | getrusage_basic.phpt | 23 echo "User time used (microseconds) " . $dat["ru_utime.tv_usec"] . "\n"; 29 User time used (microseconds) %d
|
H A D | usleep_error.phpt | 43 Warning: usleep(): Number of microseconds must be greater than or equal to 0 in %s on line %d
|
H A D | uniqid_basic.phpt | 6 * Description: Gets a prefixed unique identifier based on the current time in microseconds.
|
H A D | uniqid_error.phpt | 6 * Description: Gets a prefixed unique identifier based on the current time in microseconds.
|
/PHP-7.3/ext/date/tests/ |
H A D | bug73837.phpt | 15 echo ( $n > 700 ) ? "microseconds differ\n" : "microseconds do not differ enough ($n)\n"; 19 microseconds differ
|
H A D | date_time_fractions.phpt | 9 echo ($ms = 0) ? "microseconds = false\n" : "microseconds = true\n"; 52 microseconds = true
|
H A D | bug75222.phpt | 2 Bug #75222 DateInterval microseconds property always 0
|
H A D | DateTime_setTime_error.phpt | 28 $microseconds = 123123; 29 var_dump( $datetime->setTime($hour, $min, $sec, $microseconds, $extra_arg) );
|
H A D | bug68078.phpt | 2 Comparing datetime objects should account for microseconds
|
H A D | bug64887.phpt | 17 '+9 microseconds',
|
H A D | bug68078_negative.phpt | 2 Comparing datetime objects with negative timestamps should account for microseconds
|
H A D | date_time_set_error.phpt | 27 $microseconds = 123123; 29 var_dump( date_time_set($datetime, $hour, $min, $sec, $microseconds, $extra_arg) );
|
/PHP-7.3/ext/standard/tests/streams/ |
H A D | stream_set_timeout_error.phpt | 5 /* 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 D | bug74298.phpt | 2 Bug #74298 (IntlDateFormatter->format() doesn't return microseconds/fractions)
|
/PHP-7.3/ext/standard/ |
H A D | streamsfuncs.c | 1367 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 D | basic_functions.c | 2114 ZEND_ARG_INFO(0, microseconds)
|
/PHP-7.3/ |
H A D | UPGRADING | 136 microseconds). Formerly, the fractional seconds part was simply omitted from 142 microseconds). Formerly, the fractional seconds part was simply omitted from
|
H A D | NEWS | 1295 . 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 D | php_date.c | 275 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 D | www.conf.in | 274 ; - %{microseconds}d
|
/PHP-7.3/ext/sqlite3/libsqlite/ |
H A D | sqlite3.h | 1358 int (*xSleep)(sqlite3_vfs*, int microseconds);
|
H A D | sqlite3.c | 2397 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 D | parse_date.re | 181 { "microseconds", TIMELIB_MICROSEC, 1 },
|
Completed in 447 milliseconds