Home
last modified time | relevance | path

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

/PHP-7.3/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.3/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.c3005 PHP_FE(hrtime, arginfo_hrtime)
3748 BASIC_MINIT_SUBMODULE(hrtime) in PHP_MINIT_FUNCTION()
/PHP-7.3/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.3/
H A Drun-tests.php187 function hrtime(bool $as_num = false) function
1935 $hrtime = hrtime();
1936 $startTime = $hrtime[0]*1000000000 + $hrtime[1];
1941 $hrtime = hrtime();
1942 $time = $hrtime[0]*1000000000 + $hrtime[1] - $startTime;
H A DUPGRADING406 . Added monotonic timer function hrtime([bool get_as_num]). It returns an
H A DNEWS1704 . Added hrtime() function, to get high resolution time. (welting)

Completed in 44 milliseconds