HomeSort by relevance Sort by last modified time
    Searched defs:end_time (Results 1 - 25 of 39) sorted by null

1 2

  /external/vboot_reference/tests/
timer_utils.h 15 struct timespec end_time; member in struct:ClockTimer
  /external/autotest/client/tests/tracing_microbenchmark/src/
getuid_microbench.c 27 struct timespec start_time, end_time, elapsed_time; local
51 if (clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &end_time)) {
56 ts_subtract(&elapsed_time, &end_time, &start_time);
  /external/chromium-trace/catapult/firefighter/update/common/buildbot/
build.py 69 def end_time(self): member in class:Build
step.py 57 def end_time(self): member in class:Step
  /external/google-breakpad/src/testing/gtest/samples/
sample5_unittest.cc 75 const time_t end_time = time(NULL); local
80 EXPECT_TRUE(end_time - start_time_ <= 5) << "The test took too long.";
  /external/protobuf/gtest/samples/
sample5_unittest.cc 75 const time_t end_time = time(NULL); local
80 EXPECT_TRUE(end_time - start_time_ <= 5) << "The test took too long.";
  /external/v8/src/base/platform/
condition-variable.cc 92 Time end_time = now + rel_time; local
93 DCHECK_GE(end_time, now);
94 ts = end_time.ToTimespec();
  /external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
sample5_unittest.cc 75 const time_t end_time = time(NULL); local
80 EXPECT_TRUE(end_time - start_time_ <= 5) << "The test took too long.";
  /ndk/sources/third_party/googletest/googletest/samples/
sample5_unittest.cc 75 const time_t end_time = time(NULL); local
80 EXPECT_TRUE(end_time - start_time_ <= 5) << "The test took too long.";
  /system/extras/tests/pagingtest/
mmap_test.c 15 struct timeval begin_time, end_time, elapsed_time; local
26 gettimeofday(&end_time, NULL);
31 timersub(&end_time, &begin_time, &elapsed_time);
36 gettimeofday(&end_time, NULL);
37 timersub(&end_time, &begin_time, &elapsed_time);
pageinout_test.c 20 struct timeval begin_time, end_time, elapsed_time, total_time_in, total_time_out; local
52 gettimeofday(&end_time, NULL);
54 timersub(&end_time, &begin_time, &elapsed_time);
64 gettimeofday(&end_time, NULL);
70 timersub(&end_time, &begin_time, &elapsed_time);
thrashing_test.c 19 struct timeval begin_time, end_time, elapsed_time, total_time; local
58 gettimeofday(&end_time, NULL);
60 timersub(&end_time, &begin_time, &elapsed_time);
  /system/extras/crypto-perf/
crypto.cpp 118 struct timeval begin_time, end_time, elapsed_time; local
131 gettimeofday(&end_time, NULL);
132 timersub(&end_time, &begin_time, &elapsed_time);
154 gettimeofday(&end_time, NULL);
155 timersub(&end_time, &begin_time, &elapsed_time);
  /external/libchrome/base/process/
kill_posix.cc 110 TimeTicks end_time = TimeTicks::Now() + wait; local
118 } while ((end_time - TimeTicks::Now()) > TimeDelta());
  /hardware/bsp/intel/peripheral/libupm/src/ppd42ns/
ppd42ns.cxx 65 double start_time, end_time; local
69 end_time = pulse_check_time - start_time;
70 low_pulse_occupancy += pulseIn_polyfill(0, end_time);
87 double PPD42NS::pulseIn_polyfill(bool high_low_value, double end_time)
102 while (!ended_timing && (m_timediff(pulseIn_start, pulseIn_now) < end_time))
  /art/runtime/gc/collector/
garbage_collector.cc 95 uint64_t end_time = NanoTime(); local
96 current_iteration->SetDurationNs(end_time - start_time);
  /external/dbus/dbus/
dbus-sysdeps-pthread.c 224 struct timespec end_time; local
240 end_time.tv_sec = time_now.tv_sec + timeout_milliseconds / 1000;
241 end_time.tv_nsec = (time_now.tv_usec + (timeout_milliseconds % 1000) * 1000) * 1000;
242 if (end_time.tv_nsec > 1000*1000*1000)
244 end_time.tv_sec += 1;
245 end_time.tv_nsec -= 1000*1000*1000;
248 result = pthread_cond_timedwait (&cond->cond, &mutex->lock, &end_time);
  /external/autotest/client/tests/disktest/src/
disktest.c 135 void write_file(unsigned int end_time, int random_access)
154 while(time(NULL) < end_time) {
159 while(time(NULL) < end_time)
167 void verify_file(unsigned int end_time, int random_access, int direct)
198 while(time(NULL) < end_time) {
205 while(time(NULL) < end_time)
247 time_t start_time, end_time; local
354 end_time = time(NULL) + seconds;
358 write_file(end_time, 0);
362 write_file(end_time, 1)
    [all...]
  /external/chromium-trace/catapult/experimental/buildbot/
buildbot.py 248 def end_time(self): member in class:Build
350 def end_time(self): member in class:Step
  /external/webrtc/webrtc/base/
macsocketserver.cc 262 EventTimeout end_time = GetCurrentEventTime() + timeout; local
292 timeout = end_time - GetCurrentEventTime();
  /external/webrtc/webrtc/modules/video_coding/
receiver_unittest.cc 341 int64_t end_time = start_time + microseconds; local
344 timestamps_.front().arrive_time <= end_time) {
357 if (TimeInMicroseconds() < end_time) {
358 SimulatedClock::AdvanceTimeMicroseconds(end_time - TimeInMicroseconds());
502 int64_t end_time = clock_.TimeInMilliseconds(); local
513 EXPECT_GE(kMaxWaitTime, end_time - start_time);
515 EXPECT_EQ(kMaxWaitTime, end_time - start_time);
563 int64_t end_time = clock_.TimeInMilliseconds(); local
566 end_time);
570 EXPECT_EQ(kMaxWaitTime, end_time - start_time)
    [all...]
  /system/extras/simpleperf/
cmd_stat.cpp 159 auto end_time = std::chrono::steady_clock::now(); local
167 std::chrono::duration_cast<std::chrono::duration<double>>(end_time - start_time).count();
cpu_hotplug_test.cpp 165 auto end_time = std::chrono::steady_clock::now() + std::chrono::seconds(timeout); local
167 while (std::chrono::steady_clock::now() < end_time) {
211 auto end_time = std::chrono::steady_clock::now() + test_duration; local
213 while (std::chrono::steady_clock::now() < end_time) {
  /art/runtime/jit/
profile_saver.cc 90 const uint64_t end_time = NanoTime() + MsToNs(kSleepTime); local
93 if (current_time >= end_time) {
96 period_condition_.TimedWait(self, NsToMs(end_time - current_time), 0);
  /art/runtime/
thread_list.cc 496 const uint64_t end_time = NanoTime(); local
497 const uint64_t suspend_time = end_time - start_time;
    [all...]

Completed in 736 milliseconds

1 2