| /src/external/mit/libuv/dist/test/ |
| benchmark-thread.c | 41 uint64_t start_time; local 46 start_time = uv_hrtime(); 56 duration = (uv_hrtime() - start_time) / 1e9;
|
| test-timer-again.c | 34 static uint64_t start_time; variable 51 (long int)(uv_now(uv_default_loop()) - start_time)); 74 (long int)(uv_now(uv_default_loop()) - start_time)); 98 start_time = uv_now(uv_default_loop()); 99 ASSERT_LT(0, start_time); 136 (long int)(uv_now(uv_default_loop()) - start_time));
|
| benchmark-getaddrinfo.c | 37 static int64_t start_time; variable 72 start_time = uv_now(loop); 87 (double) calls_completed / (double) (end_time - start_time) * 1000.0);
|
| benchmark-ping-udp.c | 49 static int64_t start_time; variable 106 if (uv_now(loop) - start_time > TIME) { 145 start_time = uv_now(loop);
|
| benchmark-spawn.c | 139 static int64_t start_time, end_time; local 148 start_time = uv_now(loop); 159 (double) N / (double) (end_time - start_time) * 1000.0);
|
| benchmark-pump.c | 55 static int64_t start_time; variable 103 diff = uv_now(loop) - start_time; 131 diff = uv_now(loop) - start_time; 149 if (uv_now(loop) - start_time > 1000 && read_sockets == 0) { 167 start_time = uv_now(loop); 173 ASSERT(start_time == 0); 175 start_time = uv_now(loop);
|
| benchmark-ping-pongs.c | 53 static int64_t start_time; variable 151 if (uv_now(loop) - start_time > TIME) { 212 start_time = uv_now(loop);
|
| /src/external/gpl3/binutils/dist/gprofng/src/ |
| Sample.h | 54 return start_time; 74 hrtime_t start_time; // sample start time member in class:Sample
|
| /src/external/gpl3/binutils.old/dist/gprofng/src/ |
| Sample.h | 54 return start_time; 74 hrtime_t start_time; // sample start time member in class:Sample
|
| /src/external/mpl/bind/dist/bin/tests/system/xfer/ |
| tests_retransfer_with_transferstuck.py | 31 start_time = time.time() 37 50 <= (end_time - start_time) < 59
|
| /src/external/public-domain/xz/dist/src/xz/ |
| mytime.c | 25 // start_time holds the time when the (de)compression was started. 27 // time differences (elapsed time). start_time is initialized by calling 30 // When mytime_sigtstp_handler() is used, start_time is made volatile. 36 static volatile uint64_t start_time; variable 38 static uint64_t start_time; variable 98 // that amount to start_time. This way the progress indicator 114 start_time += mytime_now() - t; 124 // Block the signals when accessing start_time so that we cannot 125 // end up with a garbage value. start_time is volatile but access 130 start_time = mytime_now() [all...] |
| /src/games/atc/ |
| extern.c | 63 time_t start_time; variable
|
| extern.h | 53 extern time_t start_time;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.perf/lib/perftest/ |
| measure.py | 105 self.start_time = 0 108 self.start_time = time.perf_counter() 111 perf_counter = time.perf_counter() - self.start_time 124 self.start_time = 0 127 self.start_time = time.process_time() 130 process_time = time.process_time() - self.start_time 139 self.start_time = 0 142 self.start_time = time.time() 145 wall_time = time.time() - self.start_time
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.perf/lib/perftest/ |
| measure.py | 105 self.start_time = 0 108 self.start_time = time.perf_counter() 111 perf_counter = time.perf_counter() - self.start_time 124 self.start_time = 0 127 self.start_time = time.process_time() 130 process_time = time.process_time() - self.start_time 139 self.start_time = 0 142 self.start_time = time.time() 145 wall_time = time.time() - self.start_time
|
| /src/external/gpl3/gdb.old/dist/sim/common/ |
| sim-load.c | 62 time_t start_time = 0; /* Start and end times of download */ local 91 start_time = time (NULL); 151 report_transfer_performance (callback, data_count, start_time, end_time); 187 time_t start_time, time_t end_time) 190 if (end_time != start_time) 192 (data_count * 8) / (end_time - start_time));
|
| /src/external/gpl3/gdb/dist/sim/common/ |
| sim-load.c | 62 time_t start_time = 0; /* Start and end times of download */ local 91 start_time = time (NULL); 151 report_transfer_performance (callback, data_count, start_time, end_time); 187 time_t start_time, time_t end_time) 190 if (end_time != start_time) 192 (data_count * 8) / (end_time - start_time));
|
| /src/external/apache2/argon2/dist/phc-winner-argon2/src/ |
| bench.c | 78 clock_t start_time, stop_time; local 84 start_time = clock(); 96 run_time += ((double)stop_time - start_time) / (CLOCKS_PER_SEC);
|
| /src/external/bsd/openldap/dist/include/ |
| lutil_meter.h | 55 double start_time; member in struct:__anon7673
|
| /src/external/gpl3/gcc/dist/gcc/ |
| timevar.cc | 265 /* Add the difference between STOP_TIME and START_TIME to TIMER. */ 269 struct timevar_time_def *start_time, 272 timer->user += stop_time->user - start_time->user; 273 timer->sys += stop_time->sys - start_time->sys; 274 timer->wall += stop_time->wall - start_time->wall; 275 timer->ggc_mem += stop_time->ggc_mem - start_time->ggc_mem; 278 /* Get the difference between STOP_TIME and START_TIME. */ 282 const timevar_time_def &start_time, 285 out->user = stop_time.user - start_time.user; 286 out->sys = stop_time.sys - start_time.sys [all...] |
| /src/external/bsd/tcpdump/dist/ |
| print-cnfp.c | 72 nd_uint32_t start_time; /* sys_uptime value at start of flow */ member in struct:nfrec_v1 104 nd_uint32_t start_time; /* sys_uptime value at start of flow */ member in struct:nfrec_v5 138 nd_uint32_t start_time; /* sys_uptime value at start of flow */ member in struct:nfrec_v6 198 GET_BE_U_4(nr->start_time)/1000, 199 GET_BE_U_4(nr->start_time)%1000, 294 GET_BE_U_4(nr->start_time)/1000, 295 GET_BE_U_4(nr->start_time)%1000, 396 GET_BE_U_4(nr->start_time)/1000, 397 GET_BE_U_4(nr->start_time)%1000,
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| quic_client_test.c | 43 OSSL_TIME start_time; local 98 start_time = ossl_time_now(); 101 if (ossl_time_compare(ossl_time_subtract(ossl_time_now(), start_time),
|
| /src/external/bsd/kyua-cli/dist/engine/drivers/ |
| run_tests.cpp | 135 const datetime::timestamp start_time = datetime::timestamp::now(); local 139 tx.put_result(result, test_case_id, start_time, end_time); 140 hooks.got_result(test_case, result, end_time - start_time);
|
| /src/external/bsd/unbound/dist/dynlibmod/examples/ |
| helloworld.c | 36 struct timeval* start_time, int id, void* callback); 122 struct timeval* start_time, int id, void* callback) {
|
| /src/external/bsd/openldap/dist/libraries/liblutil/ |
| meter.c | 120 lutil_get_now( &meter->start_time ); 121 meter->last_update = meter->start_time; 155 elapsed = now - meter->start_time; 167 meter->start_time,
|