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

1 2

  /system/core/liblog/tests/
benchmark_main.cpp 51 static uint64_t NanoTime() {
110 uint64_t StartTimeNs = NanoTime();
116 gBenchmarkTotalTimeNs = NanoTime() - StartTimeNs;
123 uint64_t s = NanoTime();
125 s = NanoTime() - s;
135 s = NanoTime();
137 s = NanoTime() - s;
186 int64_t diff = NanoTime() - gBenchmarkStartTimeNs;
196 gBenchmarkStartTimeNs = NanoTime();
200 void StopBenchmarkTiming(uint64_t NanoTime) {
    [all...]
  /art/runtime/gc/collector/
garbage_collector.cc 77 uint64_t start_time = NanoTime();
88 uint64_t end_time = NanoTime();
148 : start_time_(NanoTime()), collector_(collector) {
153 collector_->RegisterPause(NanoTime() - start_time_);
  /bionic/benchmarks/
benchmark_main.cpp 51 static int64_t NanoTime() {
120 g_benchmark_start_time_ns = NanoTime();
127 g_benchmark_total_time_ns += NanoTime() - g_benchmark_start_time_ns;
181 g_benchmark_total_time_ns += NanoTime() - g_benchmark_start_time_ns;
188 g_benchmark_start_time_ns = NanoTime();
  /art/runtime/
thread_pool.cc 123 start_time_ = NanoTime();
151 const uint64_t wait_start = kMeasureWaitTime ? NanoTime() : 0;
154 const uint64_t wait_end = NanoTime();
leb128_test.cc 260 uint64_t last_time = NanoTime();
265 uint64_t cur_time = NanoTime();
271 last_time = NanoTime();
276 uint64_t cur_time = NanoTime();
utils.h 379 uint64_t NanoTime();
thread_list.cc 310 uint64_t start_time = NanoTime();
343 uint64_t end_time = NanoTime();
    [all...]
utils.cc 165 uint64_t NanoTime() {
    [all...]
  /system/core/libbacktrace/
backtrace_test.cpp 79 uint64_t NanoTime() {
97 uint64_t start = NanoTime();
101 if ((NanoTime() - start) > NS_PER_SEC) {
191 uint64_t start = NanoTime();
196 } while ((NanoTime() - start) < seconds * NS_PER_SEC);
264 uint64_t start = NanoTime();
287 } while (!verified && (NanoTime() - start) <= 5 * NS_PER_SEC);
397 uint64_t start = NanoTime();
403 ((NanoTime() - start) <= 5 * NS_PER_SEC));
  /art/runtime/base/
mutex-inl.h 53 start_nano_time_(kLogLockContentions ? NanoTime() : 0) {
64 uint64_t end_nano_time = NanoTime();
timing_logger.cc 140 timings_.push_back(Timing(NanoTime(), label));
145 timings_.push_back(Timing(NanoTime(), nullptr));
  /art/runtime/gc/
heap-inl.h 267 allocation_start_time_ = NanoTime() / kTimeAdjust;
276 uint64_t allocation_end_time = NanoTime() / kTimeAdjust;
heap.cc 163 last_gc_time_ns_(NanoTime()),
189 last_time_homogeneous_space_compaction_by_oom_(NanoTime()),
    [all...]
  /art/runtime/gc/space/
dlmalloc_space.cc 82 start_time = NanoTime();
106 LOG(INFO) << "DlMallocSpace::Create exiting (" << PrettyDuration(NanoTime() - start_time)
rosalloc_space.cc 93 start_time = NanoTime();
119 LOG(INFO) << "RosAllocSpace::Create exiting (" << PrettyDuration(NanoTime() - start_time)
image_space.cc 57 generator.seed(NanoTime() * getpid());
561 start_time = NanoTime();
658 LOG(INFO) << "ImageSpace::Init exiting (" << PrettyDuration(NanoTime() - start_time)
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_mac.cc 243 u64 NanoTime() {
sanitizer_win.cc 225 u64 NanoTime() {
sanitizer_common.h 205 u64 NanoTime();
sanitizer_linux.cc 307 u64 NanoTime() {
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.cc 159 u64 last_flush = NanoTime();
160 u64 last_rss_check = NanoTime();
166 u64 now = NanoTime();
174 last_flush = NanoTime();
tsan_rtl_report.cc 510 atomic_store(&ctx->last_symbolize_time_ns, NanoTime(), memory_order_relaxed);
  /art/runtime/hprof/
hprof.cc 389 start_ns_(NanoTime()),
491 uint64_t duration = NanoTime() - start_ns_;
    [all...]
  /art/dex2oat/
dex2oat.cc 268 LOG(INFO) << "dex2oat took " << PrettyDuration(NanoTime() - start_ns_)
491 start_ns_(NanoTime()) {
    [all...]
  /art/compiler/driver/
compiler_driver.cc     [all...]

Completed in 2117 milliseconds

1 2