Home
last modified time | relevance | path

Searched refs:hrtime (Results 1 – 11 of 11) sorted by relevance

/PHP-7.4/ext/standard/tests/hrtime/
H A Dhrtime.phpt2 Test hrtime() aligns with microtime()
7 $h0 = hrtime(true);
9 $h1 = hrtime(true);
H A Dhrtime_array.phpt2 Test hrtime() return array
6 var_dump(hrtime());
/PHP-7.4/ext/standard/
H A Dhrtime.h54 PHP_MINIT_FUNCTION(hrtime);
56 PHP_FUNCTION(hrtime);
H A Dhrtime.c102 PHP_MINIT_FUNCTION(hrtime) in PHP_MINIT_FUNCTION() argument
166 PHP_FUNCTION(hrtime) in PHP_FUNCTION() argument
H A Dconfig.w3238 streamsfuncs.c http.c flock_compat.c random.c hrtime.c", false /* never shared */,
H A Dconfig.m4496 random.c net.c hrtime.c,,,
H A Dbasic_functions.c3000 PHP_FE(hrtime, arginfo_hrtime)
3730 BASIC_MINIT_SUBMODULE(hrtime) in PHP_MINIT_FUNCTION()
/PHP-7.4/Zend/
H A Dmicro_bench.php243 $hrtime = hrtime();
244 return (($hrtime[0]*1000000000 + $hrtime[1]) / 1000000000);
H A Dbench.php350 $hrtime = hrtime();
351 return (($hrtime[0]*1000000000 + $hrtime[1]) / 1000000000);
/PHP-7.4/
H A Drun-tests.php807 function hrtime(bool $as_num = false) function
2454 $hrtime = hrtime();
2455 $startTime = $hrtime[0] * 1000000000 + $hrtime[1];
2460 $hrtime = hrtime();
2461 $time = $hrtime[0] * 1000000000 + $hrtime[1] - $startTime;
H A DNEWS2788 . Added hrtime() function, to get high resolution time. (welting)

Completed in 40 milliseconds