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

1 2

  /external/vboot_reference/tests/
timer_utils.c 13 clock_gettime(CLOCK_REALTIME, &ct->end_time);
19 uint64_t end = ((uint64_t) ct->end_time.tv_sec * 1000000000 +
20 (uint64_t) ct->end_time.tv_nsec);
timer_utils.h 15 struct timespec end_time; member in struct:ClockTimer
  /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 20 struct timeval begin_time, end_time, elapsed_time, total_time; local
59 gettimeofday(&end_time, NULL);
61 timersub(&end_time, &begin_time, &elapsed_time);
  /system/extras/simpleperf/
workload_test.cpp 35 auto end_time = steady_clock::now(); local
36 ASSERT_TRUE(end_time >= start_time + seconds(1));
cmd_stat.cpp 107 auto end_time = std::chrono::steady_clock::now(); local
114 if (!ShowCounters(counters_map, end_time - start_time)) {
  /external/v8/tools/testrunner/local/
commands.py 87 if timeout is None: end_time = None
88 else: end_time = time.time() + timeout
95 if (not end_time is None) and (time.time() >= end_time):
  /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.";
  /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.";
  /external/v8/src/heap/
gc-tracer.cc 35 end_time(0.0),
93 current_.end_time = base::OS::TimeCurrentMillis();
104 start_time - previous_.end_time,
141 current_.end_time = base::OS::TimeCurrentMillis();
184 double duration = current_.end_time - current_.start_time;
185 double spent_in_mutator = Max(current_.start_time - previous_.end_time, 0.0);
235 double duration = current_.end_time - current_.start_time;
269 double duration = current_.end_time - current_.start_time;
270 double spent_in_mutator = current_.start_time - previous_.end_time;
346 mean += iter->end_time - iter->start_time
    [all...]
gc-tracer.h 170 double end_time;
  /external/linux-tools-perf/src/tools/perf/
builtin-timechart.c 80 u64 end_time; member in struct:per_pid
93 u64 end_time; member in struct:per_pidcomm
123 u64 end_time; member in struct:cpu_sample
138 u64 end_time; member in struct:power_event
225 p->end_time = timestamp;
227 p->current->end_time = timestamp;
250 sample->end_time = end;
360 pwr->end_time = timestamp;
381 pwr->end_time = timestamp;
584 pwr->end_time = last_time
    [all...]
  /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/valgrind/massif/
ms_print.in 494 my $end_time = $times[$n_snapshots-1];
495 ($end_time >= 0) or die;
532 # Likewise for end_time.
534 if (0 == $end_time ) { $end_time = 1; }
546 my $x_pos_frac = ($times[$i] / ($end_time)) * $graph_x;
550 # column, as if the end_time was actually end_time+epsilon.
551 if ($times[$i] == $end_time) {
606 if ($time_unit eq "i") { ($x_label, $x_unit) = i_max_label($end_time) }
    [all...]
  /external/v8/src/base/platform/
condition-variable.cc 98 Time end_time = now + rel_time; local
99 DCHECK_GE(end_time, now);
100 ts = end_time.ToTimespec();
  /external/fio/tools/plot/
fio2gnuplot 152 end_time=max_time
153 if end_time == -1:
154 end_time="infinite"
155 if verbose: print "Processing data file 1/2 with %s<time<%s" % (min_time,end_time)
  /art/runtime/gc/collector/
garbage_collector.cc 97 uint64_t end_time = NanoTime(); local
98 current_iteration->SetDurationNs(end_time - start_time);
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/debug/
profile.py 173 end_time = time.time()
197 % (end_time - start_time))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_lock.py 129 end_time=time.time()
132 self.assertTrue((end_time-start_time) >= 0.0999)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_dummy_thread.py 80 end_time = int(time.time())
83 self.assertTrue((end_time - start_time) >= DELAY,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_lock.py 129 end_time=time.time()
132 self.assertTrue((end_time-start_time) >= 0.0999)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_dummy_thread.py 80 end_time = int(time.time())
83 self.assertTrue((end_time - start_time) >= DELAY,
  /external/lldb/test/pexpect-2.4/
pexpect.py 712 end_time = time.time() + timeout
719 timeout = end_time - time.time()
    [all...]
  /external/v8/src/
profile-generator.h 191 base::TimeTicks end_time() const { return end_time_; } function in class:v8::internal::CpuProfile

Completed in 2726 milliseconds

1 2