Searched refs:ns_per_sec (Results 1 – 1 of 1) sorted by relevance
1205 const uint64_t ns_per_sec = 1000000000; local1206 const double top_target_sec = (double)(UINT64_MAX / ns_per_sec);1221 target_ns = (uint64_t) (target_secs * ns_per_sec);1222 current_ns = ((uint64_t) tm.tv_sec) * ns_per_sec + ((uint64_t) tm.tv_usec) * 1000;1229 php_req.tv_sec = (time_t) (diff_ns / ns_per_sec);1230 php_req.tv_nsec = (long) (diff_ns % ns_per_sec);
Completed in 8 milliseconds