HomeSort by relevance Sort by last modified time
    Searched defs:start_time (Results 51 - 75 of 192) sorted by null

1 23 4 5 6 7 8

  /external/libchrome/dbus/
object_proxy.h 210 base::TimeTicks start_time);
216 base::TimeTicks start_time; member in struct:dbus::ObjectProxy::OnPendingCallIsCompleteData
225 base::TimeTicks start_time);
231 base::TimeTicks start_time);
236 base::TimeTicks start_time,
260 void RunMethod(base::TimeTicks start_time,
  /external/libmicrohttpd/src/testcurl/
perf_get_concurrent.c 75 static unsigned long long start_time; variable
100 start_time = now ();
112 double rps = ((double) (PAR * ROUNDS * 1000)) / ((double) (now() - start_time));
test_post_loop.c 459 static unsigned long long start_time; variable
487 start_time = now();
492 (double) 1000 * LOOPCOUNT / (now() - start_time + 1.0));
495 (double) 1000 * LOOPCOUNT / (now() - start_time + 1.0),
497 start_time = now();
502 (double) 1000 * LOOPCOUNT / (now() - start_time + 1.0));
505 (double) 1000 * LOOPCOUNT / (now() - start_time + 1.0),
507 start_time = now();
512 (double) 1000 * LOOPCOUNT / (now() - start_time + 1.0));
515 (double) 1000 * LOOPCOUNT / (now() - start_time + 1.0)
    [all...]
  /external/libmojo/mojo/public/c/system/tests/
core_perftest.cc 178 const MojoTimeTicks start_time = MojoGetTimeTicksNow(); local
224 1000000.0 * static_cast<double>(num_writes) / (end_time - start_time),
228 1000000.0 * static_cast<double>(num_reads) / (end_time - start_time),
  /external/linux-kselftest/tools/testing/selftests/timers/
alarmtimer-suspend.c 54 struct timespec start_time; variable in typeref:struct:timespec
105 delta_ns = timespec_sub(start_time, ts);
150 clock_gettime(alarm_clock_id, &start_time);
152 start_time.tv_sec, start_time.tv_nsec);
154 its1.it_value = start_time;
  /external/ltp/testcases/kernel/sched/sched_stress/
sched_tc4.c 113 clock_t start_time; /* start & stop times */ local
149 start_time = time((time_t *) & timer_info);
154 elapsed_time = (float)(stop_time - start_time) / 100.0;
sched_tc5.c 110 clock_t start_time; /* start & stop times */ local
146 start_time = time((time_t *) & timer_info);
152 elapsed_time = (float)(stop_time - start_time) / 100.0;
  /external/ltp/testcases/network/stress/ns-tools/
ns-igmp_querier.c 402 double start_time; local
426 start_time = time(NULL);
445 if (info_p->timeout < difftime(time(NULL), start_time))
ns-mcast_receiver.c 374 double start_time; /* start time when receiving datagrams */ local
402 start_time = time(NULL);
417 if (info_p->timeout < difftime(time(NULL), start_time))
ns-udpsender.c 381 double start_time; local
394 start_time = time(NULL);
410 if (udp_p->timeout < difftime(time(NULL), start_time))
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_gs.c 87 double start_time = 0; local
129 start_time = get_time();
153 (get_time() - start_time) * 1000);
brw_tes.c 77 double start_time = 0; local
113 start_time = get_time();
143 (get_time() - start_time) * 1000);
brw_vs.c 141 double start_time = 0; local
205 start_time = get_time();
245 (get_time() - start_time) * 1000);
intel_buffer_objects.c 56 double start_time = get_time(); local
61 bo_name, (get_time() - start_time) * 1000);
72 double start_time = get_time(); local
77 bo_name, (get_time() - start_time) * 1000);
  /external/ppp/pppd/plugins/radius/
buildreq.c 296 time_t start_time, dtime; local
327 start_time = time(NULL);
339 dtime = time(NULL) - start_time;
  /external/tensorflow/tensorflow/core/platform/default/
test_benchmark.cc 36 static int64 start_time = 0; member in namespace:tensorflow::testing
215 start_time = env->NowMicros();
252 if (start_time == 0) start_time = env->NowMicros();
255 if (start_time != 0) {
256 accum_time += (env->NowMicros() - start_time);
257 start_time = 0;
  /external/toolchain-utils/cros_utils/
command_executer.py 610 start_time = time.time() variable in class:CommandExecuter.RunCommand2.StreamHandler
633 if timeout is not None and (time.time() - start_time > timeout):
  /external/wayland/tests/
event-loop-test.c 278 struct timeval start_time, end_time, interval; local
312 gettimeofday(&start_time, NULL);
325 timersub(&end_time, &start_time, &interval);
  /external/webrtc/webrtc/base/
sharedexclusivelock_unittest.cc 71 uint32_t start_time = Time(); local
74 waiting_time_in_ms_ = TimeDiff(Time(), start_time);
104 uint32_t start_time = Time(); local
107 waiting_time_in_ms_ = TimeDiff(Time(), start_time);
  /external/webrtc/webrtc/voice_engine/test/auto_test/
voe_output_test.cc 187 uint32_t start_time = rtc::Time(); local
189 while (rtc::TimeSince(start_time) < kRuntimeMs) {
  /frameworks/av/drm/libmediadrm/tests/
DrmMetrics_test.cpp 244 int64_t start_time, end_time; local
246 start_time = -1;
248 EXPECT_TRUE(start_times.getLong(sid, &start_time));
250 EXPECT_GT(start_time, 0);
251 EXPECT_GE(end_time, start_time);
  /system/core/base/
properties.cpp 119 const AbsTime& start_time) {
121 auto time_elapsed = std::chrono::duration_cast<std::chrono::milliseconds>(now - start_time);
136 const AbsTime& start_time) {
144 UpdateTimeSpec(ts, relative_timeout, start_time);
152 auto start_time = std::chrono::steady_clock::now(); local
153 const prop_info* pi = WaitForPropertyCreation(key, relative_timeout, start_time);
166 UpdateTimeSpec(ts, relative_timeout, start_time);
174 auto start_time = std::chrono::steady_clock::now(); local
175 return (WaitForPropertyCreation(key, relative_timeout, start_time) != nullptr);
  /system/update_engine/
p2p_manager_unittest.cc 144 base::Time start_time = base::Time::FromDoubleT(1246996800.); local
150 base::Time file_time = start_time + TimeDelta::FromMinutes(n);
  /art/dexlayout/
compact_dex_writer.cc 91 uint64_t start_time = NanoTime(); local
102 << (end_time - start_time) / debug_info_offsets.size();
  /art/runtime/gc/collector/
garbage_collector.cc 90 uint64_t start_time = NanoTime(); local
105 current_iteration->SetDurationNs(end_time - start_time);

Completed in 617 milliseconds

1 23 4 5 6 7 8