Home
last modified time | relevance | path

Searched refs:Nanotime (Results 1 – 3 of 3) sorted by relevance

/system/extras/memory_replay/
DAlloc.cpp101 uint64_t time_nsecs = Nanotime(); in MallocExecute()
104 time_nsecs = Nanotime() - time_nsecs; in MallocExecute()
113 uint64_t time_nsecs = Nanotime(); in CallocExecute()
116 time_nsecs = Nanotime() - time_nsecs; in CallocExecute()
130 uint64_t time_nsecs = Nanotime(); in ReallocExecute()
133 time_nsecs = Nanotime() - time_nsecs; in ReallocExecute()
142 uint64_t time_nsecs = Nanotime(); in MemalignExecute()
145 time_nsecs = Nanotime() - time_nsecs; in MemalignExecute()
158 uint64_t time_nsecs = Nanotime(); in FreeExecute()
160 return Nanotime() - time_nsecs; in FreeExecute()
DTraceBenchmark.cpp162 start_ns = Nanotime(); in RunTrace()
168 total_ns += Nanotime() - start_ns; in RunTrace()
177 start_ns = Nanotime(); in RunTrace()
183 total_ns += Nanotime() - start_ns; in RunTrace()
192 start_ns = Nanotime(); in RunTrace()
198 total_ns += Nanotime() - start_ns; in RunTrace()
207 start_ns = Nanotime(); in RunTrace()
220 total_ns += Nanotime() - start_ns; in RunTrace()
235 start_ns = Nanotime(); in RunTrace()
237 total_ns += Nanotime() - start_ns; in RunTrace()
DUtils.h22 static __always_inline uint64_t Nanotime() { in Nanotime() function