Searched refs:start_time (Results 1 – 10 of 10) sorted by relevance
34 static uint64_t start_time; variable51 (long int)(uv_now(uv_default_loop()) - start_time)); in repeat_1_cb()74 (long int)(uv_now(uv_default_loop()) - start_time)); in repeat_2_cb()98 start_time = uv_now(uv_default_loop()); in TEST_IMPL()99 ASSERT_LT(0, start_time); in TEST_IMPL()136 (long int)(uv_now(uv_default_loop()) - start_time)); in TEST_IMPL()
41 uint64_t start_time; in BENCHMARK_IMPL() local46 start_time = uv_hrtime(); in BENCHMARK_IMPL()56 duration = (uv_hrtime() - start_time) / 1e9; in BENCHMARK_IMPL()
37 static int64_t start_time; variable72 start_time = uv_now(loop); in BENCHMARK_IMPL()87 (double) calls_completed / (double) (end_time - start_time) * 1000.0); in BENCHMARK_IMPL()
55 static int64_t start_time; variable103 diff = uv_now(loop) - start_time; in show_stats()131 diff = uv_now(loop) - start_time; in read_show_stats()149 if (uv_now(loop) - start_time > 1000 && read_sockets == 0) { in read_sockets_close_cb()167 start_time = uv_now(loop); in start_stats_collection()173 ASSERT_OK(start_time); in read_cb()175 start_time = uv_now(loop); in read_cb()
139 static int64_t start_time, end_time; in BENCHMARK_IMPL() local148 start_time = uv_now(loop); in BENCHMARK_IMPL()159 (double) N / (double) (end_time - start_time) * 1000.0); in BENCHMARK_IMPL()
49 static int64_t start_time; variable106 if (uv_now(loop) - start_time > TIME) { in pinger_read_cb()145 start_time = uv_now(loop); in ping_udp()
53 static int64_t start_time; variable151 if (uv_now(loop) - start_time > TIME) { in pinger_read_cb()212 start_time = uv_now(loop); in BENCHMARK_IMPL()
279 uint64_t start_time; /* in ns */ in pound_it() local288 start_time = uv_hrtime(); in pound_it()300 secs = (double)(end_time - start_time) / NANOSEC; in pound_it()
35 static uint64_t start_time; variable122 start_time = uv_now(uv_default_loop()); in TEST_IMPL()123 ASSERT_LT(0, start_time); in TEST_IMPL()157 ASSERT_LE(500, uv_now(uv_default_loop()) - start_time); in TEST_IMPL()
41 uint64_t start_time; member88 ctx->start_time = uv_now(loop); in uv_fs_poll_start()178 ctx->start_time = uv_now(ctx->loop); in timer_cb()227 interval -= (uv_now(ctx->loop) - ctx->start_time) % interval; in poll_cb()
Completed in 26 milliseconds