Searched refs:ZEND_NANO_IN_SEC (Results 1 – 4 of 4) sorted by relevance
/php-src/ext/standard/ |
H A D | hrtime.c | 63 add_next_index_long(return_value, (zend_long)(t / (zend_hrtime_t)ZEND_NANO_IN_SEC)); in PHP_FUNCTION() 64 add_next_index_long(return_value, (zend_long)(t % (zend_hrtime_t)ZEND_NANO_IN_SEC)); in PHP_FUNCTION()
|
/php-src/Zend/ |
H A D | zend_hrtime.h | 73 #define ZEND_NANO_IN_SEC UINT64_C(1000000000) macro 90 return ((zend_hrtime_t) ts.tv_sec * (zend_hrtime_t)ZEND_NANO_IN_SEC) + ts.tv_nsec; in zend_hrtime()
|
H A D | zend_hrtime.c | 62 zend_hrtime_timer_scale = (double)ZEND_NANO_IN_SEC / (zend_hrtime_t)tf.QuadPart; in zend_startup_hrtime()
|
H A D | zend_builtin_functions.c | 184 …lication_time", sizeof("application_time")-1, (double) status.application_time / ZEND_NANO_IN_SEC); in ZEND_FUNCTION() 185 …, "collector_time", sizeof("collector_time")-1, (double) status.collector_time / ZEND_NANO_IN_SEC); in ZEND_FUNCTION() 186 …lue, "destructor_time", sizeof("destructor_time")-1, (double) status.dtor_time / ZEND_NANO_IN_SEC); in ZEND_FUNCTION() 187 …ex(return_value, "free_time", sizeof("free_time")-1, (double) status.free_time / ZEND_NANO_IN_SEC); in ZEND_FUNCTION()
|
Completed in 15 milliseconds