Home
last modified time | relevance | path

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

/PHP-7.2/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.2/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.2/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.2/ext/intl/tests/
H A Dbug74298.phpt2 Bug #74298 (IntlDateFormatter->format() doesn't return microseconds/fractions)
/PHP-7.2/ext/standard/
H A Dstreamsfuncs.c1361 zend_long seconds, microseconds = 0; in PHP_FUNCTION() local
1370 Z_PARAM_LONG(microseconds) in PHP_FUNCTION()
1379 t.tv_usec = (long)(microseconds % 1000000); in PHP_FUNCTION()
1380 t.tv_sec +=(long)(microseconds / 1000000); in PHP_FUNCTION()
1388 t.tv_usec = microseconds % 1000000; in PHP_FUNCTION()
1389 t.tv_sec += microseconds / 1000000; in PHP_FUNCTION()
H A Dbasic_functions.c2098 ZEND_ARG_INFO(0, microseconds)
/PHP-7.2/
H A DNEWS1430 . Fixed bug #75222 (DateInterval microseconds property always 0). (jhdxr)
2087 microseconds/fractions). (Andrew Nester)
2614 . Fixed bug #48225 (DateTime parser doesn't set microseconds for "now").
2616 . Fixed bug #52514 (microseconds are missing in DateTime class). (Derick)
2617 . Fixed bug #52519 (microseconds in DateInterval are missing). (Derick)
2622 . Fixed bug #68506 (General DateTime improvments needed for microseconds to
2625 . Fixed bug #73247 (DateTime constructor does not initialise microseconds
/PHP-7.2/ext/date/
H A Dphp_date.c277 ZEND_ARG_INFO(0, microseconds)
284 ZEND_ARG_INFO(0, microseconds)
2646 static void php_date_set_time_fraction(timelib_time *time, int microseconds) in php_date_set_time_fraction() argument
2648 time->us = microseconds; in php_date_set_time_fraction()
/PHP-7.2/sapi/fpm/
H A Dwww.conf.in274 ; - %{microseconds}d
/PHP-7.2/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.2/ext/date/lib/
H A Dparse_date.re182 { "microseconds", TIMELIB_MICROSEC, 1 },
/PHP-7.2/ext/fileinfo/
H A Dlibmagic.patch1126 + /* Time interval, in microseconds */

Completed in 518 milliseconds