HomeSort by relevance Sort by last modified time
    Searched defs:NanoTime (Results 1 - 13 of 13) sorted by null

  /bionic/tests/
system_properties_test2.cpp 28 static uint64_t NanoTime() {
48 ss << "debug.test." << getpid() << "." << NanoTime() << ".";
136 ss << "debug.test." << getpid() << "." << NanoTime() << "." << "property_empty";
signal_test.cpp 352 static int64_t NanoTime() {
368 int64_t start_time = NanoTime();
376 ASSERT_GE(NanoTime() - start_time, 1000000);
gtest_main.cpp 267 static int64_t NanoTime() {
722 child_proc.start_time_ns = NanoTime();
739 int64_t current_time_ns = NanoTime();
765 child_proc_list[i].end_time_ns = NanoTime();
773 int64_t current_time_ns = NanoTime();
918 int64_t iteration_start_time_ns = NanoTime();
974 int64_t elapsed_time_ns = NanoTime() - iteration_start_time_ns;
    [all...]
  /system/core/libunwindstack/tests/
MemoryRemoteTest.cpp 38 static uint64_t NanoTime() {
49 uint64_t start = NanoTime();
52 if ((NanoTime() - start) > 10 * NS_PER_SEC) {
  /test/vts/drivers/libprofiling/
VtsProfilingInterface.cpp 49 static int64_t NanoTime() {
74 + to_string(NanoTime()) + ".vts.trace";
100 record.set_timestamp(NanoTime());
  /art/runtime/base/
time_utils.cc 150 uint64_t NanoTime() {
  /external/eigen/bench/tensors/
benchmark_main.cc 61 static int64_t NanoTime() {
144 g_benchmark_start_time_ns = NanoTime();
151 g_benchmark_total_time_ns += NanoTime() - g_benchmark_start_time_ns;
198 g_benchmark_total_time_ns += NanoTime() - g_benchmark_start_time_ns;
204 g_benchmark_start_time_ns = NanoTime();
  /system/core/liblog/tests/
benchmark_main.cpp 52 static uint64_t NanoTime() {
111 uint64_t StartTimeNs = NanoTime();
116 gBenchmarkTotalTimeNs = NanoTime() - StartTimeNs;
123 uint64_t s = NanoTime();
125 s = NanoTime() - s;
136 s = NanoTime();
138 s = NanoTime() - s;
187 int64_t diff = NanoTime() - gBenchmarkStartTimeNs;
197 gBenchmarkStartTimeNs = NanoTime();
201 void StopBenchmarkTiming(uint64_t NanoTime) {
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_mac.cc 352 u64 NanoTime() {
sanitizer_win.cc 397 u64 NanoTime() {
sanitizer_linux.cc 381 u64 NanoTime() {
    [all...]
  /system/core/libbacktrace/
backtrace_test.cpp 85 static uint64_t NanoTime() {
104 uint64_t start = NanoTime();
108 if ((NanoTime() - start) > NS_PER_SEC) {
220 uint64_t start = NanoTime();
225 } while ((NanoTime() - start) < seconds * NS_PER_SEC);
315 uint64_t start = NanoTime();
342 } while (!verified && (NanoTime() - start) <= 5 * NS_PER_SEC);
453 uint64_t start = NanoTime();
459 ((NanoTime() - start) <= 5 * NS_PER_SEC));
    [all...]
  /test/vts/runners/target/gtest/
gtest_main.cpp 236 static int64_t NanoTime() {
653 child_proc.start_time_ns = NanoTime();
673 int64_t current_time_ns = NanoTime();
701 child_proc_list[i].end_time_ns = NanoTime();
710 int64_t current_time_ns = NanoTime();
865 int64_t iteration_start_time_ns = NanoTime();
923 int64_t elapsed_time_ns = NanoTime() - iteration_start_time_ns;
    [all...]

Completed in 266 milliseconds